|
MFEM
v4.1.0
Finite element discretization library
|
#include <ode.hpp>
Public Member Functions | |
| GeneralizedAlphaSolver (double rho=1.0) | |
| virtual void | Init (TimeDependentOperator &_f) |
| Associate a TimeDependentOperator with the ODE solver. More... | |
| virtual void | Step (Vector &x, double &t, double &dt) |
| Perform a time step from time t [in] to time t [out] based on the requested step size dt [in]. More... | |
Public Member Functions inherited from mfem::ODESolver | |
| ODESolver () | |
| virtual void | Run (Vector &x, double &t, double &dt, double tf) |
| Perform time integration from time t [in] to time tf [in]. More... | |
| virtual | ~ODESolver () |
Protected Member Functions | |
| void | SetRhoInf (double rho_inf) |
| void | PrintProperties (std::ostream &out=mfem::out) |
Protected Attributes | |
| Vector | xdot |
| Vector | k |
| Vector | y |
| double | alpha_f |
| double | alpha_m |
| double | gamma |
| bool | first |
Protected Attributes inherited from mfem::ODESolver | |
| TimeDependentOperator * | f |
| Pointer to the associated TimeDependentOperator. More... | |
| MemoryType | mem_type |
Generalized-alpha ODE solver from "A generalized-α method for integrating the filtered Navier–Stokes equations with a stabilized finite element method" by K.E. Jansen, C.H. Whiting and G.M. Hulbert.
|
inline |
|
virtual |
Associate a TimeDependentOperator with the ODE solver.
This method has to be called:
Reimplemented from mfem::ODESolver.
|
protected |
|
protected |
|
virtual |
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.
1.8.5