Abstract interface for representing a 1-D finite element problem. More...
#include <FELIX_StokesFO.hpp>
Public Member Functions | |
StokesFO (const Teuchos::RCP< Teuchos::ParameterList > ¶ms, const Teuchos::RCP< ParamLib > ¶mLib, const int numDim_) | |
Default constructor. | |
~StokesFO () | |
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 valide 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. Not directly called, but indirectly by following functions. | |
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 | |
StokesFO (const StokesFO &) | |
Private to prohibit copying. | |
StokesFO & | operator= (const StokesFO &) |
Private to prohibit copying. |
Abstract interface for representing a 1-D finite element problem.
Definition at line 28 of file FELIX_StokesFO.hpp.
FELIX::StokesFO::StokesFO | ( | const Teuchos::RCP< Teuchos::ParameterList > & | params, | |
const Teuchos::RCP< ParamLib > & | paramLib, | |||
const int | numDim_ | |||
) |
Default constructor.
Definition at line 19 of file FELIX_StokesFO.cpp.
FELIX::StokesFO::~StokesFO | ( | ) |
Destructor.
Definition at line 41 of file FELIX_StokesFO.cpp.
FELIX::StokesFO::StokesFO | ( | const StokesFO & | ) | [private] |
Private to prohibit copying.
virtual int FELIX::StokesFO::spatialDimension | ( | ) | const [inline, virtual] |
Return number of spatial dimensions.
Implements Albany::AbstractProblem.
Definition at line 40 of file FELIX_StokesFO.hpp.
void FELIX::StokesFO::buildProblem | ( | Teuchos::ArrayRCP< Teuchos::RCP< Albany::MeshSpecsStruct > > | meshSpecs, | |
Albany::StateManager & | stateMgr | |||
) | [virtual] |
Build the PDE instantiations, boundary conditions, and initial solution.
Definition at line 47 of file FELIX_StokesFO.cpp.
Teuchos::Array< Teuchos::RCP< const PHX::FieldTag > > FELIX::StokesFO::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 67 of file FELIX_StokesFO.cpp.
Teuchos::RCP< const Teuchos::ParameterList > FELIX::StokesFO::getValidProblemParameters | ( | ) | const [virtual] |
Each problem must generate it's list of valide parameters.
Reimplemented from Albany::AbstractProblem.
Definition at line 173 of file FELIX_StokesFO.cpp.
Teuchos::RCP< const PHX::FieldTag > FELIX::StokesFO::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 107 of file FELIX_StokesFO.hpp.
void FELIX::StokesFO::constructDirichletEvaluators | ( | const Albany::MeshSpecsStruct & | meshSpecs | ) |
Definition at line 83 of file FELIX_StokesFO.cpp.
void FELIX::StokesFO::constructNeumannEvaluators | ( | const Teuchos::RCP< Albany::MeshSpecsStruct > & | meshSpecs | ) |
Definition at line 99 of file FELIX_StokesFO.cpp.
int FELIX::StokesFO::numDim [protected] |
Definition at line 82 of file FELIX_StokesFO.hpp.
Teuchos::RCP<Albany::Layouts> FELIX::StokesFO::dl [protected] |
Definition at line 83 of file FELIX_StokesFO.hpp.