![]() |
v0.15.0 |
Derived data on single entity (This is passed as argument to DataOperator::doWork) More...
#include "src/finite_elements/EntitiesFieldData.hpp"
Public Member Functions | |
| DerivedEntData (const boost::shared_ptr< EntitiesFieldData::EntData > &ent_data_ptr) | |
| int | getSense () const |
| Get entity sense for conforming approximation fields. | |
| std::vector< BitRefLevel > & | getEntDataBitRefLevel () |
| Get entity bit reference level. | |
| boost::shared_ptr< MatrixDouble > & | getNSharedPtr (const FieldApproximationBase base, const BaseDerivatives derivative) |
| Get shared pointer to base functions with derivatives. | |
| boost::shared_ptr< MatrixDouble > & | getNSharedPtr (const FieldApproximationBase base) |
| Get shared pointer to base functions (zero derivative) | |
| boost::shared_ptr< MatrixDouble > & | getDiffNSharedPtr (const FieldApproximationBase base) |
| Get shared pointer to derivatives of base functions. | |
| const boost::shared_ptr< MatrixDouble > & | getNSharedPtr (const FieldApproximationBase base) const |
| const boost::shared_ptr< MatrixDouble > & | getDiffNSharedPtr (const FieldApproximationBase base) const |
| MoFEMErrorCode | baseSwap (const std::string &field_name, const FieldApproximationBase base) |
| Used by Bernstein base to keep temporary pointer. | |
Public Member Functions inherited from MoFEM::EntitiesFieldData::EntData | |
| VectorInt & | getBBNodeOrder () |
| Get orders at the nodes. | |
| MatrixInt & | getBBAlphaIndices () |
| Get file BB indices. | |
| virtual std::map< std::string, boost::shared_ptr< MatrixInt > > & | getBBAlphaIndicesMap () |
| virtual std::map< std::string, boost::shared_ptr< MatrixDouble > > & | getBBNMap () |
| get hash map of base function for BB base, key is a field name | |
| virtual std::map< std::string, boost::shared_ptr< MatrixDouble > > & | getBBDiffNMap () |
| get hash map of derivatives base function for BB base, key is a field name | |
| virtual boost::shared_ptr< MatrixInt > & | getBBAlphaIndicesByOrderSharedPtr (const size_t o) |
| get ALpha indices for BB base by order | |
| virtual boost::shared_ptr< MatrixDouble > & | getBBNByOrderSharedPtr (const size_t o) |
| get BB base by order | |
| virtual boost::shared_ptr< MatrixDouble > & | getBBDiffNByOrderSharedPtr (const size_t o) |
| get BB base derivative by order | |
| virtual std::array< boost::shared_ptr< MatrixInt >, MaxBernsteinBezierOrder > & | getBBAlphaIndicesByOrderArray () |
| virtual std::array< boost::shared_ptr< MatrixDouble >, MaxBernsteinBezierOrder > & | getBBNByOrderArray () |
| virtual std::array< boost::shared_ptr< MatrixDouble >, MaxBernsteinBezierOrder > & | getBBDiffNByOrderArray () |
| MoFEMErrorCode | resetFieldDependentData () |
| EntData (const bool allocate_base_matrices=true) | |
| Construct EntData object. | |
| virtual | ~EntData ()=default |
| ApproximationOrder | getOrder () const |
| Get approximation order. | |
| const VectorInt & | getIndices () const |
| Get global indices of degrees of freedom on entity. | |
| const VectorIntAdaptor | getIndicesUpToOrder (int order) |
| Get global indices of DOFs on entity up to given order. | |
| const VectorInt & | getLocalIndices () const |
| Get local indices of degrees of freedom on entity. | |
| const VectorIntAdaptor | getLocalIndicesUpToOrder (int order) |
| Get local indices of DOFs on entity up to given order. | |
| int & | getSense () |
| Get reference to entity sense for modification. | |
| ApproximationOrder & | getOrder () |
| Get reference to approximation order for modification. | |
| VectorInt & | getIndices () |
| Get reference to global indices for modification. | |
| VectorInt & | getLocalIndices () |
| Get reference to local indices for modification. | |
| const VectorDouble & | getFieldData () const |
| Get DOF values on entity. | |
| const VectorAdaptor | getFieldDataUpToOrder (int order) |
| Get DOF values on entity up to given order. | |
| const VectorDofs & | getFieldDofs () const |
| Get DOF data structures (const version) | |
| VectorDouble & | getFieldData () |
| Get DOF values on entity for modification. | |
| const VectorFieldEntities & | getFieldEntities () const |
| Get field entities (const version) | |
| VectorFieldEntities & | getFieldEntities () |
| Get field entities for modification. | |
| template<int Tensor_Dim> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > | getFTensor1FieldData () |
| Return FTensor of rank 1, i.e. vector from field data coefficients. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > | getFTensor2FieldData () |
| Return FTensor rank 2, i.e. matrix from field data coefficients. | |
| template<int Tensor_Dim> | |
| FTensor::Tensor2_symmetric< FTensor::PackPtr< double *,(Tensor_Dim *(Tensor_Dim+1))/2 >, Tensor_Dim > | getFTensor2SymmetricFieldData () |
| Return symmetric FTensor rank 2, i.e. matrix from field data coefficients. | |
| FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > | getFTensor0FieldData () |
| Return scalar files as a FTensor of rank 0. | |
| VectorDofs & | getFieldDofs () |
| FieldApproximationBase & | getBase () |
| Get approximation base. | |
| FieldSpace & | getSpace () |
| Get field space. | |
| MatrixDouble & | getN (const FieldApproximationBase base) |
| get base functions this return matrix (nb. of rows is equal to nb. of Gauss pts, nb. of columns is equal to number of base functions on this entity. | |
| MatrixDouble & | getN (const std::string &field_name) |
| Get base functions for specific field (Bernstein-Bezier) | |
| MatrixDouble & | getN () |
| Get base functions using default base. | |
| MatrixDouble & | getDiffN (const FieldApproximationBase base) |
| get derivatives of base functions | |
| MatrixDouble & | getN (const FieldApproximationBase base, const BaseDerivatives derivative) |
| Get base function derivatives with specific derivative order. | |
| MatrixDouble & | getDiffN (const std::string &field_name) |
| Get derivatives of base functions for specific field. | |
| MatrixDouble & | getDiffN () |
| Get derivatives of base functions using default base. | |
| MatrixDouble & | getN (const BaseDerivatives derivative) |
| Get base function derivatives using default base. | |
| const VectorAdaptor | getN (const FieldApproximationBase base, const int gg) |
| Get base functions at specific Gauss point. | |
| const VectorAdaptor | getN (const int gg) |
| Get base functions at specific Gauss point using default base. | |
| const MatrixAdaptor | getDiffN (const FieldApproximationBase base, const int gg) |
| Get derivative of base functions at specific Gauss point. | |
| const MatrixAdaptor | getDiffN (const int gg) |
| Get derivative of base functions at specific Gauss point using default base. | |
| const VectorAdaptor | getN (const FieldApproximationBase base, const int gg, const int nb_base_functions) |
| Get base functions at Gauss point with limited number of functions. | |
| const VectorAdaptor | getN (const int gg, const int nb_base_functions) |
| Get base functions at Gauss point with limited number (default base) | |
| const MatrixAdaptor | getDiffN (const FieldApproximationBase base, const int gg, const int nb_base_functions) |
| Get derivatives of base functions at Gauss point with limited number. | |
| const MatrixAdaptor | getDiffN (const int gg, const int nb_base_functions) |
| Get derivatives of base functions at Gauss point with limited number (default base) | |
| template<int DIM> | |
| const MatrixAdaptor | getVectorN (const FieldApproximationBase base, const int gg) |
| get Hdiv of base functions at Gauss pts | |
| template<int DIM> | |
| const MatrixAdaptor | getVectorN (const int gg) |
| get Hdiv of base functions at Gauss pts | |
| template<int DIM0, int DIM1> | |
| const MatrixAdaptor | getVectorDiffN (FieldApproximationBase base, const int gg) |
| get DiffHdiv of base functions at Gauss pts | |
| template<int DIM0, int DIM1> | |
| const MatrixAdaptor | getVectorDiffN (const int gg) |
| get DiffHdiv of base functions at Gauss pts | |
| template<int DIM0, int DIM1> | |
| const MatrixAdaptor | getVectorDiffN (const FieldApproximationBase base, const int dof, const int gg) |
| get DiffHdiv of base functions at Gauss pts | |
| template<int DIM0, int DIM1> | |
| const MatrixAdaptor | getVectorDiffN (const int dof, const int gg) |
| get DiffHdiv of base functions at Gauss pts | |
| FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > | getFTensor0N (const FieldApproximationBase base) |
| Get base function as Tensor0. | |
| FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > | getFTensor0N () |
| Get base function as Tensor0. | |
| FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > | getFTensor0N (const FieldApproximationBase base, const int gg, const int bb) |
| Get base function as Tensor0 (Loop by integration points) | |
| FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > | getFTensor0N (const int gg, const int bb) |
| Get base function as Tensor0 (Loop by integration points) | |
| template<int Tensor_Dim> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > | getFTensor1DiffN (const FieldApproximationBase base) |
| Get derivatives of base functions. | |
| template<int Tensor_Dim> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > | getFTensor1DiffN () |
| Get derivatives of base functions. | |
| template<int Tensor_Dim> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > | getFTensor1DiffN (const FieldApproximationBase base, const int gg, const int bb) |
| Get derivatives of base functions (Loop by integration points) | |
| template<int Tensor_Dim> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > | getFTensor1DiffN (const int gg, const int bb) |
| Get derivatives of base functions (Loop by integration points) | |
| template<int Tensor_Dim> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > | getFTensor1N (FieldApproximationBase base) |
| Get base functions for Hdiv/Hcurl spaces. | |
| template<int Tensor_Dim> | |
| auto | getFTensor1N () |
| Get base functions for Hdiv space. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > | getFTensor2DiffN (FieldApproximationBase base) |
| Get derivatives of base functions for Hdiv space. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > | getFTensor2DiffN (FieldApproximationBase base, const int gg, const int bb) |
| Get derivatives of base functions for Hdiv space at integration pts. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > | getFTensor2DiffN () |
| Get derivatives of base functions for Hdiv space. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > | getFTensor2DiffN (const int gg, const int bb) |
| Get derivatives of base functions for Hdiv space at integration pts. | |
| template<int Tensor_Dim0, int Tensor_Dim1, int Tensor_Dim2> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 *Tensor_Dim2 >, Tensor_Dim0, Tensor_Dim1, Tensor_Dim2 > | getFTensor3Diff2N (FieldApproximationBase base) |
| Get second derivatives of base functions for Hvec space. | |
| template<int Tensor_Dim0, int Tensor_Dim1, int Tensor_Dim2> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 *Tensor_Dim2 >, Tensor_Dim0, Tensor_Dim1, Tensor_Dim2 > | getFTensor3Diff2N () |
| Get second derivatives of base functions for Hvec space. | |
| template<int Tensor_Dim0, int Tensor_Dim1, int Tensor_Dim2> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 *Tensor_Dim2 >, Tensor_Dim0, Tensor_Dim1, Tensor_Dim2 > | getFTensor3DiffN (FieldApproximationBase base) |
| Get derivatives of base functions for tonsorial Hdiv space. | |
| template<int Tensor_Dim0, int Tensor_Dim1, int Tensor_Dim2> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 *Tensor_Dim2 >, Tensor_Dim0, Tensor_Dim1, Tensor_Dim2 > | getFTensor3DiffN (FieldApproximationBase base, const int gg, const int bb) |
| Get derivatives of base functions for tonsorial Hdiv space at integration pts. | |
| template<int Tensor_Dim0, int Tensor_Dim1, int Tensor_Dim2> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 *Tensor_Dim2 >, Tensor_Dim0, Tensor_Dim1, Tensor_Dim2 > | getFTensor3DiffN () |
| Get derivatives of base functions for tonsorial Hdiv space. | |
| template<int Tensor_Dim0, int Tensor_Dim1, int Tensor_Dim2> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 *Tensor_Dim2 >, Tensor_Dim0, Tensor_Dim1, Tensor_Dim2 > | getFTensor3DiffN (const int gg, const int bb) |
| Get derivatives of base functions for tonsorial Hdiv space at integration pts. | |
| template<int Tensor_Dim> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > | getFTensor1N (FieldApproximationBase base, const int gg, const int bb) |
| Get Hdiv base functions at integration point. | |
| template<int Tensor_Dim> | |
| auto | getFTensor1N (const int gg, const int bb) |
| Get Hdiv base functions at integration point. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > | getFTensor2N (FieldApproximationBase base) |
| Get base functions for Hdiv/Hcurl spaces. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| auto | getFTensor2N () |
| Get base functions for Hdiv space. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > | getFTensor2N (FieldApproximationBase base, const int gg, const int bb) |
| Get base functions for tensor Hdiv/Hcurl spaces. | |
| template<int Tensor_Dim0, int Tensor_Dim1> | |
| auto | getFTensor2N (const int gg, const int bb) |
| Get base functions for Hdiv space. | |
| template<> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, 3 >, 3 > | getFTensor1N (FieldApproximationBase base) |
| template<> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, 3 >, 3 > | getFTensor1N (FieldApproximationBase base, const int gg, const int bb) |
| template<> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, 9 >, 3, 3 > | getFTensor2N (FieldApproximationBase base) |
| template<> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, 3 >, 3 > | getFTensor1DiffN (const FieldApproximationBase base) |
| Get spatial derivative of base function tensor for dimension 3d. | |
| template<> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, 3 >, 3 > | getFTensor1DiffN () |
| Get spatial derivative of base function tensor for dimension 3d. | |
| template<> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, 9 >, 3, 3 > | getFTensor2DiffN (FieldApproximationBase base) |
| template<> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, 9 >, 3, 3 > | getFTensor2DiffN (FieldApproximationBase base, const int gg, const int bb) |
| template<> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, 12 >, 3, 2, 2 > | getFTensor3Diff2N (FieldApproximationBase base) |
| template<> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, 27 >, 3, 3, 3 > | getFTensor3DiffN (FieldApproximationBase base) |
| template<> | |
| FTensor::Tensor3< FTensor::PackPtr< double *, 27 >, 3, 3, 3 > | getFTensor3DiffN (FieldApproximationBase base, const int gg, const int bb) |
| template<> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, 3 >, 3 > | getFTensor1FieldData () |
| template<> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, 1 >, 1, 1 > | getFTensor2FieldData () |
| template<> | |
| FTensor::Tensor2_symmetric< FTensor::PackPtr< double *, 6 >, 3 > | getFTensor2SymmetricFieldData () |
| template<> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, 3 >, 3 > | getFTensor1DiffN (const FieldApproximationBase base, const int gg, const int bb) |
| Get spatial derivative of base function tensor for dimension 3d. | |
| template<> | |
| FTensor::Tensor1< FTensor::PackPtr< double *, 3 >, 3 > | getFTensor1DiffN (const int gg, const int bb) |
| Get spatial derivative of base function tensor for dimension 3d. | |
| template<> | |
| FTensor::Tensor2< FTensor::PackPtr< double *, 9 >, 3, 3 > | getFTensor2N (FieldApproximationBase base, const int gg, const int bb) |
Broken spaces functions | |
| const boost::shared_ptr< EntitiesFieldData::EntData > | entDataPtr |
DerivedEntData | |
| boost::shared_ptr< MatrixDouble > & | getDerivedNSharedPtr (const FieldApproximationBase base) |
| boost::shared_ptr< MatrixDouble > & | getDerivedDiffNSharedPtr (const FieldApproximationBase base) |
Bernstein-Bezier base only functions | |
| boost::shared_ptr< MatrixInt > & | getBBAlphaIndicesSharedPtr (const std::string &field_name) |
| boost::shared_ptr< MatrixDouble > & | getBBNSharedPtr (const std::string &field_name) |
| const boost::shared_ptr< MatrixDouble > & | getBBNSharedPtr (const std::string &field_name) const |
| boost::shared_ptr< MatrixDouble > & | getBBDiffNSharedPtr (const std::string &field_name) |
| const boost::shared_ptr< MatrixDouble > & | getBBDiffNSharedPtr (const std::string &field_name) const |
Additional Inherited Members | |
Public Types inherited from MoFEM::EntitiesFieldData::EntData | |
| enum | BaseDerivatives { ZeroDerivative = 0 , FirstDerivative , SecondDerivative , ThirdDerivative , ForthDerivative , LastDerivative } |
Static Public Attributes inherited from MoFEM::EntitiesFieldData::EntData | |
| static constexpr size_t | MaxBernsteinBezierOrder = BITFEID_SIZE |
Protected Attributes inherited from MoFEM::EntitiesFieldData::EntData | |
| int | sEnse |
| Entity sense (orientation) | |
| ApproximationOrder | oRder |
| Entity order. | |
| FieldSpace | sPace |
| Entity space. | |
| FieldApproximationBase | bAse |
| Field approximation base. | |
| VectorInt | iNdices |
| Global indices on entity. | |
| VectorInt | localIndices |
| Local indices on entity. | |
| VectorDofs | dOfs |
| DoFs on entity. | |
| VectorFieldEntities | fieldEntities |
| Field entities. | |
| VectorDouble | fieldData |
| Field data on entity. | |
| std::vector< BitRefLevel > | entDataBitRefLevel |
| Bit ref level in entity. | |
| std::vector< int > | dofBrokenSideVec |
| Map side to dofs number. | |
| std::vector< EntityType > | dofBrokenTypeVec |
| Map type of entity to dof number. | |
| std::array< std::array< boost::shared_ptr< MatrixDouble >, LASTBASE >, LastDerivative > | baseFunctionsAndBaseDerivatives |
| std::array< boost::shared_ptr< MatrixDouble >, LASTBASE > & | N |
| Base functions. | |
| std::array< boost::shared_ptr< MatrixDouble >, LASTBASE > & | diffN |
| Derivatives of base functions. | |
| std::string | bbFieldName |
| field name | |
| VectorInt | bbNodeOrder |
| order of nodes | |
| std::map< std::string, boost::shared_ptr< MatrixDouble > > | bbN |
| std::map< std::string, boost::shared_ptr< MatrixDouble > > | bbDiffN |
| std::map< std::string, boost::shared_ptr< MatrixInt > > | bbAlphaIndices |
| Indices for Bernstein-Bezier (BB) base. | |
| std::array< boost::shared_ptr< MatrixDouble >, MaxBernsteinBezierOrder > | bbNByOrder |
| BB base functions by order. | |
| std::array< boost::shared_ptr< MatrixDouble >, MaxBernsteinBezierOrder > | bbDiffNByOrder |
| BB base functions derivatives by order. | |
| std::array< boost::shared_ptr< MatrixInt >, MaxBernsteinBezierOrder > | bbAlphaIndicesByOrder |
| BB alpha indices by order. | |
| boost::shared_ptr< MatrixDouble > | swapBaseNPtr |
| Used by Bernstein base to keep temporary pointer. | |
| boost::shared_ptr< MatrixDouble > | swapBaseDiffNPtr |
| Used by Bernstein base to keep temporary pointer. | |
Derived data on single entity (This is passed as argument to DataOperator::doWork)
DerivedEntData share part information with EntData except information about base functions.
Definition at line 1304 of file EntitiesFieldData.hpp.
| MoFEM::DerivedEntitiesFieldData::DerivedEntData::DerivedEntData | ( | const boost::shared_ptr< EntitiesFieldData::EntData > & | ent_data_ptr | ) |
Definition at line 189 of file EntitiesFieldData.cpp.
|
virtual |
Used by Bernstein base to keep temporary pointer.
Swap approximation base.
Bernstein-Bezier (BB) base is not hierarchical, and is calculated for particular field, since it all shape functions change with the order. BB base is precalculated for every field, and when user push operator with particular field using BB base, pointers to shape functions and BaseDerivatives of shape functions are set to particular location, once operator is executed, pointers are switch back to its original position.
getNSharedPtr(base) <=== getBBNSharedPtr(field_name); // DO OPERATOR WORK getNSharedPtr(base) ==> getBBNSharedPtr(field_name);
| field_name | Name of the field for which to swap base |
| base | Approximation base type to swap |
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 168 of file EntitiesFieldData.cpp.
|
virtual |
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 946 of file EntitiesFieldData.cpp.
|
virtual |
Get shared pointer to BB derivatives of base base functions
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 967 of file EntitiesFieldData.cpp.
|
virtual |
Get shared pointer to derivatives of BB base base functions
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 976 of file EntitiesFieldData.cpp.
|
virtual |
Get shared pointer to BB base base functions
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 952 of file EntitiesFieldData.cpp.
|
virtual |
Get shared pointer to BB base base functions
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 958 of file EntitiesFieldData.cpp.
|
inline |
Definition at line 1756 of file EntitiesFieldData.hpp.
|
inline |
Definition at line 1750 of file EntitiesFieldData.hpp.
|
virtual |
Get shared pointer to derivatives of base functions.
| base | Approximation base type |
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 216 of file EntitiesFieldData.cpp.
| const boost::shared_ptr< MatrixDouble > & MoFEM::DerivedEntitiesFieldData::DerivedEntData::getDiffNSharedPtr | ( | const FieldApproximationBase | base | ) | const |
Definition at line 232 of file EntitiesFieldData.cpp.
|
virtual |
Get entity bit reference level.
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 988 of file EntitiesFieldData.cpp.
|
virtual |
Get shared pointer to base functions (zero derivative)
| base | Approximation base type |
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 207 of file EntitiesFieldData.cpp.
| const boost::shared_ptr< MatrixDouble > & MoFEM::DerivedEntitiesFieldData::DerivedEntData::getNSharedPtr | ( | const FieldApproximationBase | base | ) | const |
Definition at line 224 of file EntitiesFieldData.cpp.
|
virtual |
Get shared pointer to base functions with derivatives.
| base | Approximation base type |
| derivative | Derivative order (ZeroDerivative, FirstDerivative, etc.) |
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 198 of file EntitiesFieldData.cpp.
|
virtual |
Get entity sense for conforming approximation fields.
Entity sense is needed to calculate base functions with conforming approximation fields.
Reimplemented from MoFEM::EntitiesFieldData::EntData.
Definition at line 193 of file EntitiesFieldData.cpp.
|
protected |
Definition at line 1375 of file EntitiesFieldData.hpp.