Tempus Version of the Day
Time Integration
Loading...
Searching...
No Matches
Tempus_StepperBackwardEulerModifierXBase.hpp
Go to the documentation of this file.
1//@HEADER
2// *****************************************************************************
3// Tempus: Time Integration and Sensitivity Analysis Package
4//
5// Copyright 2017 NTESS and the Tempus contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8//@HEADER
9
10#ifndef Tempus_StepperBackwardEulerModifierXBase_hpp
11#define Tempus_StepperBackwardEulerModifierXBase_hpp
12
13#include "Tempus_config.hpp"
14#include "Tempus_SolutionHistory.hpp"
16
17namespace Tempus {
18
36template <class Scalar>
38 : virtual public Tempus::StepperBackwardEulerAppAction<Scalar> {
39 private:
40 /* \brief Adaptor execute function
41 *
42 * This is an adaptor function to bridge between the AppAction
43 * interface and the ModifierX interface. It is meant to be private
44 * and non-virtual as deriving from this class should only need to
45 * implement the modify function.
46 *
47 * For the ModifierX interface, this adaptor maps the
48 * StepperBackwardEulerAppAction::ACTION_LOCATION to the
49 * StepperBackwardEulerModifierX::MODIFIERX_TYPE, and only pass the solution
50 * (\f$x\f$ and/or \f$\dot{x}\f$ and other parameters to the modify
51 * function.
52 */
53 void execute(
54 Teuchos::RCP<SolutionHistory<Scalar> > sh,
55 Teuchos::RCP<StepperBackwardEuler<Scalar> > stepper,
57 actLoc)
58 {
59 using Teuchos::RCP;
60
62 RCP<SolutionState<Scalar> > workingState = sh->getWorkingState();
63 const Scalar time = workingState->getTime();
64 const Scalar dt = workingState->getTimeStep();
65 RCP<Thyra::VectorBase<Scalar> > x;
66
67 switch (actLoc) {
69 modType = X_BEGIN_STEP;
70 x = workingState->getX();
71 break;
72 }
74 modType = X_BEFORE_SOLVE;
75 x = workingState->getX();
76 break;
77 }
79 modType = X_AFTER_SOLVE;
80 x = workingState->getX();
81 break;
82 }
84 modType = XDOT_END_STEP;
85 if (workingState->getXDot() != Teuchos::null)
86 x = workingState->getXDot();
87 else
88 x = stepper->getStepperXDot();
89 break;
90 }
91 default:
92 TEUCHOS_TEST_FOR_EXCEPTION(true, std::logic_error,
93 "Error - unknown action location.\n");
94 }
95
96 this->modify(x, time, dt, modType);
97 }
98
99 public:
107
109 virtual void modify(Teuchos::RCP<Thyra::VectorBase<Scalar> > /* x */,
110 const Scalar /* time */, const Scalar /* dt */,
111 const MODIFIER_TYPE modType) = 0;
112};
113
114} // namespace Tempus
115
116#endif // Tempus_StepperBackwardEulerModifierXBase_hpp
SolutionHistory is basically a container of SolutionStates. SolutionHistory maintains a collection of...
Application Action for StepperBackwardEuler.
ACTION_LOCATION
Indicates the location of application action (see algorithm).
MODIFIER_TYPE
Indicates the location of application action (see algorithm).
virtual void modify(Teuchos::RCP< Thyra::VectorBase< Scalar > >, const Scalar, const Scalar, const MODIFIER_TYPE modType)=0
Modify solution based on the MODIFIER_TYPE.
void execute(Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperBackwardEuler< Scalar > > stepper, const typename StepperBackwardEulerAppAction< Scalar >::ACTION_LOCATION actLoc)
Execute application action for BackwardEuler Stepper.