Tempus  Version of the Day
Time Integration
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VanDerPolModel_decl.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_TEST_VANDERPOL_MODEL_DECL_HPP
10 #define TEMPUS_TEST_VANDERPOL_MODEL_DECL_HPP
11 
12 #include "Thyra_ModelEvaluator.hpp" // Interface
13 #include "Thyra_StateFuncModelEvaluatorBase.hpp" // Implementation
14 
15 #include "Teuchos_ParameterListAcceptorDefaultBase.hpp"
17 
18 namespace Tempus_Test {
19 
110 template <class Scalar>
113  public:
114  // Constructor
116 
117  // Exact solution
119 
120  // Exact sensitivity solution
122  int j, double t) const;
123 
126 
133  get_W_factory() const;
135 
139 
141 
147 
148  private:
149  void setupInOutArgs_() const;
150 
154  void evalModelImpl(
156  const Thyra::ModelEvaluatorBase::OutArgs<Scalar> &outArgs_bar) const;
158 
159  int dim_;
160  int Np_;
161  int np_;
162  int Ng_;
163  int ng_;
164  bool haveIC_;
166  mutable bool isInitialized_;
174 
175  // Parameters for the model:
176  Scalar epsilon_;
177  Scalar t0_ic_;
178  Scalar x0_ic_;
179  Scalar x1_ic_;
180 };
181 
182 } // namespace Tempus_Test
183 #endif // TEMPUS_TEST_VANDERPOL_MODEL_DECL_HPP
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters() const
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > p_space_
Thyra::ModelEvaluatorBase::InArgs< Scalar > nominalValues_
int Ng_
Number of observation functions (0)
Thyra::ModelEvaluatorBase::OutArgs< Scalar > outArgs_
Thyra::ModelEvaluatorBase::InArgs< Scalar > getNominalValues() const
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > g_space_
Thyra::ModelEvaluatorBase::InArgs< Scalar > getExactSolution(double t) const
Thyra::ModelEvaluatorBase::InArgs< Scalar > createInArgs() const
int Np_
Number of parameter vectors (1)
bool haveIC_
false =&gt; no nominal values are provided (default=true)
Teuchos::RCP< const Thyra::LinearOpWithSolveFactoryBase< Scalar > > get_W_factory() const
VanDerPolModel(Teuchos::RCP< Teuchos::ParameterList > pList=Teuchos::null)
Teuchos::RCP< Thyra::LinearOpBase< Scalar > > create_W_op() const
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > f_space_
Scalar x1_ic_
initial condition for x1
Teuchos::RCP< Thyra::LinearOpWithSolveBase< Scalar > > create_W() const
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > x_space_
void evalModelImpl(const Thyra::ModelEvaluatorBase::InArgs< Scalar > &inArgs_bar, const Thyra::ModelEvaluatorBase::OutArgs< Scalar > &outArgs_bar) const
Teuchos::RCP< const Teuchos::Array< std::string > > get_p_names(int l) const
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > get_g_space(int j) const
Thyra::ModelEvaluatorBase::InArgs< Scalar > inArgs_
Scalar epsilon_
This is a model parameter.
bool acceptModelParams_
Changes inArgs to require parameters.
void setParameterList(Teuchos::RCP< Teuchos::ParameterList > const &paramList)
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > get_x_space() const
int dim_
Number of state unknowns (2)
van der Pol model problem for nonlinear electrical circuit.
int np_
Number of parameters in this vector (1)
Thyra::ModelEvaluatorBase::InArgs< Scalar > getExactSensSolution(int j, double t) const
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > get_p_space(int l) const
int ng_
Number of elements in this observation function (0)
Thyra::ModelEvaluatorBase::OutArgs< Scalar > createOutArgsImpl() const
Scalar x0_ic_
initial condition for x0
Teuchos::RCP< const Thyra::VectorSpaceBase< Scalar > > get_f_space() const