MFEM
v4.1.0
Finite element discretization library
|
#include <ode.hpp>
Public Member Functions | |
GeneralizedAlpha2Solver (double rho_inf=1.0) | |
virtual void | PrintProperties (std::ostream &out=mfem::out) |
virtual void | Init (SecondOrderTimeDependentOperator &_f) |
Associate a TimeDependentOperator with the ODE solver. More... | |
virtual void | Step (Vector &x, Vector &dxdt, 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::SecondOrderODESolver | |
SecondOrderODESolver () | |
virtual void | Run (Vector &x, Vector &dxdt, double &t, double &dt, double tf) |
Perform time integration from time t [in] to time tf [in]. More... | |
virtual | ~SecondOrderODESolver () |
Protected Attributes | |
Vector | xa |
Vector | va |
Vector | aa |
Vector | d2xdt2 |
double | alpha_f |
double | alpha_m |
double | beta |
double | gamma |
bool | first |
Protected Attributes inherited from mfem::SecondOrderODESolver | |
SecondOrderTimeDependentOperator * | f |
Pointer to the associated TimeDependentOperator. More... | |
MemoryType | mem_type |
Generalized-alpha ODE solver A Time Integration Algorithm for Structural Dynamics With Improved Numerical Dissipation: The Generalized-α Method J.Chung and G.M. Hulbert, J. Appl. Mech 60(2), 371-375, 1993 https://doi.org/10.1115/1.2900803 rho_inf in [0,1]
|
inline |
|
virtual |
Associate a TimeDependentOperator with the ODE solver.
This method has to be called:
Reimplemented from mfem::SecondOrderODESolver.
|
virtual |
|
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] | dxdt | Approximate rate. |
[in,out] | t | Time associated with the approximate solution x and rate @ dxdt |
[in,out] | dt | Time step size. |
The following rules describe the common behavior of the method:
Implements mfem::SecondOrderODESolver.