|
Tempus Version of the Day
Time Integration
|
Thyra Base interface for implicit time steppers. More...
#include <Tempus_StepperExplicit_decl.hpp>
Overridden from Teuchos::Describable | |
| Teuchos::RCP< const Thyra::ModelEvaluator< Scalar > > | appModel_ |
| Explicit ODE ModelEvaluator. | |
| Thyra::ModelEvaluatorBase::InArgs< Scalar > | inArgs_ |
| Thyra::ModelEvaluatorBase::OutArgs< Scalar > | outArgs_ |
| virtual void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel) const |
| virtual bool | isValidSetup (Teuchos::FancyOStream &out) const |
| void | setStepperExplicitValues (Teuchos::RCP< Teuchos::ParameterList > pl) |
| Set StepperExplicit member data from the ParameterList. | |
Basic explicit stepper methods | |
| virtual void | setModel (const Teuchos::RCP< const Thyra::ModelEvaluator< Scalar > > &appModel) |
| Set model. | |
| virtual Teuchos::RCP< const Thyra::ModelEvaluator< Scalar > > | getModel () const |
| Return the application ModelEvaluator. | |
| virtual Scalar | getInitTimeStep (const Teuchos::RCP< SolutionHistory< Scalar > > &) const |
| virtual void | setInitialConditions (const Teuchos::RCP< SolutionHistory< Scalar > > &solutionHistory) |
| Set the initial conditions, make them consistent, and set needed memory. | |
| virtual void | setSolver (Teuchos::RCP< Thyra::NonlinearSolverBase< Scalar > > solver) |
| Set solver. | |
| virtual Teuchos::RCP< Thyra::NonlinearSolverBase< Scalar > > | getSolver () const |
| Get solver. | |
| virtual void | setInitialGuess (Teuchos::RCP< const Thyra::VectorBase< Scalar > >) |
| Pass initial guess to Newton solver (only relevant for implicit solvers) | |
| virtual bool | isExplicit () const |
| virtual bool | isImplicit () const |
| virtual bool | isExplicitImplicit () const |
| virtual bool | isOneStepMethod () const |
| virtual bool | isMultiStepMethod () const |
| virtual void | evaluateExplicitODE (Teuchos::RCP< Thyra::VectorBase< Scalar > > xDot, Teuchos::RCP< const Thyra::VectorBase< Scalar > > x, const Scalar time, const Teuchos::RCP< ExplicitODEParameters< Scalar > > &p) |
| Evaluate xDot = f(x,t). | |
| virtual void | evaluateExplicitODE (Teuchos::RCP< Thyra::VectorBase< Scalar > > xDotDot, Teuchos::RCP< const Thyra::VectorBase< Scalar > > x, Teuchos::RCP< const Thyra::VectorBase< Scalar > > xDot, const Scalar time, const Teuchos::RCP< ExplicitODEParameters< Scalar > > &p) |
| Evaluate xDotDot = f(x, xDot, t). | |
Additional Inherited Members | |
Public Member Functions inherited from Tempus::Stepper< Scalar > | |
| virtual std::string | description () const |
| void | setStepperValues (const Teuchos::RCP< Teuchos::ParameterList > pl) |
| Set Stepper member data from ParameterList. | |
| virtual Teuchos::RCP< const Teuchos::ParameterList > | getValidParameters () const |
| Teuchos::RCP< Teuchos::ParameterList > | getValidParametersBasic () const |
| Add basic parameters to Steppers ParameterList. | |
| virtual void | initialize () |
| Initialize after construction and changing input parameters. | |
| virtual bool | isInitialized () |
| True if stepper's member data is initialized. | |
| virtual void | checkInitialized () |
| Check initialization, and error out on failure. | |
| virtual void | takeStep (const Teuchos::RCP< SolutionHistory< Scalar > > &solutionHistory)=0 |
| Take the specified timestep, dt, and return true if successful. | |
| virtual Teuchos::RCP< Tempus::StepperState< Scalar > > | getDefaultStepperState ()=0 |
| virtual Scalar | getOrder () const =0 |
| virtual Scalar | getOrderMin () const =0 |
| virtual Scalar | getOrderMax () const =0 |
| void | setStepperName (std::string s) |
| Set the stepper name. | |
| std::string | getStepperName () const |
| Get the stepper name. | |
| std::string | getStepperType () const |
| Get the stepper type. The stepper type is used as an identifier for the stepper, and can only be set by the derived Stepper class. | |
| virtual void | setUseFSAL (bool a) |
| void | setUseFSALTrueOnly (bool a) |
| void | setUseFSALFalseOnly (bool a) |
| bool | getUseFSAL () const |
| void | setICConsistency (std::string s) |
| std::string | getICConsistency () const |
| void | setICConsistencyCheck (bool c) |
| bool | getICConsistencyCheck () const |
| virtual OrderODE | getOrderODE () const =0 |
| virtual Teuchos::RCP< Thyra::VectorBase< Scalar > > | getStepperX () |
| Get Stepper x. | |
| virtual Teuchos::RCP< Thyra::VectorBase< Scalar > > | getStepperXDot () |
| Get Stepper xDot. | |
| virtual Teuchos::RCP< Thyra::VectorBase< Scalar > > | getStepperXDotDot () |
| Get Stepper xDotDot. | |
| virtual Teuchos::RCP< Thyra::VectorBase< Scalar > > | getStepperXDotDot (Teuchos::RCP< SolutionState< Scalar > > state) |
| Get xDotDot from SolutionState or Stepper storage. | |
Protected Member Functions inherited from Tempus::Stepper< Scalar > | |
| virtual void | setStepperX (Teuchos::RCP< Thyra::VectorBase< Scalar > > x) |
| Set x for Stepper storage. | |
| virtual void | setStepperXDot (Teuchos::RCP< Thyra::VectorBase< Scalar > > xDot) |
| Set xDot for Stepper storage. | |
| virtual void | setStepperXDotDot (Teuchos::RCP< Thyra::VectorBase< Scalar > > xDotDot) |
| Set x for Stepper storage. | |
| void | setStepperType (std::string s) |
| Set the stepper type. | |
Protected Attributes inherited from Tempus::Stepper< Scalar > | |
| bool | useFSAL_ = false |
| Use First-Same-As-Last (FSAL) principle. | |
| bool | isInitialized_ |
| True if stepper's member data is initialized. | |
Thyra Base interface for implicit time steppers.
Definition at line 39 of file Tempus_StepperExplicit_decl.hpp.
|
virtual |
Set model.
Reimplemented from Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >.
Definition at line 18 of file Tempus_StepperExplicit_impl.hpp.
|
inlinevirtual |
Return the application ModelEvaluator.
Reimplemented from Tempus::Stepper< Scalar >.
Definition at line 48 of file Tempus_StepperExplicit_decl.hpp.
|
inlinevirtual |
Implements Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperLeapfrog< Scalar >, Tempus::StepperNewmarkExplicitAForm< Scalar >, and Tempus::StepperExplicitRK< Scalar >.
Definition at line 53 of file Tempus_StepperExplicit_decl.hpp.
|
virtual |
Set the initial conditions, make them consistent, and set needed memory.
Implements Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperForwardEuler< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 29 of file Tempus_StepperExplicit_impl.hpp.
|
virtual |
Set solver.
Reimplemented from Tempus::Stepper< Scalar >.
Definition at line 268 of file Tempus_StepperExplicit_impl.hpp.
|
inlinevirtual |
Get solver.
Reimplemented from Tempus::Stepper< Scalar >.
Definition at line 66 of file Tempus_StepperExplicit_decl.hpp.
|
inlinevirtual |
Pass initial guess to Newton solver (only relevant for implicit solvers)
Implements Tempus::Stepper< Scalar >.
Definition at line 73 of file Tempus_StepperExplicit_decl.hpp.
|
inlinevirtual |
Implements Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 78 of file Tempus_StepperExplicit_decl.hpp.
|
inlinevirtual |
Implements Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 79 of file Tempus_StepperExplicit_decl.hpp.
|
inlinevirtual |
Implements Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 80 of file Tempus_StepperExplicit_decl.hpp.
|
inlinevirtual |
Implements Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 84 of file Tempus_StepperExplicit_decl.hpp.
|
inlinevirtual |
Implements Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 85 of file Tempus_StepperExplicit_decl.hpp.
|
virtual |
Evaluate xDot = f(x,t).
Definition at line 279 of file Tempus_StepperExplicit_impl.hpp.
|
virtual |
Evaluate xDotDot = f(x, xDot, t).
Definition at line 306 of file Tempus_StepperExplicit_impl.hpp.
|
virtual |
Reimplemented from Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperForwardEuler< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 336 of file Tempus_StepperExplicit_impl.hpp.
|
virtual |
Reimplemented from Tempus::Stepper< Scalar >.
Reimplemented in Tempus::StepperExplicitRK< Scalar >, Tempus::StepperForwardEuler< Scalar >, Tempus::StepperLeapfrog< Scalar >, and Tempus::StepperNewmarkExplicitAForm< Scalar >.
Definition at line 350 of file Tempus_StepperExplicit_impl.hpp.
| void Tempus::StepperExplicit< Scalar >::setStepperExplicitValues | ( | Teuchos::RCP< Teuchos::ParameterList > | pl | ) |
Set StepperExplicit member data from the ParameterList.
Definition at line 364 of file Tempus_StepperExplicit_impl.hpp.
|
protected |
Explicit ODE ModelEvaluator.
Definition at line 114 of file Tempus_StepperExplicit_decl.hpp.
|
protected |
Definition at line 116 of file Tempus_StepperExplicit_decl.hpp.
|
protected |
Definition at line 117 of file Tempus_StepperExplicit_decl.hpp.