Tempus
Version of the Day
Time Integration
|
Base modifier for StepperNewmarkImplicitDForm. More...
#include <Tempus_StepperNewmarkImplicitDFormModifierBase.hpp>
Public Member Functions | |
virtual void | modify (Teuchos::RCP< SolutionHistory< Scalar > >, Teuchos::RCP< StepperNewmarkImplicitDForm< Scalar > >, const typename StepperNewmarkImplicitDFormAppAction< Scalar >::ACTION_LOCATION actLoc)=0 |
Modify NewmarkImplicitDForm Stepper. More... | |
Public Member Functions inherited from Tempus::StepperNewmarkImplicitDFormAppAction< Scalar > | |
StepperNewmarkImplicitDFormAppAction () | |
Constructor. More... | |
virtual | ~StepperNewmarkImplicitDFormAppAction () |
Destructor. More... | |
Private Member Functions | |
void | execute (Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperNewmarkImplicitDForm< Scalar > > stepper, const typename StepperNewmarkImplicitDFormAppAction< Scalar >::ACTION_LOCATION actLoc) |
Execute application action for NewmarkImplicitDForm Stepper. More... | |
Additional Inherited Members | |
Public Types inherited from Tempus::StepperNewmarkImplicitDFormAppAction< Scalar > | |
enum | ACTION_LOCATION { BEGIN_STEP, BEFORE_SOLVE, AFTER_SOLVE, END_STEP } |
Indicates the location of application action (see algorithm). More... | |
Base modifier for StepperNewmarkImplicitDForm.
This class provides a means to modify values (e.g., solution variables through SolutionHistory, and stepper member data through the Stepper), and can be very powerful and easy to make changes to the stepper and the solution.
Users deriving from this class can access a lot of data, and it is expected that those users know what changes are allowable without affecting the Stepper correctness, performance, accuracy and stability. Thus the user should be careful when accessing data through classes derived from the default modifier (i.e., USER BEWARE!!).
The locations for these AppAction calls (StepperNewmarkImplicitDFormAppAction::ACTION_LOCATION) are shown in the algorithm documentation of the StepperNewmarkImplicitDForm.
Definition at line 37 of file Tempus_StepperNewmarkImplicitDFormModifierBase.hpp.
|
inlineprivatevirtual |
Execute application action for NewmarkImplicitDForm Stepper.
Implements Tempus::StepperNewmarkImplicitDFormAppAction< Scalar >.
Definition at line 51 of file Tempus_StepperNewmarkImplicitDFormModifierBase.hpp.
|
pure virtual |
Modify NewmarkImplicitDForm Stepper.
Implemented in Tempus::StepperNewmarkImplicitDFormModifierDefault< Scalar >.