DUNE-FEM (unstable)
actual interface class for integration point lists More...
#include <dune/fem/quadrature/quadrature.hh>
Public Member Functions | |
IntegrationPointList (const GeometryType &geometryType, const QuadratureKeyType &quadKey) | |
create a quadrature for a given geometry type and order More... | |
IntegrationPointList (const GeometryType &geometryType, const GeometryType &elementGeometry, const QuadratureKeyType &quadKey) | |
create a quadrature for a given geometry type and order More... | |
IntegrationPointList (const IntegrationPointListType &ipList) | |
create an integration point list from an implementation More... | |
IntegrationPointList (const IntegrationPointListStorageType &ipListPtr) | |
create an integration point list from an implementation More... | |
IntegrationPointList (const IntegrationPointList &org) | |
copy constructor More... | |
const IntegrationPointListType & | ipList () const |
obtain a reference the actual implementation More... | |
int | nop () const |
obtain the number of integration points More... | |
const CoordinateType & | point (size_t i) const |
obtain coordinates of i-th integration point More... | |
size_t | id () const |
obtain the identifier of the integration point list More... | |
int | order () const |
obtain order of the integration point list More... | |
GeometryType | geometryType () const |
obtain GeometryType for this integration point list More... | |
auto | interpolationPoints (const int reqDim) const |
returns list of element interpolation points for a given face quadrature | |
bool | isFaceInterpolationQuadrature (const size_t numShapeFunctions) const |
return true if quadrature is also a set of interpolation points for the given shape functions | |
Detailed Description
class Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >
actual interface class for integration point lists
IntegrationPointList is a proxy for the actual implementations of the integration point lists. During construction, the IntegrationPointList object is configured with an appropriate implementation object from the QuadratureProvider (monostate pattern).
The design goal is minimization of construction time. The actual implementation can be created once and reused whenever it is needed. Moreover, this layout insulates the user from all initialization and storage stuff.
- Note
- The difference between integration point lists and quadratures is that quadratures have weights.
Constructor & Destructor Documentation
◆ IntegrationPointList() [1/5]
|
inline |
create a quadrature for a given geometry type and order
This constructor creates a quadrature for the specified geometry which is capable of integrating polynoms up the given order exactly.
- Note
- The order of the quadrature may be higher than the requested one.
- Parameters
-
[in] geometryType geometry type of the requested quadrature [in] order order of the requested quadrature
◆ IntegrationPointList() [2/5]
|
inline |
create a quadrature for a given geometry type and order
This constructor creates a quadrature for the specified geometry which is capable of integrating polynoms up the given order exactly.
- Note
- The order of the quadrature may be higher than the requested one.
- Parameters
-
[in] geometryType geometry type of the requested quadrature [in] elementGeometry geometry type of element that resulting quadrature is used for (in case of face quadratures) [in] order order of the requested quadrature
◆ IntegrationPointList() [3/5]
|
inline |
create an integration point list from an implementation
This constructor creates an integration point list from a given implementation.
- Note
- This constructor is provided mainly for testing purposes.
- Parameters
-
[in] ipList implementation of the integration point list
◆ IntegrationPointList() [4/5]
|
inline |
create an integration point list from an implementation
This constructor creates an integration point list from a given implementation.
- Note
- This constructor is provided mainly for agglomeration quadratures
- Parameters
-
[in] ipListPtr implementation of the integration point list
◆ IntegrationPointList() [5/5]
|
inline |
copy constructor
- Parameters
-
[in] org integration point list to be copied
Member Function Documentation
◆ geometryType()
|
inline |
obtain GeometryType for this integration point list
Integration point lists are specified in local coordinates, i.e., coordinates with respect to the reference element. Hence, each integration point list is only valid for one type of geometry, i.e., for one reference element. The type can be retrieved via this method.
- Note
- Calling this method yields a virtual function call, so do not call this method unnecessarily.
- Returns
- GeometryType for this integration point list
References Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::ipList().
◆ id()
|
inline |
obtain the identifier of the integration point list
The identifier of an integration point list must be globally unique. Even integration point lists for different dimensions must have different identifiers.
- Note
- Quadratures are considered distinct if they differ in one of the following points: geometry type, order, dimension or implementation.
- Returns
- globally unique identifier of the integration point list
References Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::ipList().
◆ ipList()
|
inline |
obtain a reference the actual implementation
- Returns
- a reference to the implementation of this integration point list
Referenced by Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::geometryType(), Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::id(), Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::interpolationPoints(), Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::isFaceInterpolationQuadrature(), Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::nop(), Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::order(), and Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::point().
◆ nop()
|
inline |
obtain the number of integration points
- Returns
- number of integration points within this list
References Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::ipList().
Referenced by Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::axpy(), Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::evaluateAll(), and Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::jacobianAll().
◆ order()
|
inline |
obtain order of the integration point list
The order of a quadrature is the maximal polynomial degree that is guaranteed to be integrated exactly by the quadrature.
In case of an integration point list, the definition of this value is left to the implementor.
- Note
- Calling this method yields a virtual function call, so do not call this method unnecessarily.
- Returns
- the order of the integration point list
References Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::ipList().
◆ point()
|
inline |
obtain coordinates of i-th integration point
This method returns a reference to the coordinates of the i-th integration point for 0 <= i < nop(). The integration point is given in local coordinates, i.e., coordinates with respect to the reference element.
- Parameters
-
[in] i number of the integration point, 0 <= i < nop()
- Returns
- reference to i-th integration point
References Dune::Fem::IntegrationPointList< FieldImp, dim, IntegrationTraits >::ipList().
The documentation for this class was generated from the following file:
- dune/fem/quadrature/quadrature.hh