ImplicitEuler

This is the default time integrator in MOOSE. It is first-order in time, and L-stable, making it suitable to integrate stiff equation systems. It is also known as the backwards Euler method.

Description

With , the vector of nonlinear variables, and , a nonlinear operator, we write the PDE of interest as:

Using for the current time step, and for the previous step, the implicit Euler time integration scheme can be written:

This is an implicit system with , the variable to solve for, appearing on both sides of the equation. We solve this system iteratively, usually with a Newton or Newton-Krylov method as described in the non linear system solve documentation.

Input Parameters

  • control_tagsAdds user-defined labels for accessing object parameters via control logic.

    C++ Type:std::vector<std::string>

    Controllable:No

    Description:Adds user-defined labels for accessing object parameters via control logic.

  • enableTrueSet the enabled status of the MooseObject.

    Default:True

    C++ Type:bool

    Controllable:No

    Description:Set the enabled status of the MooseObject.

Input Files