An abstract base class that defines interface for bases that are tensor products of simpler bases.
More...
|
| Array< Array< RCP< Basis< Scalar, ArrayScalar > > > > & | getBases () |
| |
| virtual | ~TensorBasis () |
| | Destructor.
|
| |
| virtual | ~Basis () |
| | Destructor.
|
| |
| virtual void | getValues (ArrayScalar &outputValues, const ArrayScalar &inputPoints, const EOperator operatorType) const =0 |
| | Evaluation of a FEM basis on a reference cell.
|
| |
| virtual void | getValues (ArrayScalar &outputValues, const ArrayScalar &inputPoints, const ArrayScalar &cellVertices, const EOperator operatorType=OPERATOR_VALUE) const =0 |
| | Evaluation of an FVD basis evaluation on a physical cell.
|
| |
| virtual int | getCardinality () const |
| | Returns cardinality of the basis.
|
| |
| virtual int | getDegree () const |
| | Returns the degree of the basis.
|
| |
| virtual const shards::CellTopology | getBaseCellTopology () const |
| | Returns the base cell topology for which the basis is defined. See Shards documentation http://trilinos.sandia.gov/packages/shards for definition of base cell topology.
|
| |
| virtual EBasis | getBasisType () const |
| | Returns the basis type.
|
| |
| virtual ECoordinates | getCoordinateSystem () const |
| | Returns the type of coordinate system for which the basis is defined.
|
| |
| virtual int | getDofOrdinal (const int subcDim, const int subcOrd, const int subcDofOrd) |
| | DoF tag to ordinal lookup.
|
| |
| virtual const std::vector< std::vector< std::vector< int > > > & | getDofOrdinalData () |
| | DoF tag to ordinal data structure.
|
| |
| virtual const std::vector< int > & | getDofTag (const int dofOrd) |
| | DoF ordinal to DoF tag lookup.
|
| |
| virtual const std::vector< std::vector< int > > & | getAllDofTags () |
| | Retrieves all DoF tags.
|
| |
|
| Array< Array< RCP< Basis< Scalar, ArrayScalar > > > > | bases_ |
| |
| int | basisCardinality_ |
| | Cardinality of the basis, i.e., the number of basis functions/degrees-of-freedom.
|
| |
| int | basisDegree_ |
| | Degree of the largest complete polynomial space that can be represented by the basis.
|
| |
| shards::CellTopology | basisCellTopology_ |
| | Base topology of the cells for which the basis is defined. See the Shards package http://trilinos.sandia.gov/packages/shards for definition of base cell topology.
|
| |
| EBasis | basisType_ |
| | Type of the basis.
|
| |
| ECoordinates | basisCoordinates_ |
| | The coordinate system for which the basis is defined.
|
| |
| bool | basisTagsAreSet_ |
| | "true" if tagToOrdinal_ and ordinalToTag_ have been initialized
|
| |
| std::vector< std::vector< int > > | ordinalToTag_ |
| | DoF ordinal to tag lookup table.
|
| |
| std::vector< std::vector< std::vector< int > > > | tagToOrdinal_ |
| | DoF tag to ordinal lookup table.
|
| |
template<class Scalar, class ArrayScalar>
class Intrepid::TensorBasis< Scalar, ArrayScalar >
An abstract base class that defines interface for bases that are tensor products of simpler bases.
Definition at line 67 of file Intrepid_TensorBasis.hpp.