AMReX-Fluids / incflo

Incompressible Navier-Stokes solver in complex geometries
https://amrex-fluids.github.io/incflo
BSD 3-Clause "New" or "Revised" License
46 stars 28 forks source link

Add runtime parameter tensor_diffusion.use_gauss_seidel #121

Closed WeiqunZhang closed 2 months ago

WeiqunZhang commented 2 months ago

The default is true. One can use Jacobi smoothers for tensor, mac and nodal solves with

tensor.use_gauss_seidel = false
mac_proj.use_gauss_seidel = false
nodal_proj.use_gauss_seidel = false
WeiqunZhang commented 2 months ago

@siddanib With https://github.com/AMReX-Fluids/AMReX-Hydro/pull/143 and this PR, you should be able to Jacobi smoothers for tensor, mac and nodal solves.

ajnonaka commented 2 months ago

Thanks @WeiqunZhang !!

siddanib commented 2 months ago

Thank you very much, @WeiqunZhang !!