LifeV
|
Evaluation for the interpolation of a FE function. More...
#include <EvaluationInterpolateLaplacian.hpp>
Private Attributes | |
fespacePtr_Type | M_fespace |
Data storage. More... | |
vector_Type | M_vector |
QuadratureRule * | M_quadrature |
ETCurrentFE< SpaceDim, FieldDim > | M_currentFE |
Structure for the computations. More... | |
std::vector< return_Type > | M_interpolatedLaplacians |
Storage for the temporary values. More... | |
Public Types | |
typedef VectorSmall< FieldDim > | return_Type |
Type of the value returned by this class. More... | |
typedef ETFESpace< MeshType, MapType, SpaceDim, FieldDim > | fespace_Type |
Type of the FESpace to be used in this class. More... | |
typedef std::shared_ptr< fespace_Type > | fespacePtr_Type |
Type of the pointer on the FESpace. More... | |
typedef VectorEpetra | vector_Type |
Type of the vector to be used. More... | |
Static constants | |
static const flag_Type | S_globalUpdateFlag = ET_UPDATE_NONE |
Flag for the global current FE. More... | |
static const flag_Type | S_testUpdateFlag = ET_UPDATE_NONE |
Flag for the test current FE. More... | |
static const flag_Type | S_solutionUpdateFlag = ET_UPDATE_NONE |
Flag for the solution current FE. More... | |
Constructors, destructor | |
EvaluationInterpolateLaplacian (const EvaluationInterpolateLaplacian< MeshType, MapType, SpaceDim, FieldDim > &evaluation) | |
Copy constructor. More... | |
EvaluationInterpolateLaplacian (const ExpressionInterpolateLaplacian< MeshType, MapType, SpaceDim, FieldDim > &expression) | |
Expression-based constructor. More... | |
~EvaluationInterpolateLaplacian () | |
Destructor. More... | |
Methods | |
void | update (const UInt &iElement) |
Internal update: computes the interpolated gradients. More... | |
void | zero () |
Erase the interpolated laplacians stored internally. More... | |
void | showValues () const |
Show the values. More... | |
static void | display (std::ostream &out=std::cout) |
Display method. More... | |
Set Methods | |
template<typename CFEType > | |
void | setGlobalCFE (const CFEType *) |
Do nothing setter for the global current FE. More... | |
template<typename CFEType > | |
void | setTestCFE (const CFEType *) |
Do nothing setter for the test current FE. More... | |
template<typename CFEType > | |
void | setSolutionCFE (const CFEType *) |
Do nothing setter for the solution current FE. More... | |
void | setQuadrature (const QuadratureRule &qr) |
Setter for the quadrature rule. More... | |
Get Methods | |
return_Type | value_q (const UInt &q) const |
Getter for a value. More... | |
return_Type | value_qi (const UInt &q, const UInt &) const |
Getter for the value for a vector. More... | |
return_Type | value_qij (const UInt &q, const UInt &, const UInt &) const |
Getter for the value for a matrix. More... | |
Private Methods | |
EvaluationInterpolateLaplacian () | |
No empty constructor. More... | |
Evaluation for the interpolation of a FE function.
This class aims at representing an interpolated FE value.
This is the generic implementation, so representing a vectorial FE
This class is an Evaluation class, and therefore, has all the methods required to work within the Evaluation trees.
!! NOT DEFINED YET !! (Reason: miss SimpleTensor)
Definition at line 73 of file EvaluationInterpolateLaplacian.hpp.
typedef VectorSmall<FieldDim> return_Type |
Type of the value returned by this class.
Definition at line 81 of file EvaluationInterpolateLaplacian.hpp.
typedef ETFESpace<MeshType, MapType, SpaceDim, FieldDim> fespace_Type |
Type of the FESpace to be used in this class.
Definition at line 84 of file EvaluationInterpolateLaplacian.hpp.
typedef std::shared_ptr<fespace_Type> fespacePtr_Type |
Type of the pointer on the FESpace.
Definition at line 87 of file EvaluationInterpolateLaplacian.hpp.
typedef VectorEpetra vector_Type |
Type of the vector to be used.
Definition at line 90 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Copy constructor.
Definition at line 114 of file EvaluationInterpolateLaplacian.hpp.
|
inlineexplicit |
Expression-based constructor.
Definition at line 129 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Destructor.
Definition at line 139 of file EvaluationInterpolateLaplacian.hpp.
|
private |
No empty constructor.
|
inline |
Internal update: computes the interpolated gradients.
Definition at line 153 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Erase the interpolated laplacians stored internally.
Definition at line 178 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Show the values.
Definition at line 190 of file EvaluationInterpolateLaplacian.hpp.
|
inlinestatic |
Display method.
Definition at line 201 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Do nothing setter for the global current FE.
Definition at line 214 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Do nothing setter for the test current FE.
Definition at line 219 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Do nothing setter for the solution current FE.
Definition at line 224 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Setter for the quadrature rule.
Definition at line 228 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Getter for a value.
Definition at line 246 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Getter for the value for a vector.
Definition at line 252 of file EvaluationInterpolateLaplacian.hpp.
|
inline |
Getter for the value for a matrix.
Definition at line 258 of file EvaluationInterpolateLaplacian.hpp.
|
static |
Flag for the global current FE.
Definition at line 99 of file EvaluationInterpolateLaplacian.hpp.
|
static |
Flag for the test current FE.
Definition at line 102 of file EvaluationInterpolateLaplacian.hpp.
|
static |
Flag for the solution current FE.
Definition at line 105 of file EvaluationInterpolateLaplacian.hpp.
|
private |
Data storage.
Definition at line 277 of file EvaluationInterpolateLaplacian.hpp.
|
private |
Definition at line 278 of file EvaluationInterpolateLaplacian.hpp.
|
private |
Definition at line 279 of file EvaluationInterpolateLaplacian.hpp.
|
private |
Structure for the computations.
Definition at line 282 of file EvaluationInterpolateLaplacian.hpp.
|
private |
Storage for the temporary values.
Definition at line 285 of file EvaluationInterpolateLaplacian.hpp.