Tempus  Version of the Day
Time Integration
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Types | Public Member Functions | Private Member Functions | List of all members
Tempus::StepperNewmarkImplicitAFormModifierXBase< Scalar > Class Template Referenceabstract

Base ModifierX for StepperNewmarkImplicitAForm. More...

#include <Tempus_StepperNewmarkImplicitAFormModifierXBase.hpp>

Inheritance diagram for Tempus::StepperNewmarkImplicitAFormModifierXBase< Scalar >:
Tempus::StepperNewmarkImplicitAFormAppAction< Scalar > Tempus::StepperNewmarkImplicitAFormModifierXDefault< Scalar >

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::StepperNewmarkImplicitAFormAppAction< 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::StepperNewmarkImplicitAFormAppAction< Scalar >
 StepperNewmarkImplicitAFormAppAction ()
 Constructor. More...
 
virtual ~StepperNewmarkImplicitAFormAppAction ()
 Destructor. More...
 

Private Member Functions

void execute (Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperNewmarkImplicitAForm< Scalar > > stepper, const typename StepperNewmarkImplicitAFormAppAction< Scalar >::ACTION_LOCATION actLoc)
 Execute application action for NewmarkImplicitAForm Stepper. More...
 

Detailed Description

template<class Scalar>
class Tempus::StepperNewmarkImplicitAFormModifierXBase< Scalar >

Base ModifierX for StepperNewmarkImplicitAForm.

This class provides a means to modify just the solution values (i.e., $x$ and $dot{x}$), 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 StepperNewmarkImplicitAFormModifierXBase::MODIFIER_TYPE which correspond to the AppAction calls (StepperNewmarkImplicitAFormAppAction::ACTION_LOCATION) are shown in the algorithm documentation of the StepperNewmarkImplicitAForm.

Definition at line 36 of file Tempus_StepperNewmarkImplicitAFormModifierXBase.hpp.

Member Enumeration Documentation

Indicates the location of application action (see algorithm).

Enumerator
X_BEGIN_STEP 

Modify $x$ at the beginning of the step.

X_BEFORE_SOLVE 

Modify $x$ before the implicit solve.

X_AFTER_SOLVE 

Modify $x$ after the implicit solve.

X_END_STEP 

Modify $x$ at the end of the step.

Definition at line 97 of file Tempus_StepperNewmarkImplicitAFormModifierXBase.hpp.

Member Function Documentation

template<class Scalar>
void Tempus::StepperNewmarkImplicitAFormModifierXBase< Scalar >::execute ( Teuchos::RCP< SolutionHistory< Scalar > >  sh,
Teuchos::RCP< StepperNewmarkImplicitAForm< Scalar > >  stepper,
const typename StepperNewmarkImplicitAFormAppAction< Scalar >::ACTION_LOCATION  actLoc 
)
inlineprivatevirtual

Execute application action for NewmarkImplicitAForm Stepper.

Implements Tempus::StepperNewmarkImplicitAFormAppAction< Scalar >.

Definition at line 53 of file Tempus_StepperNewmarkImplicitAFormModifierXBase.hpp.

template<class Scalar>
virtual void Tempus::StepperNewmarkImplicitAFormModifierXBase< Scalar >::modify ( Teuchos::RCP< Thyra::VectorBase< Scalar > >  ,
const Scalar  ,
const Scalar  ,
const MODIFIER_TYPE  modType 
)
pure virtual

Modify solution based on the MODIFIER_TYPE.


The documentation for this class was generated from the following file: