Tempus Version of the Day
Time Integration
Loading...
Searching...
No Matches
Tempus_StepperOperatorSplitModifierXBase.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_StepperOperatorSplitModifierXBase_hpp
11#define Tempus_StepperOperatorSplitModifierXBase_hpp
12
13#include "Tempus_config.hpp"
14#include "Tempus_SolutionHistory.hpp"
16
17namespace Tempus {
18
37template <class Scalar>
39 : virtual public Tempus::StepperOperatorSplitAppAction<Scalar> {
40 private:
41 /* \brief Adaptor execute function
42 *
43 * This is an adaptor function to bridge between the AppAction
44 * interface and the ModifierX interface. It is meant to be private
45 * and non-virtual as deriving from this class should only need to
46 * implement the modify function.
47 *
48 * For the ModifierX interface, this adaptor maps the
49 * StepperOperatorSplitAppAction::ACTION_LOCATION to the
50 * StepperOperatorSplitModifierX::MODIFIERX_TYPE, and only pass the solution
51 * (\f$x\f$ and/or \f$\dot{x}\f$ and other parameters to the modify
52 * function.
53 */
54 void execute(
55 Teuchos::RCP<SolutionHistory<Scalar> > sh,
56 Teuchos::RCP<StepperOperatorSplit<Scalar> > stepper,
58 actLoc)
59 {
60 using Teuchos::RCP;
61
63 RCP<SolutionState<Scalar> > workingState = sh->getWorkingState();
64 const Scalar time = workingState->getTime();
65 const Scalar dt = workingState->getTimeStep();
66 RCP<Thyra::VectorBase<Scalar> > x;
67
68 switch (actLoc) {
70 modType = X_BEGIN_STEP;
71 x = workingState->getX();
72 break;
73 }
75 modType = X_BEFORE_STEPPER;
76 x = workingState->getX();
77 break;
78 }
80 modType = X_AFTER_STEPPER;
81 x = workingState->getX();
82 break;
83 }
85 modType = XDOT_END_STEP;
86 if (workingState->getXDot() != Teuchos::null)
87 x = workingState->getXDot();
88 else
89 x = stepper->getStepperXDot();
90 break;
91 }
92 default:
93 TEUCHOS_TEST_FOR_EXCEPTION(true, std::logic_error,
94 "Error - unknown action location.\n");
95 }
96
97 this->modify(x, time, dt, modType);
98 }
99
100 public:
108
110 virtual void modify(Teuchos::RCP<Thyra::VectorBase<Scalar> > /* x */,
111 const Scalar /* time */, const Scalar /* dt */,
112 const MODIFIER_TYPE modType) = 0;
113};
114
115} // namespace Tempus
116
117#endif // Tempus_StepperOperatorSplitModifierXBase_hpp
SolutionHistory is basically a container of SolutionStates. SolutionHistory maintains a collection of...
StepperOperatorSplitAppAction class for StepperOperatorSplit.
void execute(Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperOperatorSplit< Scalar > > stepper, const typename StepperOperatorSplitAppAction< Scalar >::ACTION_LOCATION actLoc)
Execute application action for OperatorSplit Stepper.
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.
OperatorSplit stepper loops through the Stepper list.