<div>Hi,</div>
<div>&nbsp;</div>
<div>I&#39;m formulating a NS solver which computes the flow past an airfoil. The airfoil has a c-grid and it overlaps with the background cartesian grid. In other words, it is a chimera or overset grid application.</div>

<div>&nbsp;</div>
<div>The&nbsp;boundary cells of the c-grid are connected to the cartesian grid thru interpolation stencil.&nbsp;One way to solve the problem is to solved implicitly ie for each cell phi(c-grid)=a1*phi(cart,1)+a2*phi(cart,2)+a3*phi(cart,3)+a4*phi(cart,4) and vice versa for the phi(cart). This is entered into the sys of linear eqns comprising of c-grid and cartesian and solved all at once.
</div>
<div>&nbsp;</div>
<div>Another way is to solve the cartesian grid eqns fully 1st, compute phi(c-grid) using the known phi(cart,*) and solve the c-grid fully ie explicit solving.</div>
<div>&nbsp;</div>
<div>Is it possible to do this in PETSc:</div>
<div>&nbsp;</div>
<div>1. Do 1 iteration of cartesian grid eqns</div>
<div>2. compute phi(c-grid) using the newly iterated phi(cart,*) values</div>
<div>3. Do 1 iteration of c-grid eqns</div>
<div>4. compute phi(cart) using the newly iterated phi(c-grid,*) values</div>
<div>5. go back to 1.</div>
<div>&nbsp;</div>
<div>Or is this mtd the same as solving the whole sys implicitly (ie 1st case)?</div>
<div>&nbsp;</div>
<div>Thanks</div>