Tempus
Version of the Day
Time Integration
|
Application Action for StepperSubcycling. More...
#include <Tempus_StepperSubcyclingAppAction.hpp>
Public Types | |
enum | ACTION_LOCATION { BEGIN_STEP, END_STEP } |
Indicates the location of application action (see algorithm). More... | |
Public Member Functions | |
StepperSubcyclingAppAction () | |
Constructor. More... | |
virtual | ~StepperSubcyclingAppAction () |
Destructor. More... | |
virtual void | execute (Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperSubcycling< Scalar > > stepper, const typename StepperSubcyclingAppAction< Scalar >::ACTION_LOCATION actLoc)=0 |
Execute application action for Subcycling Stepper. More... | |
Application Action for StepperSubcycling.
This class provides a means to apply various actions with the Subcycling 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 the data) to change any of it (USER BEWARE!).
Below is the Subcycling algorithm and includes the locations where the application can take actions (in italicized).
Definition at line 43 of file Tempus_StepperSubcyclingAppAction.hpp.
enum Tempus::StepperSubcyclingAppAction::ACTION_LOCATION |
Indicates the location of application action (see algorithm).
Enumerator | |
---|---|
BEGIN_STEP |
At the beginning of the step. |
END_STEP |
At the end of the step. |
Definition at line 48 of file Tempus_StepperSubcyclingAppAction.hpp.
|
inline |
Constructor.
Definition at line 54 of file Tempus_StepperSubcyclingAppAction.hpp.
|
inlinevirtual |
Destructor.
Definition at line 57 of file Tempus_StepperSubcyclingAppAction.hpp.
|
pure virtual |
Execute application action for Subcycling Stepper.
Implemented in Tempus::StepperSubcyclingModifierXBase< Scalar >, Tempus::StepperSubcyclingModifierXBase< double >, Tempus::StepperSubcyclingObserverBase< Scalar >, Tempus::StepperSubcyclingObserverBase< double >, Tempus::StepperSubcyclingModifierBase< Scalar >, Tempus::StepperSubcyclingModifierBase< double >, and Tempus::StepperSubcyclingAppActionComposite< Scalar >.