Page 1 of 1

Pressure Solver

Posted: Thu Jul 30, 2015 5:07 pm
by laurent_makke
Hello,

In resolp, we compute a pressure variation to update the velocity.
To my knowledge, the Poisson equation is solved by a jacobi.

The REX about it is to use a precision around 10^(-5). Is the stop criterion applied on for the Jacobi method?

Best regards,
Laurent.

Re: Pressure Solver

Posted: Fri Jul 31, 2015 11:10 am
by Yvan Fournier
Hello,

The solver for pressure correction is a PCG or multigrid solver, not Jacobi.

The default tolerance is 10^(-5) for LES, 10^(-8) otherwise (but 10^(-5) should be OK in most cases).

I'm not sure about the details of the stop criterion.

Regards,

Yvan

Re: Pressure Solver

Posted: Tue Aug 04, 2015 12:56 pm
by laurent_makke
Hello Yvan,

:oops: It's a PCG because it's a positive-definite matrix...
Thank you for answer.