|
Tempus
Version of the Day
Time Integration
|
Go to the documentation of this file.
9 #ifndef Tempus_IntegratorObserverComposite_decl_hpp
10 #define Tempus_IntegratorObserverComposite_decl_hpp
13 #include "Tempus_TimeStepControl.hpp"
20 template<
class Scalar>
64 std::vector<Teuchos::RCP<IntegratorObserver<Scalar > > >
observers_;
69 #endif // Tempus_IntegratorObserverComposite_decl_hpp
virtual void observeAcceptedTimeStep(const Integrator< Scalar > &integrator) override
Observe after accepting time step.
Thyra Base interface for time integrators. Time integrators are designed to advance the solution from...
IntegratorObserverComposite()
Default constructor.
void addObserver(const Teuchos::RCP< IntegratorObserver< Scalar > > &observer)
virtual ~IntegratorObserverComposite()
Destructor.
virtual void observeBeforeTakeStep(const Integrator< Scalar > &integrator) override
Observe before Stepper takes step.
virtual void observeNextTimeStep(const Integrator< Scalar > &integrator) override
Observe after the next time step size is selected.
IntegratorObserver class for time integrators.
virtual void observeEndIntegrator(const Integrator< Scalar > &integrator) override
Observe the end of the time integrator.
std::vector< Teuchos::RCP< IntegratorObserver< Scalar > > > observers_
virtual void observeStartIntegrator(const Integrator< Scalar > &integrator) override
Observe the beginning of the time integrator.
virtual void observeAfterTakeStep(const Integrator< Scalar > &integrator) override
Observe after Stepper takes step.
virtual void observeStartTimeStep(const Integrator< Scalar > &integrator) override
Observe the beginning of the time step loop.