Tempus
Version of the Day
Time Integration
|
Base ModifierX for StepperNewmarkImplicitDForm. More...
#include <Tempus_StepperNewmarkImplicitDFormModifierXBase.hpp>
Public Types | |
enum | MODIFIER_TYPE { X_BEGIN_STEP, X_BEFORE_SOLVE, X_AFTER_SOLVE, X_END_STEP } |
Indicates the location of application action (see algorithm). More... | |
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... | |
Public Member Functions | |
virtual void | modify (Teuchos::RCP< Thyra::VectorBase< Scalar > >, const Scalar, const Scalar, const MODIFIER_TYPE modType)=0 |
Modify solution based on the MODIFIER_TYPE. 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... | |
Base ModifierX for StepperNewmarkImplicitDForm.
This class provides a means to modify just the solution values (i.e., and ), and nothing else, but time and timestep are also provided.
Users deriving from this class can access and change the solution during the timestep (e.g., limiting the solution for monoticity). It is expected that the user knows what changes are allowable without affecting the Stepper correctness, performance, accuracy and stability (i.e., USER BEWARE!!).
The locations of the StepperNewmarkImplicitDFormModifierXBase::MODIFIER_TYPE which correspond to the AppAction calls (StepperNewmarkImplicitDFormAppAction::ACTION_LOCATION) are shown in the algorithm documentation of the StepperNewmarkImplicitDForm.
Definition at line 37 of file Tempus_StepperNewmarkImplicitDFormModifierXBase.hpp.
enum Tempus::StepperNewmarkImplicitDFormModifierXBase::MODIFIER_TYPE |
Indicates the location of application action (see algorithm).
Enumerator | |
---|---|
X_BEGIN_STEP |
Modify at the beginning of the step. |
X_BEFORE_SOLVE |
Modify before the implicit solve. |
X_AFTER_SOLVE |
Modify after the implicit solve. |
X_END_STEP |
Modify at the end of the step. |
Definition at line 104 of file Tempus_StepperNewmarkImplicitDFormModifierXBase.hpp.
|
inlineprivatevirtual |
Execute application action for NewmarkImplicitDForm Stepper.
Implements Tempus::StepperNewmarkImplicitDFormAppAction< Scalar >.
Definition at line 55 of file Tempus_StepperNewmarkImplicitDFormModifierXBase.hpp.
|
pure virtual |
Modify solution based on the MODIFIER_TYPE.