Tempus  Version of the Day
Time Integration
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
Tempus::IntegratorBasic< Scalar > Class Template Reference

Basic time integrator. More...

#include <Tempus_IntegratorBasic_decl.hpp>

Inheritance diagram for Tempus::IntegratorBasic< Scalar >:
Inheritance graph
[legend]

Public Member Functions

 IntegratorBasic ()
 Default constructor that requires a subsequent, ??? , setStepper, and initialize calls. More...
 
 IntegratorBasic (Teuchos::RCP< Stepper< Scalar > > stepper, Teuchos::RCP< SolutionHistory< Scalar > > solutionHistory, Teuchos::RCP< TimeStepControl< Scalar > > timeStepControl, Teuchos::RCP< IntegratorObserver< Scalar > > integratorObserver, std::vector< int > outputScreenIndices, int outputScreenInterval)
 Full constructor. More...
 
virtual ~IntegratorBasic ()
 Destructor. More...
 
void parseScreenOutput ()
 
Teuchos::RCP< const
Teuchos::ParameterList
getValidParameters () const
 Create valid IntegratorBasic ParameterList. More...
 
void setIntegratorName (std::string i)
 Set the Integrator Name. More...
 
std::string getIntegratorName () const
 Get the Integrator Name. More...
 
std::string getIntegratorType () const
 Get the Integrator Type. More...
 
- Public Member Functions inherited from Tempus::Integrator< Scalar >
- Public Member Functions inherited from Teuchos::Describable
void describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const
 
virtual ~Describable ()
 
 LabeledObject ()
 
virtual ~LabeledObject ()
 
virtual void setObjectLabel (const std::string &objectLabel)
 
virtual std::string getObjectLabel () const
 
DescribableStreamManipulatorState describe (const Describable &describable, const EVerbosityLevel verbLevel=Describable::verbLevel_default)
 
std::ostream & operator<< (std::ostream &os, const DescribableStreamManipulatorState &d)
 
- Public Member Functions inherited from Teuchos::VerboseObject< Tempus::Integrator< Scalar > >
 VerboseObject (const EVerbosityLevel verbLevel=VERB_DEFAULT, const RCP< FancyOStream > &oStream=Teuchos::null)
 
virtual const VerboseObjectsetVerbLevel (const EVerbosityLevel verbLevel) const
 
virtual const VerboseObjectsetOverridingVerbLevel (const EVerbosityLevel verbLevel) const
 
virtual EVerbosityLevel getVerbLevel () const
 
TEUCHOSPARAMETERLIST_LIB_DLL_EXPORT
RCP< const ParameterList
getValidVerboseObjectSublist ()
 
TEUCHOSPARAMETERLIST_LIB_DLL_EXPORT
void 
setupVerboseObjectSublist (ParameterList *paramList)
 
TEUCHOSPARAMETERLIST_LIB_DLL_EXPORT
void 
readVerboseObjectSublist (ParameterList *paramList, RCP< FancyOStream > *oStream, EVerbosityLevel *verbLevel)
 
void readVerboseObjectSublist (ParameterList *paramList, VerboseObject< ObjectType > *verboseObject)
 
- Public Member Functions inherited from Teuchos::VerboseObjectBase
virtual ~VerboseObjectBase ()
 
 VerboseObjectBase (const RCP< FancyOStream > &oStream=Teuchos::null)
 
virtual const VerboseObjectBasesetOStream (const RCP< FancyOStream > &oStream) const
 
virtual const VerboseObjectBasesetOverridingOStream (const RCP< FancyOStream > &oStream) const
 
virtual VerboseObjectBasesetLinePrefix (const std::string &linePrefix)
 
virtual RCP< FancyOStreamgetOStream () const
 
virtual RCP< FancyOStreamgetOverridingOStream () const
 
virtual std::string getLinePrefix () const
 
virtual OSTab getOSTab (const int tabs=1, const std::string &linePrefix="") const
 

Protected Member Functions

void setIntegratorType (std::string i)
 Set the Integrator Type. More...
 
- Protected Member Functions inherited from Teuchos::VerboseObject< Tempus::Integrator< Scalar > >
void initializeVerboseObject (const EVerbosityLevel verbLevel=VERB_DEFAULT, const RCP< FancyOStream > &oStream=Teuchos::null)
 
- Protected Member Functions inherited from Teuchos::VerboseObjectBase
void initializeVerboseObjectBase (const RCP< FancyOStream > &oStream=Teuchos::null)
 
virtual void informUpdatedVerbosityState () const
 

Protected Attributes

std::string integratorName_
 integrator name used for I/O. More...
 
std::string integratorType_
 the integrator type. More...
 
Teuchos::RCP< Stepper< Scalar > > stepper_
 
Teuchos::RCP< SolutionHistory
< Scalar > > 
solutionHistory_
 
Teuchos::RCP< TimeStepControl
< Scalar > > 
timeStepControl_
 
Teuchos::RCP
< IntegratorObserver< Scalar > > 
integratorObserver_
 
std::vector< int > outputScreenIndices_
 Vector of screen output indices. More...
 
int outputScreenInterval_
 screen output interval. More...
 
Status integratorStatus_
 
bool isInitialized_
 
Teuchos::RCP< Teuchos::TimeintegratorTimer_
 
Teuchos::RCP< Teuchos::TimestepperTimer_
 

Basic integrator methods

virtual bool advanceTime ()
 Advance the solution to timeMax, and return true if successful. More...
 
virtual bool advanceTime (const Scalar timeFinal) override
 Advance the solution to timeFinal, and return true if successful. More...
 
virtual void startIntegrator ()
 Perform tasks before start of integrator. More...
 
virtual void startTimeStep ()
 Start time step. More...
 
virtual void checkTimeStep ()
 Check if time step has passed or failed. More...
 
virtual void endIntegrator ()
 Perform tasks after end of integrator. More...
 
virtual Teuchos::RCP
< Teuchos::ParameterList
getTempusParameterList () override
 Return a copy of the Tempus ParameterList DEPRECATED! More...
 
virtual void setTempusParameterList (Teuchos::RCP< Teuchos::ParameterList > pl) override
 

Accessor methods

virtual Scalar getTime () const override
 Get current time. More...
 
virtual int getIndex () const override
 Get current index. More...
 
virtual Status getStatus () const override
 Get Status. More...
 
virtual Teuchos::RCP< Stepper
< Scalar > > 
getStepper () const override
 Get the Stepper. More...
 
virtual void setModel (Teuchos::RCP< const Thyra::ModelEvaluator< Scalar > > model)
 Set the model on the stepper. More...
 
virtual void setStepper (Teuchos::RCP< Stepper< Scalar > > stepper)
 Set the Stepper. More...
 
virtual void initializeSolutionHistory (Teuchos::RCP< SolutionState< Scalar > > state=Teuchos::null)
 Set the initial state which has the initial conditions. More...
 
virtual void initializeSolutionHistory (Scalar t0, Teuchos::RCP< const Thyra::VectorBase< Scalar > > x0, Teuchos::RCP< const Thyra::VectorBase< Scalar > > xdot0=Teuchos::null, Teuchos::RCP< const Thyra::VectorBase< Scalar > > xdotdot0=Teuchos::null)
 Set the initial state from Thyra::VectorBase(s) More...
 
virtual Teuchos::RCP< const
SolutionHistory< Scalar > > 
getSolutionHistory () const override
 Get the SolutionHistory. More...
 
virtual void setSolutionHistory (Teuchos::RCP< SolutionHistory< Scalar > > sh=Teuchos::null)
 Set the SolutionHistory. More...
 
virtual Teuchos::RCP< const
TimeStepControl< Scalar > > 
getTimeStepControl () const override
 Get the TimeStepControl. More...
 
virtual Teuchos::RCP
< TimeStepControl< Scalar > > 
getNonConstTimeStepControl () override
 
virtual void setTimeStepControl (Teuchos::RCP< TimeStepControl< Scalar > > tsc=Teuchos::null)
 Set the TimeStepControl. More...
 
virtual Teuchos::RCP
< IntegratorObserver< Scalar > > 
getObserver ()
 Get the Observer. More...
 
virtual void setObserver (Teuchos::RCP< IntegratorObserver< Scalar > > obs=Teuchos::null)
 Set the Observer. More...
 
virtual void initialize ()
 Initializes the Integrator after set* function calls. More...
 
virtual Teuchos::RCP
< Teuchos::Time
getIntegratorTimer () const override
 Returns the IntegratorTimer_ for this Integrator. More...
 
virtual Teuchos::RCP
< Teuchos::Time
getStepperTimer () const override
 
virtual Teuchos::RCP
< Thyra::VectorBase< Scalar > > 
getX () const
 Get current the solution, x. More...
 
virtual Teuchos::RCP
< Thyra::VectorBase< Scalar > > 
getXDot () const
 Get current the time derivative of the solution, xdot. More...
 
virtual Teuchos::RCP
< Thyra::VectorBase< Scalar > > 
getXDotDot () const
 Get current the second time derivative of the solution, xdotdot. More...
 
virtual Teuchos::RCP
< SolutionState< Scalar > > 
getCurrentState ()
 Get current state. More...
 
virtual void setScreenOutputIndexInterval (int i)
 
virtual int getScreenOutputIndexInterval () const
 
virtual void setScreenOutputIndexList (std::vector< int > indices)
 
virtual void setScreenOutputIndexList (std::string str)
 Parse when screen output should be executed. More...
 
virtual std::vector< int > getScreenOutputIndexList () const
 
virtual std::string getScreenOutputIndexListString () const
 

Overridden from Teuchos::Describable

std::string description () const override
 
void describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel) const override
 

Additional Inherited Members

- Static Public Member Functions inherited from Teuchos::VerboseObject< Tempus::Integrator< Scalar > >
static void setDefaultVerbLevel (const EVerbosityLevel defaultVerbLevel)
 
static EVerbosityLevel getDefaultVerbLevel ()
 
- Static Public Member Functions inherited from Teuchos::VerboseObjectBase
static void setDefaultOStream (const RCP< FancyOStream > &defaultOStream)
 
static RCP< FancyOStreamgetDefaultOStream ()
 
- Static Public Attributes inherited from Teuchos::Describable
static const EVerbosityLevel verbLevel_default
 

Detailed Description

template<class Scalar>
class Tempus::IntegratorBasic< Scalar >

Basic time integrator.

Definition at line 30 of file Tempus_IntegratorBasic_decl.hpp.

Constructor & Destructor Documentation

template<class Scalar >
Tempus::IntegratorBasic< Scalar >::IntegratorBasic ( )

Default constructor that requires a subsequent, ??? , setStepper, and initialize calls.

Definition at line 21 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
Tempus::IntegratorBasic< Scalar >::IntegratorBasic ( Teuchos::RCP< Stepper< Scalar > >  stepper,
Teuchos::RCP< SolutionHistory< Scalar > >  solutionHistory,
Teuchos::RCP< TimeStepControl< Scalar > >  timeStepControl,
Teuchos::RCP< IntegratorObserver< Scalar > >  integratorObserver,
std::vector< int >  outputScreenIndices,
int  outputScreenInterval 
)

Full constructor.

Definition at line 41 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
virtual Tempus::IntegratorBasic< Scalar >::~IntegratorBasic ( )
inlinevirtual

Destructor.

Definition at line 47 of file Tempus_IntegratorBasic_decl.hpp.

Member Function Documentation

template<class Scalar >
bool Tempus::IntegratorBasic< Scalar >::advanceTime ( )
virtual

Advance the solution to timeMax, and return true if successful.

Definition at line 315 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
bool Tempus::IntegratorBasic< Scalar >::advanceTime ( const Scalar  timeFinal)
overridevirtual

Advance the solution to timeFinal, and return true if successful.

Implements Tempus::Integrator< Scalar >.

Definition at line 276 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::startIntegrator ( )
virtual

Perform tasks before start of integrator.

Definition at line 286 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::startTimeStep ( )
virtual

Start time step.

Definition at line 362 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::checkTimeStep ( )
virtual

Check if time step has passed or failed.

Definition at line 387 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::endIntegrator ( )
virtual

Perform tasks after end of integrator.

Definition at line 459 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
virtual Teuchos::RCP<Teuchos::ParameterList> Tempus::IntegratorBasic< Scalar >::getTempusParameterList ( )
inlineoverridevirtual

Return a copy of the Tempus ParameterList DEPRECATED!

Implements Tempus::Integrator< Scalar >.

Definition at line 64 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual void Tempus::IntegratorBasic< Scalar >::setTempusParameterList ( Teuchos::RCP< Teuchos::ParameterList pl)
inlineoverridevirtual

Implements Tempus::Integrator< Scalar >.

Definition at line 66 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Scalar Tempus::IntegratorBasic< Scalar >::getTime ( ) const
inlineoverridevirtual

Get current time.

Implements Tempus::Integrator< Scalar >.

Definition at line 77 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual int Tempus::IntegratorBasic< Scalar >::getIndex ( ) const
inlineoverridevirtual

Get current index.

Implements Tempus::Integrator< Scalar >.

Definition at line 80 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Status Tempus::IntegratorBasic< Scalar >::getStatus ( ) const
inlineoverridevirtual

Get Status.

Implements Tempus::Integrator< Scalar >.

Definition at line 83 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Teuchos::RCP<Stepper<Scalar> > Tempus::IntegratorBasic< Scalar >::getStepper ( ) const
inlineoverridevirtual

Get the Stepper.

Implements Tempus::Integrator< Scalar >.

Definition at line 86 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setModel ( Teuchos::RCP< const Thyra::ModelEvaluator< Scalar > >  model)
virtual

Set the model on the stepper.

Definition at line 77 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setStepper ( Teuchos::RCP< Stepper< Scalar > >  stepper)
virtual

Set the Stepper.

Definition at line 88 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::initializeSolutionHistory ( Teuchos::RCP< SolutionState< Scalar > >  state = Teuchos::null)
virtual

Set the initial state which has the initial conditions.

This resets the SolutionHistory and sets the first SolutionState as the IC.

Definition at line 100 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::initializeSolutionHistory ( Scalar  t0,
Teuchos::RCP< const Thyra::VectorBase< Scalar > >  x0,
Teuchos::RCP< const Thyra::VectorBase< Scalar > >  xdot0 = Teuchos::null,
Teuchos::RCP< const Thyra::VectorBase< Scalar > >  xdotdot0 = Teuchos::null 
)
virtual

Set the initial state from Thyra::VectorBase(s)

Definition at line 141 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
virtual Teuchos::RCP<const SolutionHistory<Scalar> > Tempus::IntegratorBasic< Scalar >::getSolutionHistory ( ) const
inlineoverridevirtual

Get the SolutionHistory.

Implements Tempus::Integrator< Scalar >.

Definition at line 101 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setSolutionHistory ( Teuchos::RCP< SolutionHistory< Scalar > >  sh = Teuchos::null)
virtual

Set the SolutionHistory.

Definition at line 182 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
virtual Teuchos::RCP<const TimeStepControl<Scalar> > Tempus::IntegratorBasic< Scalar >::getTimeStepControl ( ) const
inlineoverridevirtual

Get the TimeStepControl.

Implements Tempus::Integrator< Scalar >.

Definition at line 107 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Teuchos::RCP<TimeStepControl<Scalar> > Tempus::IntegratorBasic< Scalar >::getNonConstTimeStepControl ( )
inlineoverridevirtual

Implements Tempus::Integrator< Scalar >.

Definition at line 109 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setTimeStepControl ( Teuchos::RCP< TimeStepControl< Scalar > >  tsc = Teuchos::null)
virtual

Set the TimeStepControl.

Definition at line 196 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
virtual Teuchos::RCP<IntegratorObserver<Scalar> > Tempus::IntegratorBasic< Scalar >::getObserver ( )
inlinevirtual

Get the Observer.

Definition at line 115 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setObserver ( Teuchos::RCP< IntegratorObserver< Scalar > >  obs = Teuchos::null)
virtual

Set the Observer.

Definition at line 212 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::initialize ( )
virtual

Initializes the Integrator after set* function calls.

Definition at line 223 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
virtual Teuchos::RCP<Teuchos::Time> Tempus::IntegratorBasic< Scalar >::getIntegratorTimer ( ) const
inlineoverridevirtual

Returns the IntegratorTimer_ for this Integrator.

Implements Tempus::Integrator< Scalar >.

Definition at line 124 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Teuchos::RCP<Teuchos::Time> Tempus::IntegratorBasic< Scalar >::getStepperTimer ( ) const
inlineoverridevirtual

Implements Tempus::Integrator< Scalar >.

Definition at line 126 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Teuchos::RCP<Thyra::VectorBase<Scalar> > Tempus::IntegratorBasic< Scalar >::getX ( ) const
inlinevirtual

Get current the solution, x.

Definition at line 130 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Teuchos::RCP<Thyra::VectorBase<Scalar> > Tempus::IntegratorBasic< Scalar >::getXDot ( ) const
inlinevirtual

Get current the time derivative of the solution, xdot.

Definition at line 133 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Teuchos::RCP<Thyra::VectorBase<Scalar> > Tempus::IntegratorBasic< Scalar >::getXDotDot ( ) const
inlinevirtual

Get current the second time derivative of the solution, xdotdot.

Definition at line 136 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual Teuchos::RCP<SolutionState<Scalar> > Tempus::IntegratorBasic< Scalar >::getCurrentState ( )
inlinevirtual

Get current state.

Definition at line 140 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual void Tempus::IntegratorBasic< Scalar >::setScreenOutputIndexInterval ( int  i)
inlinevirtual

Definition at line 143 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual int Tempus::IntegratorBasic< Scalar >::getScreenOutputIndexInterval ( ) const
inlinevirtual

Definition at line 146 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
virtual void Tempus::IntegratorBasic< Scalar >::setScreenOutputIndexList ( std::vector< int >  indices)
inlinevirtual

Definition at line 149 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setScreenOutputIndexList ( std::string  str)
virtual

Parse when screen output should be executed.

Definition at line 475 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
virtual std::vector<int> Tempus::IntegratorBasic< Scalar >::getScreenOutputIndexList ( ) const
inlinevirtual

Definition at line 155 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
std::string Tempus::IntegratorBasic< Scalar >::getScreenOutputIndexListString ( ) const
virtual

Definition at line 501 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::parseScreenOutput ( )
inline

Definition at line 161 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Teuchos::RCP< const Teuchos::ParameterList > Tempus::IntegratorBasic< Scalar >::getValidParameters ( ) const

Create valid IntegratorBasic ParameterList.

Definition at line 516 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
std::string Tempus::IntegratorBasic< Scalar >::description ( ) const
overridevirtual

Reimplemented from Teuchos::Describable.

Definition at line 244 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::describe ( Teuchos::FancyOStream out,
const Teuchos::EVerbosityLevel  verbLevel 
) const
overridevirtual

Reimplemented from Teuchos::Describable.

Definition at line 252 of file Tempus_IntegratorBasic_impl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setIntegratorName ( std::string  i)
inline

Set the Integrator Name.

Definition at line 176 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
std::string Tempus::IntegratorBasic< Scalar >::getIntegratorName ( ) const
inline

Get the Integrator Name.

Definition at line 178 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
std::string Tempus::IntegratorBasic< Scalar >::getIntegratorType ( ) const
inline

Get the Integrator Type.

Definition at line 181 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
void Tempus::IntegratorBasic< Scalar >::setIntegratorType ( std::string  i)
protected

Set the Integrator Type.

Definition at line 67 of file Tempus_IntegratorBasic_impl.hpp.

Member Data Documentation

template<class Scalar >
std::string Tempus::IntegratorBasic< Scalar >::integratorName_
protected

integrator name used for I/O.

Definition at line 187 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
std::string Tempus::IntegratorBasic< Scalar >::integratorType_
protected

the integrator type.

Definition at line 188 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Teuchos::RCP<Stepper<Scalar> > Tempus::IntegratorBasic< Scalar >::stepper_
protected

Definition at line 190 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Teuchos::RCP<SolutionHistory<Scalar> > Tempus::IntegratorBasic< Scalar >::solutionHistory_
protected

Definition at line 191 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Teuchos::RCP<TimeStepControl<Scalar> > Tempus::IntegratorBasic< Scalar >::timeStepControl_
protected

Definition at line 192 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Teuchos::RCP<IntegratorObserver<Scalar> > Tempus::IntegratorBasic< Scalar >::integratorObserver_
protected

Definition at line 193 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
std::vector<int> Tempus::IntegratorBasic< Scalar >::outputScreenIndices_
protected

Vector of screen output indices.

Definition at line 195 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
int Tempus::IntegratorBasic< Scalar >::outputScreenInterval_
protected

screen output interval.

Definition at line 196 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Status Tempus::IntegratorBasic< Scalar >::integratorStatus_
protected

The integratorStatus is primarily in the WORKING Status, and PASSED/FAILED are noted at the end of the run. A FAILED value is used to jump out of the time-integration loop.

Definition at line 202 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
bool Tempus::IntegratorBasic< Scalar >::isInitialized_
protected

Definition at line 203 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Teuchos::RCP<Teuchos::Time> Tempus::IntegratorBasic< Scalar >::integratorTimer_
protected

Definition at line 205 of file Tempus_IntegratorBasic_decl.hpp.

template<class Scalar >
Teuchos::RCP<Teuchos::Time> Tempus::IntegratorBasic< Scalar >::stepperTimer_
protected

Definition at line 206 of file Tempus_IntegratorBasic_decl.hpp.


The documentation for this class was generated from the following files: