<div>Hi,</div>
<div>&nbsp;</div>
<div>In my MPI CFD code, I have to solve 2 linear eqns - momentum and poisson eqn. There&#39;s some error in the code and I don&#39;t know which one causes the error. May I know if it is possible to solve 1 eqn in sequential mode while the other in MPI to pinpoint the error since my code works ok in a sequential mode.
</div>
<div>&nbsp;</div>
<div>I tried to use this for one of the eqn:</div>
<div>&nbsp;</div>
<div>
<p>call MatCreateSeqAIJ(PETSC_COMM_SELF,size_x*size_y,size_x*size_y,9,PETSC_NULL_INTEGER,A_mat,ierr)</p>
<p>call VecCreateSeq(PETSC_COMM_SELF,size_x*size_y,b_rhs,ierr)</p>
<p>but there&#39;s error.</p>
<p>Thank you.</p></div>