Tempus
Version of the Day
Time Integration
Loading...
Searching...
No Matches
src
Tempus_StepperBDF2AppActionComposite.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_StepperBDF2AppActionComposite_hpp
10
#define Tempus_StepperBDF2AppActionComposite_hpp
11
12
#include "Tempus_config.hpp"
13
#include "
Tempus_StepperBDF2AppAction.hpp
"
14
#include "Tempus_TimeStepControl.hpp"
15
#include <vector>
16
17
namespace
Tempus
{
18
24
template
<
class
Scalar>
25
class
StepperBDF2AppActionComposite
26
:
virtual
public
Tempus::StepperBDF2AppAction
<Scalar>
27
{
28
public
:
29
31
StepperBDF2AppActionComposite
();
32
34
virtual
~StepperBDF2AppActionComposite
();
35
37
virtual
void
execute
(
38
Teuchos::RCP<
SolutionHistory<Scalar>
> sh,
39
Teuchos::RCP<
StepperBDF2<Scalar>
> stepper,
40
const
typename
StepperBDF2AppAction<Scalar>::ACTION_LOCATION
actLoc)
41
{
42
for
(
auto
& a :
appActions_
)
43
a->execute(sh, stepper, actLoc);
44
}
45
46
// Add AppAction to the AppAction vector.
47
void
addBDF2AppAction
(Teuchos::RCP<
StepperBDF2AppAction<Scalar>
> appAction);
48
{
49
appActions_
.push_back(appAction);
50
}
51
52
// Clear the AppAction vector.
53
void
clearBDF2AppActions
();
54
{
appActions_
.clear();}
55
56
// Return the size of the AppAction vector.
57
std::size_t
getSize
()
const
{
return
appActions_
.size(); }
58
59
private
:
60
61
std::vector<Teuchos::RCP<StepperBDF2AppAction<Scalar > > >
appActions_
;
62
63
};
64
65
}
// namespace Tempus
66
#endif
// Tempus_StepperBDF2AppActionComposite_hpp
Tempus_StepperBDF2AppAction.hpp
Tempus::SolutionHistory
SolutionHistory is basically a container of SolutionStates. SolutionHistory maintains a collection of...
Definition:
Tempus_SolutionHistory_decl.hpp:121
Tempus::StepperBDF2AppActionComposite
This composite AppAction loops over added AppActions.
Definition:
Tempus_StepperBDF2AppActionComposite.hpp:27
Tempus::StepperBDF2AppActionComposite::~StepperBDF2AppActionComposite
virtual ~StepperBDF2AppActionComposite()
Destructor.
Tempus::StepperBDF2AppActionComposite::clearBDF2AppActions
void clearBDF2AppActions()
Tempus::StepperBDF2AppActionComposite::getSize
std::size_t getSize() const
Definition:
Tempus_StepperBDF2AppActionComposite.hpp:57
Tempus::StepperBDF2AppActionComposite::addBDF2AppAction
void addBDF2AppAction(Teuchos::RCP< StepperBDF2AppAction< Scalar > > appAction)
Tempus::StepperBDF2AppActionComposite::appActions_
std::vector< Teuchos::RCP< StepperBDF2AppAction< Scalar > > > appActions_
Definition:
Tempus_StepperBDF2AppActionComposite.hpp:61
Tempus::StepperBDF2AppActionComposite::execute
virtual void execute(Teuchos::RCP< SolutionHistory< Scalar > > sh, Teuchos::RCP< StepperBDF2< Scalar > > stepper, const typename StepperBDF2AppAction< Scalar >::ACTION_LOCATION actLoc)
Execute application action for BDF2 Stepper.
Definition:
Tempus_StepperBDF2AppActionComposite.hpp:37
Tempus::StepperBDF2AppActionComposite::StepperBDF2AppActionComposite
StepperBDF2AppActionComposite()
Default constructor.
Tempus::StepperBDF2AppAction
Application Action for StepperBDF2.
Definition:
Tempus_StepperBDF2AppAction.hpp:35
Tempus::StepperBDF2AppAction::ACTION_LOCATION
ACTION_LOCATION
Indicates the location of application action (see algorithm).
Definition:
Tempus_StepperBDF2AppAction.hpp:39
Tempus::StepperBDF2
BDF2 (Backward-Difference-Formula-2) time stepper.
Definition:
Tempus_StepperBDF2_decl.hpp:100
Tempus
Definition:
Tempus_AdjointAuxSensitivityModelEvaluator_decl.hpp:21
Generated by
1.9.6