dune-fem
2.8-git
|
actual interface class for quadratures More...
#include <dune/fem/quadrature/quadrature.hh>
Public Types | |
enum | { codimension = 0 } |
to be revised, look at caching quad More... | |
typedef FieldImp | FieldType |
typedef QuadratureTraits< FieldType, dimension > | Traits |
typedef BaseType::IntegrationPointListStorageType | IntegrationPointListStorageType |
typedef Traits ::IntegrationPointListType | IntegrationPointListType |
type of the implementation (this must actually be a quadrature implementation) More... | |
typedef IntegrationPointListType ::CoordinateType | CoordinateType |
type of local coordinate vectors More... | |
typedef Traits ::QuadratureKeyType | QuadratureKeyType |
type of key to identify the quadrature More... | |
enum | |
enum | |
to be revised, look at caching quad More... | |
typedef QuadraturePointWrapper< ThisType > | QuadraturePointWrapperType |
Public Member Functions | |
Quadrature (const GeometryType &geometryType, const QuadratureKeyType &key) | |
create a quadrature for a given geometry and order More... | |
Quadrature (const GeometryType &geometryType, const GeometryType &elementGeometry, const QuadratureKeyType &key) | |
create a quadrature for a given geometry and order More... | |
Quadrature (const IntegrationPointListType &ipList) | |
create an integration point list from an implementation More... | |
Quadrature (const IntegrationPointListStorageType &ipListPtr) | |
create an integration point list from an implementation More... | |
Quadrature (const Quadrature &org) | |
copy constructor More... | |
const FieldType & | weight (size_t i) const |
obtain weight of i-th integration point More... | |
const QuadraturePointWrapperType | operator[] (unsigned int i) const |
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 More... | |
bool | isFaceInterpolationQuadrature (const size_t numShapeFunctions) const |
return true if quadrature is also a set of interpolation points for the given shape functions More... | |
Static Public Attributes | |
static const unsigned int | dimension = dim |
Protected Attributes | |
IntegrationPointListStorageType | ipListPtr_ |
actual interface class for quadratures
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.
typedef IntegrationPointListType :: CoordinateType Dune::Fem::Quadrature< FieldImp, dim, QuadratureTraits >::CoordinateType |
type of local coordinate vectors
typedef FieldImp Dune::Fem::Quadrature< FieldImp, dim, QuadratureTraits >::FieldType |
typedef BaseType::IntegrationPointListStorageType Dune::Fem::Quadrature< FieldImp, dim, QuadratureTraits >::IntegrationPointListStorageType |
typedef Traits :: IntegrationPointListType Dune::Fem::Quadrature< FieldImp, dim, QuadratureTraits >::IntegrationPointListType |
type of the implementation (this must actually be a quadrature implementation)
typedef Traits :: QuadratureKeyType Dune::Fem::Quadrature< FieldImp, dim, QuadratureTraits >::QuadratureKeyType |
type of key to identify the quadrature
|
inherited |
typedef QuadratureTraits< FieldType, dimension > Dune::Fem::Quadrature< FieldImp, dim, QuadratureTraits >::Traits |
|
inherited |
|
inherited |
to be revised, look at caching quad
anonymous enum |
|
inline |
create a quadrature for a given geometry and order
This constructor creates a quadrature for the specified geometry which is capable of integrating polynoms up the given order exactly.
[in] | geometryType | geometry type of the requested quadrature |
[in] | key | key to identify the quadrature (default = order) |
|
inline |
create a quadrature for a given geometry and order
This constructor creates a quadrature for the specified geometry which is capable of integrating polynoms up the given order exactly.
[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] | key | key to identify the quadrature (default = order) |
|
inlineexplicit |
create an integration point list from an implementation
This constructor creates an integration point list from a given implementation.
[in] | ipList | implementation of the integration point list |
|
inlineexplicit |
create an integration point list from an implementation
This constructor creates an integration point list from a given implementation.
[in] | ipListPtr | shared_ptr of implementation of the integration point list |
|
inline |
copy constructor
[in] | org | quadrature to be copied Copy constructor |
|
inlineinherited |
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.
|
inlineinherited |
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.
|
inlineinherited |
returns list of element interpolation points for a given face quadrature
|
inlineinherited |
obtain a reference the actual implementation
|
inlineinherited |
return true if quadrature is also a set of interpolation points for the given shape functions
|
inlineinherited |
obtain the number of integration points
|
inlineinherited |
|
inlineinherited |
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.
|
inlineinherited |
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.
[in] | i | number of the integration point, 0 <= i < nop() |
|
inline |
obtain weight of i-th integration point
This method returns the weight of the i-th integration point for 0 <= i < nop() within the quadrature.
[in] | i | number of the integration point, 0 <= i < nop() |
|
static |
|
protectedinherited |