Tempus  Version of the Day
Time Integration
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Tempus_StepperSubcyclingAppActionComposite.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ****************************************************************************
3 // Tempus: Copyright (2017) Sandia Corporation
4 //
5 // Distributed under BSD 3-clause license (See accompanying file Copyright.txt)
6 // ****************************************************************************
7 // @HEADER
8 
9 #ifndef Tempus_StepperSubcyclingAppActionComposite_hpp
10 #define Tempus_StepperSubcyclingAppActionComposite_hpp
11 
13 #include "Tempus_TimeStepControl.hpp"
14 #include <vector>
15 
16 namespace Tempus {
17 
18 /** \brief This composite AppAction loops over added AppActions.
19  *
20  * Inidividual AppActions are executed in the order in which they
21  * were added.
22  */
23 template<class Scalar>
25  : virtual public Tempus::StepperSubcyclingAppAction<Scalar>
26 {
27 public:
28 
29  /// Default constructor
31 
32  /// Destructor
34 
35  /// Execute application action for Subcycling Stepper.
36  virtual void execute(
37  Teuchos::RCP<SolutionHistory<Scalar> > sh,
38  Teuchos::RCP<StepperSubcycling<Scalar> > stepper,
40  {
41  for(auto& a : appActions_)
42  a->execute(sh, stepper, actLoc);
43  }
44 
45  // Add AppAction to the AppAction vector.
46  void addSubcyclingAppAction(Teuchos::RCP<StepperSubcyclingAppAction<Scalar> > appAction);
47  {
48  appActions_.push_back(appAction);
49  }
50 
51  // Clear the AppAction vector.
53  { appActions_.clear();}
54 
55  // Return the size of the AppAction vector.
56  std::size_t getSize() const { return appActions_.size(); }
57 
58 private:
59 
60  std::vector<Teuchos::RCP<StepperSubcyclingAppAction<Scalar > > > appActions_;
61 
62 };
63 
64 } // namespace Tempus
65 #endif // Tempus_StepperSubcyclingAppActionComposite_hpp
StepperSubcyclingAppActionComposite()
Default constructor.
Application Action for StepperSubcycling.
virtual ~StepperSubcyclingAppActionComposite()
Destructor.
virtual void execute(Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperSubcycling< Scalar > > stepper, const typename StepperSubcyclingAppAction< Scalar >::ACTION_LOCATION actLoc)
Execute application action for Subcycling Stepper.
SolutionHistory is basically a container of SolutionStates. SolutionHistory maintains a collection of...
ACTION_LOCATION
Indicates the location of application action (see algorithm).
void addSubcyclingAppAction(Teuchos::RCP< StepperSubcyclingAppAction< Scalar > > appAction)
This composite AppAction loops over added AppActions.
std::vector< Teuchos::RCP< StepperSubcyclingAppAction< Scalar > > > appActions_