Tempus
Version of the Day
Time Integration
|
Application Action for StepperLeapfrog. More...
#include <Tempus_StepperLeapfrogAppAction.hpp>
Public Types | |
enum | ACTION_LOCATION { BEGIN_STEP, BEFORE_X_UPDATE, BEFORE_EXPLICIT_EVAL, BEFORE_XDOT_UPDATE, END_STEP } |
Indicates the location of application action (see algorithm). More... | |
Public Member Functions | |
StepperLeapfrogAppAction () | |
Constructor. More... | |
virtual | ~StepperLeapfrogAppAction () |
Destructor. More... | |
virtual void | execute (Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperLeapfrog< Scalar > > stepper, const typename StepperLeapfrogAppAction< Scalar >::ACTION_LOCATION actLoc)=0 |
Execute application action for Leapfrog Stepper. More... | |
Application Action for StepperLeapfrog.
This class provides a means to apply various actions with the Leapfrog 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 (StepperLeapfrogAppAction::ACTION_LOCATION) are shown in the algorithm documentation of the StepperLeapfrog.
Definition at line 34 of file Tempus_StepperLeapfrogAppAction.hpp.
enum Tempus::StepperLeapfrogAppAction::ACTION_LOCATION |
Indicates the location of application action (see algorithm).
Definition at line 39 of file Tempus_StepperLeapfrogAppAction.hpp.
|
inline |
Constructor.
Definition at line 48 of file Tempus_StepperLeapfrogAppAction.hpp.
|
inlinevirtual |
Destructor.
Definition at line 51 of file Tempus_StepperLeapfrogAppAction.hpp.
|
pure virtual |
Execute application action for Leapfrog Stepper.
Implemented in Tempus::StepperLeapfrogModifierXBase< Scalar >, Tempus::StepperLeapfrogModifierXBase< double >, Tempus::StepperLeapfrogModifierBase< Scalar >, Tempus::StepperLeapfrogModifierBase< double >, Tempus::StepperLeapfrogObserverBase< Scalar >, Tempus::StepperLeapfrogObserverBase< double >, and Tempus::StepperLeapfrogAppActionComposite< Scalar >.