Tempus
Version of the Day
Time Integration
|
1D CGFEM model for convection/diffusion/reaction More...
#include <CDR_Model_decl.hpp>
Public Member Functions | |
CDR_Model (const Teuchos::RCP< const Epetra_Comm > &comm, const int num_global_elements, const Scalar z_min, const Scalar z_max, const Scalar a, const Scalar k) | |
Public Member Functions inherited from Thyra::StateFuncModelEvaluatorBase< Scalar > | |
RCP< const VectorSpaceBase < Scalar > > | get_p_space (int l) const |
RCP< const Teuchos::Array < std::string > > | get_p_names (int l) const |
RCP< const VectorSpaceBase < Scalar > > | get_g_space (int j) const |
Teuchos::ArrayView< const std::string > | get_g_names (int j) const |
ModelEvaluatorBase::InArgs < Scalar > | getNominalValues () const |
ModelEvaluatorBase::InArgs < Scalar > | getLowerBounds () const |
ModelEvaluatorBase::InArgs < Scalar > | getUpperBounds () const |
RCP< LinearOpBase< Scalar > > | create_W_op () const |
RCP< PreconditionerBase< Scalar > > | create_W_prec () const |
RCP< const LinearOpWithSolveFactoryBase < Scalar > > | get_W_factory () const |
void | reportFinalPoint (const ModelEvaluatorBase::InArgs< Scalar > &finalPoint, const bool wasSolved) |
Public Member Functions inherited from Thyra::ModelEvaluator< class > | |
virtual int | Np () const =0 |
virtual int | Ng () const =0 |
virtual RCP< const VectorSpaceBase< Scalar > > | get_f_multiplier_space () const =0 |
virtual RCP< const VectorSpaceBase< Scalar > > | get_g_multiplier_space (int j) const =0 |
virtual RCP< LinearOpBase < Scalar > > | create_DfDp_op (int l) const =0 |
virtual RCP< LinearOpBase < Scalar > > | create_DgDx_dot_op (int j) const =0 |
virtual RCP< LinearOpBase < Scalar > > | create_DgDx_op (int j) const =0 |
virtual RCP< LinearOpBase < Scalar > > | create_DgDp_op (int j, int l) const =0 |
virtual ModelEvaluatorBase::OutArgs < Scalar > | createOutArgs () const =0 |
virtual void | evalModel (const ModelEvaluatorBase::InArgs< Scalar > &inArgs, const ModelEvaluatorBase::OutArgs< Scalar > &outArgs) const =0 |
ModelEvaluatorBase () | |
std::string | toString (ModelEvaluatorBase::EInArgsMembers) |
std::string | toString (ModelEvaluatorBase::EOutArgsMembers) |
std::string | toString (ModelEvaluatorBase::EDerivativeMultiVectorOrientation orientation) |
ModelEvaluatorBase::EDerivativeMultiVectorOrientation | getOtherDerivativeMultiVectorOrientation (ModelEvaluatorBase::EDerivativeMultiVectorOrientation orientation) |
Public Member Functions inherited from Teuchos::Describable | |
virtual std::string | description () const |
virtual void | describe (FancyOStream &out, const EVerbosityLevel verbLevel=verbLevel_default) const |
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) |
Private Member Functions | |
virtual Teuchos::RCP < Epetra_CrsGraph > | createGraph () |
Initializers/Accessors | |
void | set_x0 (const Teuchos::ArrayView< const Scalar > &x0) |
void | setShowGetInvalidArgs (bool showGetInvalidArg) |
void | set_W_factory (const Teuchos::RCP< const ::Thyra::LinearOpWithSolveFactoryBase< Scalar > > &W_factory) |
Public functions overridden from ModelEvaluator. | |
Teuchos::RCP< const ::Thyra::VectorSpaceBase < Scalar > > | get_x_space () const |
Teuchos::RCP< const ::Thyra::VectorSpaceBase < Scalar > > | get_f_space () const |
::Thyra::ModelEvaluatorBase::InArgs < Scalar > | getNominalValues () const |
Teuchos::RCP < Thyra::LinearOpWithSolveBase < double > > | create_W () const |
Teuchos::RCP < ::Thyra::LinearOpBase < Scalar > > | create_W_op () const |
Teuchos::RCP< const ::Thyra::LinearOpWithSolveFactoryBase < Scalar > > | get_W_factory () const |
::Thyra::ModelEvaluatorBase::InArgs < Scalar > | createInArgs () const |
Teuchos::RCP < ::Thyra::PreconditionerBase < Scalar > > | create_W_prec () const |
Private functions overridden from ModelEvaluatorDefaultBase. | |
::Thyra::ModelEvaluatorBase::OutArgs < Scalar > | createOutArgsImpl () const |
void | evalModelImpl (const ::Thyra::ModelEvaluatorBase::InArgs< Scalar > &inArgs, const ::Thyra::ModelEvaluatorBase::OutArgs< Scalar > &outArgs) const |
Additional Inherited Members | |
Public Types inherited from Thyra::ModelEvaluator< class > | |
enum | EInArgsMembers |
enum | EInArgs_p_mp |
enum | EEvalType |
enum | EDerivativeMultiVectorOrientation |
enum | EDerivativeLinearOp |
enum | EDerivativeLinearity |
enum | ERankStatus |
enum | EOutArgsMembers |
enum | EOutArgsDfDp |
enum | EOutArgsDgDx_dot |
enum | EOutArgsDgDx |
enum | EOutArgsDgDp |
enum | EOutArgsDfDp_mp |
enum | EOutArgs_g_mp |
enum | EOutArgsDgDx_dot_mp |
enum | EOutArgsDgDx_mp |
enum | EOutArgsDgDp_mp |
typedef Teuchos::ScalarTraits < Scalar >::magnitudeType | ScalarMag |
Static Public Attributes inherited from Thyra::ModelEvaluator< class > | |
static const int | NUM_E_IN_ARGS_MEMBERS |
static const int | NUM_E_OUT_ARGS_MEMBERS |
Static Public Attributes inherited from Teuchos::Describable | |
static const EVerbosityLevel | verbLevel_default |
1D CGFEM model for convection/diffusion/reaction
The equation modeled is:
dT dT d^2(T) -- + a -- + ------ - K * T**2 = 0 dt dz dz^2 subject to: T = 1.0 @ z = z_min
The Matrix W = d(f)/d(x)
is implemented as a Thyra::MultiVectorBase
object and the class Thyra::DefaultSerialDenseLinearOpWithSolveFactory
is used to create the linear solver.
Definition at line 47 of file CDR_Model_decl.hpp.
Tempus_Test::CDR_Model< Scalar >::CDR_Model | ( | const Teuchos::RCP< const Epetra_Comm > & | comm, |
const int | num_global_elements, | ||
const Scalar | z_min, | ||
const Scalar | z_max, | ||
const Scalar | a, | ||
const Scalar | k | ||
) |
Definition at line 38 of file CDR_Model_impl.hpp.
void Tempus_Test::CDR_Model< Scalar >::set_x0 | ( | const Teuchos::ArrayView< const Scalar > & | x0 | ) |
Definition at line 182 of file CDR_Model_impl.hpp.
void Tempus_Test::CDR_Model< Scalar >::setShowGetInvalidArgs | ( | bool | showGetInvalidArg | ) |
Definition at line 192 of file CDR_Model_impl.hpp.
void Tempus_Test::CDR_Model< Scalar >::set_W_factory | ( | const Teuchos::RCP< const ::Thyra::LinearOpWithSolveFactoryBase< Scalar > > & | W_factory | ) |
Definition at line 198 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 209 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 216 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 222 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 230 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 247 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 276 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 282 of file CDR_Model_impl.hpp.
|
virtual |
Implements Thyra::ModelEvaluator< class >.
Definition at line 258 of file CDR_Model_impl.hpp.
|
privatevirtual |
Allocates and returns the Jacobian matrix graph
Definition at line 149 of file CDR_Model_impl.hpp.
|
private |
Definition at line 292 of file CDR_Model_impl.hpp.
|
private |
Definition at line 298 of file CDR_Model_impl.hpp.
|
private |
Definition at line 97 of file CDR_Model_decl.hpp.
|
private |
Definition at line 98 of file CDR_Model_decl.hpp.
|
private |
Definition at line 99 of file CDR_Model_decl.hpp.
|
private |
Definition at line 100 of file CDR_Model_decl.hpp.
|
private |
Definition at line 101 of file CDR_Model_decl.hpp.
|
private |
Definition at line 102 of file CDR_Model_decl.hpp.
|
private |
Definition at line 104 of file CDR_Model_decl.hpp.
|
private |
Definition at line 105 of file CDR_Model_decl.hpp.
|
private |
Definition at line 106 of file CDR_Model_decl.hpp.
|
private |
Definition at line 107 of file CDR_Model_decl.hpp.
|
private |
Definition at line 109 of file CDR_Model_decl.hpp.
|
private |
Definition at line 110 of file CDR_Model_decl.hpp.
|
private |
Definition at line 112 of file CDR_Model_decl.hpp.
|
private |
Definition at line 114 of file CDR_Model_decl.hpp.
|
private |
Definition at line 116 of file CDR_Model_decl.hpp.
|
private |
Definition at line 117 of file CDR_Model_decl.hpp.
|
mutableprivate |
Definition at line 119 of file CDR_Model_decl.hpp.
|
mutableprivate |
Definition at line 120 of file CDR_Model_decl.hpp.
|
mutableprivate |
Definition at line 121 of file CDR_Model_decl.hpp.
|
mutableprivate |
Definition at line 123 of file CDR_Model_decl.hpp.
|
private |
Definition at line 125 of file CDR_Model_decl.hpp.
|
private |
Definition at line 126 of file CDR_Model_decl.hpp.
|
private |
Definition at line 127 of file CDR_Model_decl.hpp.
|
private |
Definition at line 128 of file CDR_Model_decl.hpp.
|
private |
Definition at line 129 of file CDR_Model_decl.hpp.
|
private |
Definition at line 130 of file CDR_Model_decl.hpp.