ExplicitEuler

Time integration using the explicit Euler method.

The explicit Euler method is only first-order accurate in time.

Description

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

Ut=A(t,U(t))\dfrac{\partial U}{\partial t} = A(t, U(t))

Using t+Δtt+\Delta t for the current time step, and tt for the previous step, the explicit Euler method can be written:

U(t+Δt)=U(t)+ΔtA(t,U(t))U(t+\Delta t) = U(t) + \Delta t A(t, U(t))

This method can be expressed as a Runge-Kutta method with the following Butcher Tableau:

001\begin{array}{c|c} 0 & 0 \\ \hline & 1 \end{array}
commentnote

The ActuallyExplicitEuler implements the same algorithm but without forming the non linear system, making it faster and use less memory.

warningwarning

All kernels except time-(derivative)-kernels should have the parameter implicit=false to use this time integrator.

Input Parameters

  • variablesA subset of the variables that this time integrator should be applied to

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

    Unit:(no unit assumed)

    Controllable:No

    Description:A subset of the variables that this time integrator should be applied to

Optional Parameters

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

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

    Unit:(no unit assumed)

    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

    Unit:(no unit assumed)

    Controllable:No

    Description:Set the enabled status of the MooseObject.

Advanced Parameters