Tempus Version of the Day
Time Integration
Loading...
Searching...
No Matches
Tempus_StepperRKAppActionComposite.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_StepperRKAppActionComposite_hpp
11#define Tempus_StepperRKAppActionComposite_hpp
12
13#include "Tempus_config.hpp"
15#include <vector>
16
17namespace Tempus {
18
24template <class Scalar>
26 : virtual public Tempus::StepperRKAppAction<Scalar> {
27 public:
30
33
35 virtual void execute(
36 Teuchos::RCP<SolutionHistory<Scalar> > sh,
37 Teuchos::RCP<StepperRKBase<Scalar> > stepper,
39 {
40 for (auto& a : appActions_) a->execute(sh, stepper, actLoc);
41 }
42
43 // Add AppAction to the AppAction vector.
44 void addRKAppAction(Teuchos::RCP<StepperRKAppAction<Scalar> > appAction)
45 {
46 appActions_.push_back(appAction);
47 }
48
49 // Clear the AppAction vector.
50 void clearRKAppActions() { appActions_.clear(); }
51
52 // Return the size of the AppAction vector.
53 std::size_t getSize() const { return appActions_.size(); }
54
55 private:
56 std::vector<Teuchos::RCP<StepperRKAppAction<Scalar> > > appActions_;
57};
58
59} // namespace Tempus
60#endif // Tempus_StepperRKAppActionComposite_hpp
SolutionHistory is basically a container of SolutionStates. SolutionHistory maintains a collection of...
This composite AppAction loops over added AppActions.
std::vector< Teuchos::RCP< StepperRKAppAction< Scalar > > > appActions_
void addRKAppAction(Teuchos::RCP< StepperRKAppAction< Scalar > > appAction)
virtual void execute(Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperRKBase< Scalar > > stepper, const typename StepperRKAppAction< Scalar >::ACTION_LOCATION actLoc)
Execute application action for RK Stepper.
Application Action for StepperRKBase.
ACTION_LOCATION
Indicates the location of application action (see algorithm).
Base class for Runge-Kutta methods, ExplicitRK, DIRK and IMEX.