-
Hello 👋 I've recently started working on a project from academia that uses MFEM and my task is to analyze the preconditioners being used and to figure out which one is the fastest for the given linear problem that is being solved (Navier-Stokes equations on 2D incompressible flow around hydrofoils). After reading some literature it seems that in order to make an informed decision on a preconditioner, it would be useful to know the properties of The project also implements a Is there any way that one could see the properties of Thank you in advance for any help! I am very much a beginner, so any advice will help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @kovar, Usually the best way to choose a preconditioner is based on theory or literature. Since the incompressible Navier-Stokes equations are very well-studied, there are many papers discussing appropriate choices of preconditioners. It will depend strongly on exactly the formulation you are using to discretize/solve your problem. If you are using a projection/split method, the systems you will need to solve will be diffusion-like, and multigrid preconditioners (e.g. AMG) will work well. |
Beta Was this translation helpful? Give feedback.
Hello @kovar,
Usually the best way to choose a preconditioner is based on theory or literature. Since the incompressible Navier-Stokes equations are very well-studied, there are many papers discussing appropriate choices of preconditioners. It will depend strongly on exactly the formulation you are using to discretize/solve your problem. If you are using a projection/split method, the systems you will need to solve will be diffusion-like, and multigrid preconditioners (e.g. AMG) will work well.