Tempus
Version of the Day
Time Integration
|
Application Action for StepperNewmarkImplicitDForm. More...
#include <Tempus_StepperNewmarkImplicitDFormAppAction.hpp>
Public Types | |
enum | ACTION_LOCATION { BEGIN_STEP, BEFORE_SOLVE, AFTER_SOLVE, END_STEP } |
Indicates the location of application action (see algorithm). More... | |
Public Member Functions | |
StepperNewmarkImplicitDFormAppAction () | |
Constructor. More... | |
virtual | ~StepperNewmarkImplicitDFormAppAction () |
Destructor. More... | |
virtual void | execute (Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperNewmarkImplicitDForm< Scalar > > stepper, const typename StepperNewmarkImplicitDFormAppAction< Scalar >::ACTION_LOCATION actLoc)=0 |
Execute application action for NewmarkImplicitDForm Stepper. More... | |
Application Action for StepperNewmarkImplicitDForm.
This class provides a means to apply various actions with the NewmarkImplicitDForm time step. The data available to this class is solution variables (through SolutionHistory), and stepper data (through the Stepper). It allows the application to just observe this data, i.e., use but not change any of it (USER BEWARE!).
The locations for these AppAction calls (StepperNewmarkImplicitDFormAppAction::ACTION_LOCATION) are shown in the algorithm documentation of the StepperNewmarkImplicitDForm.
Definition at line 34 of file Tempus_StepperNewmarkImplicitDFormAppAction.hpp.
enum Tempus::StepperNewmarkImplicitDFormAppAction::ACTION_LOCATION |
Indicates the location of application action (see algorithm).
Enumerator | |
---|---|
BEGIN_STEP |
At the beginning of the step. |
BEFORE_SOLVE |
Before the implicit solve. |
AFTER_SOLVE |
After the implicit solve. |
END_STEP |
At the end of the step. |
Definition at line 39 of file Tempus_StepperNewmarkImplicitDFormAppAction.hpp.
|
inline |
Constructor.
Definition at line 47 of file Tempus_StepperNewmarkImplicitDFormAppAction.hpp.
|
inlinevirtual |
Destructor.
Definition at line 50 of file Tempus_StepperNewmarkImplicitDFormAppAction.hpp.
|
pure virtual |
Execute application action for NewmarkImplicitDForm Stepper.
Implemented in Tempus::StepperNewmarkImplicitDFormModifierXBase< Scalar >, Tempus::StepperNewmarkImplicitDFormModifierXBase< double >, Tempus::StepperNewmarkImplicitDFormModifierBase< Scalar >, Tempus::StepperNewmarkImplicitDFormModifierBase< double >, and Tempus::StepperNewmarkImplicitDFormAppActionComposite< Scalar >.