Replies: 1 comment 3 replies
-
There have been several requests for this in the past, but it hasn't been a very high priority for us because typically the problem our users target are large, and we don't have scalable monolithic preconditioners. Maybe we should change that... Besides LU have you had good success with scalable solvers for the monolithic system? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a good way to form a monolithic Jacobian for generally nonlinear coupled physics? I have looked at
BlockNonlinearForm
. This seems like a good option if you want to perform block preconditioning strategies. However, I am interested in a problem setup in which different preconditioning strategies can be selected from the command line. For instance, ideally I could perform a monolithic LU on this coupled system or I could leverage block preconditioning strategies using-pc_type fieldsplit
(using a PETSc solver backend).There is obviously
NonlinearForm
as well but that only supports a single finite element space while each physics may leverage a different spaceBeta Was this translation helpful? Give feedback.
All reactions