![]() |
MFEM v4.7.0
Finite element discretization library
|
#include <ode.hpp>
Public Member Functions | |
| virtual void | Init (TimeDependentOperator &f_) |
| Associate a TimeDependentOperator with the ODE solver. | |
| virtual void | Step (Vector &x, real_t &t, real_t &dt) |
| Perform a time step from time t [in] to time t [out] based on the requested step size dt [in]. | |
Public Member Functions inherited from mfem::ODESolver | |
| ODESolver () | |
| virtual void | Run (Vector &x, real_t &t, real_t &dt, real_t tf) |
| Perform time integration from time t [in] to time tf [in]. | |
| virtual int | GetMaxStateSize () |
| Function for getting and setting the state vectors. | |
| virtual int | GetStateSize () |
| virtual const Vector & | GetStateVector (int i) |
| virtual void | GetStateVector (int i, Vector &state) |
| virtual void | SetStateVector (int i, Vector &state) |
| virtual | ~ODESolver () |
Protected Attributes | |
| Vector | k |
| Vector | y |
| Vector | z |
Protected Attributes inherited from mfem::ODESolver | |
| TimeDependentOperator * | f |
| Pointer to the associated TimeDependentOperator. | |
| MemoryType | mem_type |
Three stage, explicit singly diagonal implicit Runge-Kutta (ESDIRK) method of order 3. A-stable.
|
virtual |
Associate a TimeDependentOperator with the ODE solver.
This method has to be called:
Reimplemented from mfem::ODESolver.
Perform a time step from time t [in] to time t [out] based on the requested step size dt [in].
| [in,out] | x | Approximate solution. |
| [in,out] | t | Time associated with the approximate solution x. |
| [in,out] | dt | Time step size. |
The following rules describe the common behavior of the method:
Implements mfem::ODESolver.