|
Smith
0.1
Smith is an implicit thermal structural mechanics simulation code.
|
Abstract time integration rule for discretizing odes in time. More...
#include <time_integration_rule.hpp>
Public Member Functions | |
| virtual | ~TimeIntegrationRule () |
| destructor | |
| virtual bool | requiresInitialAccelerationSolve () const |
| whether this rule needs a cycle-zero initial acceleration solve | |
| virtual FieldState | corrected_value (const TimeInfo &t, const std::vector< FieldState > &states) const =0 |
| update the current value of the independent variable, given the predicted value of the current independent variable, followed by | |
| virtual int | num_args () const =0 |
| get the number of states required by the rule | |
| virtual FieldState | corrected_dot (const TimeInfo &t, const std::vector< FieldState > &states) const =0 |
| update the current value of the independent variable's first time derivative, given the predicted value of the current independent variable, followed by | |
| virtual FieldState | corrected_ddot (const TimeInfo &t, const std::vector< FieldState > &states) const =0 |
| update the current value of the independent variable's second time derivative, given the predicted value of the current independent variable, followed by | |
Abstract time integration rule for discretizing odes in time.
Definition at line 23 of file time_integration_rule.hpp.