Preconditioning System
Overview
See Steady for more details on how preconditioning is used in solving nonlinear systems in MOOSE. The Preconditioning
block allows you to define which type of preconditioning matrix to build and what process to apply. You can define multiple blocks with different names, allowing you to quickly switch out preconditioning options. Within the sub-blocks you can also provide other options specific to that type of preconditioning matrix. You can also override PETSc options here. Only one block can be active at a time.
Default Preconditioning Matrix
Consider the fully coupled system of equations:
the fully coupled Jacobian is then approximated using a block-diagonal approach:
Thus, for this example, the default preconditioning matrix is defined as:
Example Input File Syntax
A single preconditioner may be specified as below:
Nested preconditioners may be specified as below, for the FSP for example:
(contrib/moose/test/tests/preconditioners/fsp/fsp_test.i)Available Objects
- Moose App
- SplitField split based preconditioner for nonlinear solver.
- FDPFinite difference preconditioner (FDP) builds a numerical Jacobian for preconditioning, only use for testing and verification.
- FSPPreconditioner designed to map onto PETSc's PCFieldSplit.
- PBPPhysics-based preconditioner (PBP) allows individual physics to have their own preconditioner.
- SMPSingle matrix preconditioner (SMP) builds a preconditioner using user defined off-diagonal parts of the Jacobian.
- VCPVarialble condensation preconditioner (VCP) condenses out specified variable(s) from the Jacobian matrix and produces a system of equations with less unkowns to be solved by the underlying preconditioners.
Available Actions
- Moose App
- SetupPreconditionerActionAdd a Preconditioner object to the simulation.
- AddFieldSplitActionAdd a Split object to the simulation.