9 #ifndef Tempus_IntegratorObserverBasic_impl_hpp
10 #define Tempus_IntegratorObserverBasic_impl_hpp
12 #include "Tempus_Stepper.hpp"
16 template<
class Scalar>
19 template<
class Scalar>
22 template<
class Scalar>
26 std::time_t begin = std::time(
nullptr);
27 const Teuchos::RCP<Teuchos::FancyOStream> out = integrator.getOStream();
28 Teuchos::OSTab ostab(out,0,
"ScreenOutput");
29 *out <<
"\nTempus - IntegratorBasic\n"
30 << std::asctime(std::localtime(&begin)) <<
"\n"
31 <<
" Stepper = " << integrator.
getStepper()->description() <<
"\n"
36 <<
"============================================================================\n"
37 <<
" Step Time dt Abs Error Rel Error Order nFail dCompTime"
41 template<
class Scalar>
45 template<
class Scalar>
49 template<
class Scalar>
53 template<
class Scalar>
57 template<
class Scalar>
61 template<
class Scalar>
68 if ((cs->getOutputScreen() ==
true) or
69 (cs->getOutput() ==
true) or
72 const Scalar steppertime = integrator.
getStepperTimer()->totalElapsedTime();
76 const Teuchos::RCP<Teuchos::FancyOStream> out = integrator.getOStream();
77 Teuchos::OSTab ostab(out,0,
"ScreenOutput");
79 <<std::setw( 6)<<std::setprecision(3)<<cs->getIndex()
80 <<std::setw(11)<<std::setprecision(3)<<cs->getTime()
81 <<std::setw(11)<<std::setprecision(3)<<cs->getTimeStep()
82 <<std::setw(11)<<std::setprecision(3)<<cs->getErrorAbs()
83 <<std::setw(11)<<std::setprecision(3)<<cs->getErrorRel()
84 <<std::fixed <<std::setw( 7)<<std::setprecision(1)<<cs->getOrder()
85 <<std::scientific<<std::setw( 7)<<std::setprecision(3)<<cs->getNFailures()
86 <<std::setw(11)<<std::setprecision(3)<<steppertime
92 template<
class Scalar>
96 std::string exitStatus;
100 exitStatus =
"Time integration FAILURE!";
102 exitStatus =
"Time integration complete.";
104 std::time_t end = std::time(
nullptr);
106 const Teuchos::RCP<Teuchos::FancyOStream> out = integrator.getOStream();
107 Teuchos::OSTab ostab(out,0,
"ScreenOutput");
108 *out <<
"============================================================================\n"
109 <<
" Total runtime = " << runtime <<
" sec = "
110 << runtime/60.0 <<
" min\n"
111 << std::asctime(std::localtime(&end))
112 << exitStatus <<
"\n"
117 #endif // Tempus_IntegratorObserverBasic_impl_hpp
virtual Teuchos::RCP< Teuchos::Time > getStepperTimer() const =0
virtual Teuchos::RCP< Teuchos::Time > getIntegratorTimer() const =0
Returns the IntegratorTimer_ for this Integrator.
virtual void observeEndIntegrator(const Integrator< Scalar > &integrator) override
Observe the end of the time integrator.
virtual void observeNextTimeStep(const Integrator< Scalar > &integrator) override
Observe after the next time step size is selected.
virtual Teuchos::RCP< const TimeStepControl< Scalar > > getTimeStepControl() const =0
Returns the TimeStepControl for this Integrator.
IntegratorObserverBasic()
Constructor.
virtual void observeStartIntegrator(const Integrator< Scalar > &integrator) override
Observe the beginning of the time integrator.
virtual Tempus::Status getStatus() const =0
Get the Status.
virtual void observeAfterCheckTimeStep(const Integrator< Scalar > &integrator) override
Observe after checking time step. Observer can still fail the time step here.
Thyra Base interface for time integrators. Time integrators are designed to advance the solution from...
virtual void observeStartTimeStep(const Integrator< Scalar > &integrator) override
Observe the beginning of the time step loop.
virtual void observeAfterTakeStep(const Integrator< Scalar > &integrator) override
Observe after Stepper takes step.
virtual void observeEndTimeStep(const Integrator< Scalar > &integrator) override
Observe the end of the time step loop.
virtual void observeBeforeTakeStep(const Integrator< Scalar > &integrator) override
Observe before Stepper takes step.
virtual Teuchos::RCP< Stepper< Scalar > > getStepper() const =0
Get the stepper.
virtual ~IntegratorObserverBasic()
Destructor.
virtual Teuchos::RCP< const SolutionHistory< Scalar > > getSolutionHistory() const =0
Returns the SolutionHistory for this Integrator.