Abstract interface for representing a 1-D finite element problem. More...
#include <Aeras_XZScalarAdvectionProblem.hpp>
Public Member Functions | |
XZScalarAdvectionProblem (const Teuchos::RCP< Teuchos::ParameterList > ¶ms, const Teuchos::RCP< ParamLib > ¶mLib, const int numDim_) | |
Default constructor. | |
~XZScalarAdvectionProblem () | |
Destructor. | |
virtual int | spatialDimension () const |
Return number of spatial dimensions. | |
virtual void | buildProblem (Teuchos::ArrayRCP< Teuchos::RCP< Albany::MeshSpecsStruct > > meshSpecs, Albany::StateManager &stateMgr) |
Build the PDE instantiations, boundary conditions, and initial solution. | |
virtual Teuchos::Array < Teuchos::RCP< const PHX::FieldTag > > | buildEvaluators (PHX::FieldManager< PHAL::AlbanyTraits > &fm0, const Albany::MeshSpecsStruct &meshSpecs, Albany::StateManager &stateMgr, Albany::FieldManagerChoice fmchoice, const Teuchos::RCP< Teuchos::ParameterList > &responseList) |
Teuchos::RCP< const Teuchos::ParameterList > | getValidProblemParameters () const |
Each problem must generate it's list of valid parameters. | |
template<typename EvalT > | |
Teuchos::RCP< const PHX::FieldTag > | constructEvaluators (PHX::FieldManager< PHAL::AlbanyTraits > &fm0, const Albany::MeshSpecsStruct &meshSpecs, Albany::StateManager &stateMgr, Albany::FieldManagerChoice fmchoice, const Teuchos::RCP< Teuchos::ParameterList > &responseList) |
Main problem setup routine. | |
void | constructDirichletEvaluators (const Albany::MeshSpecsStruct &meshSpecs) |
void | constructNeumannEvaluators (const Teuchos::RCP< Albany::MeshSpecsStruct > &meshSpecs) |
Protected Attributes | |
int | numDim |
Teuchos::RCP< Albany::Layouts > | dl |
Private Member Functions | |
XZScalarAdvectionProblem (const XZScalarAdvectionProblem &) | |
Private to prohibit copying. | |
XZScalarAdvectionProblem & | operator= (const XZScalarAdvectionProblem &) |
Private to prohibit copying. |
Abstract interface for representing a 1-D finite element problem.
Definition at line 25 of file Aeras_XZScalarAdvectionProblem.hpp.
Aeras::XZScalarAdvectionProblem::XZScalarAdvectionProblem | ( | const Teuchos::RCP< Teuchos::ParameterList > & | params, | |
const Teuchos::RCP< ParamLib > & | paramLib, | |||
const int | numDim_ | |||
) |
Default constructor.
Definition at line 19 of file Aeras_XZScalarAdvectionProblem.cpp.
Aeras::XZScalarAdvectionProblem::~XZScalarAdvectionProblem | ( | ) |
Destructor.
Definition at line 33 of file Aeras_XZScalarAdvectionProblem.cpp.
Aeras::XZScalarAdvectionProblem::XZScalarAdvectionProblem | ( | const XZScalarAdvectionProblem & | ) | [private] |
Private to prohibit copying.
virtual int Aeras::XZScalarAdvectionProblem::spatialDimension | ( | ) | const [inline, virtual] |
Return number of spatial dimensions.
Implements Albany::AbstractProblem.
Definition at line 37 of file Aeras_XZScalarAdvectionProblem.hpp.
void Aeras::XZScalarAdvectionProblem::buildProblem | ( | Teuchos::ArrayRCP< Teuchos::RCP< Albany::MeshSpecsStruct > > | meshSpecs, | |
Albany::StateManager & | stateMgr | |||
) | [virtual] |
Build the PDE instantiations, boundary conditions, and initial solution.
Definition at line 39 of file Aeras_XZScalarAdvectionProblem.cpp.
Teuchos::Array< Teuchos::RCP< const PHX::FieldTag > > Aeras::XZScalarAdvectionProblem::buildEvaluators | ( | PHX::FieldManager< PHAL::AlbanyTraits > & | fm0, | |
const Albany::MeshSpecsStruct & | meshSpecs, | |||
Albany::StateManager & | stateMgr, | |||
Albany::FieldManagerChoice | fmchoice, | |||
const Teuchos::RCP< Teuchos::ParameterList > & | responseList | |||
) | [virtual] |
Implements Albany::AbstractProblem.
Definition at line 66 of file Aeras_XZScalarAdvectionProblem.cpp.
Teuchos::RCP< const Teuchos::ParameterList > Aeras::XZScalarAdvectionProblem::getValidProblemParameters | ( | ) | const [virtual] |
Each problem must generate it's list of valid parameters.
Reimplemented from Albany::AbstractProblem.
Definition at line 171 of file Aeras_XZScalarAdvectionProblem.cpp.
XZScalarAdvectionProblem& Aeras::XZScalarAdvectionProblem::operator= | ( | const XZScalarAdvectionProblem & | ) | [private] |
Private to prohibit copying.
Teuchos::RCP< const PHX::FieldTag > Aeras::XZScalarAdvectionProblem::constructEvaluators | ( | PHX::FieldManager< PHAL::AlbanyTraits > & | fm0, | |
const Albany::MeshSpecsStruct & | meshSpecs, | |||
Albany::StateManager & | stateMgr, | |||
Albany::FieldManagerChoice | fmchoice, | |||
const Teuchos::RCP< Teuchos::ParameterList > & | responseList | |||
) |
Main problem setup routine.
Not directly called, but indirectly by following functions
Definition at line 102 of file Aeras_XZScalarAdvectionProblem.hpp.
void Aeras::XZScalarAdvectionProblem::constructDirichletEvaluators | ( | const Albany::MeshSpecsStruct & | meshSpecs | ) |
Definition at line 87 of file Aeras_XZScalarAdvectionProblem.cpp.
void Aeras::XZScalarAdvectionProblem::constructNeumannEvaluators | ( | const Teuchos::RCP< Albany::MeshSpecsStruct > & | meshSpecs | ) |
Definition at line 103 of file Aeras_XZScalarAdvectionProblem.cpp.
int Aeras::XZScalarAdvectionProblem::numDim [protected] |
Definition at line 81 of file Aeras_XZScalarAdvectionProblem.hpp.
Teuchos::RCP<Albany::Layouts> Aeras::XZScalarAdvectionProblem::dl [protected] |
Definition at line 82 of file Aeras_XZScalarAdvectionProblem.hpp.