dune-fem
2.4.1-rc
|
#include </local/tomalk/somewhere/tmp/dune-fem/dune/fem/quadrature/cornerpointset.hh>
Public Types | |
typedef BaseType::CoordinateType | CoordinateType |
enum | |
to be revised, look at caching quad More... | |
typedef ct | FieldType |
field type More... | |
Public Member Functions | |
CornerPointList (const size_t id) | |
CornerPointList (const GeometryType &type, const int order, const size_t id) | |
int | order () const |
obtain order of the integration point list More... | |
GeometryType | geometryType () const |
obtain GeometryType for this integration point list More... | |
const CoordinateType & | point (size_t i) const |
obtain coordinates of i-th integration point More... | |
size_t | nop () const |
obtain the number of integration points More... | |
size_t | id () const |
obtain the identifier of the integration point list More... | |
Static Public Member Functions | |
static unsigned int | maxOrder () |
Protected Member Functions | |
void | addIntegrationPoint (const CoordinateType &point) |
Adds an integration point to the list. More... | |
typedef BaseType::CoordinateType Dune::Fem::CornerPointList< ct, Topology >::CoordinateType |
|
inherited |
field type
|
inherited |
to be revised, look at caching quad
|
inlineexplicit |
|
inline |
|
inlineprotectedinherited |
Adds an integration point to the list.
This method allows derived classes to add integration points to the list. This mehtod should only be used within the constructor of the derived class.
References Dune::Fem::DynamicArray< Element, ArrayAllocator >::append().
Referenced by Dune::Fem::CornerPointList< ct, Topology >::CornerPointList().
|
inlinevirtual |
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.
Implements Dune::Fem::IntegrationPointListImp< ct, Topology::dimension >.
|
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.
References Dune::Fem::IntegrationPointListImp< FieldImp, dim >::geometryType(), and Dune::Fem::IntegrationPointListImp< FieldImp, dim >::order().
|
inlinestatic |
|
inlineinherited |
obtain the number of integration points
References Dune::Fem::DynamicArray< Element, ArrayAllocator >::size().
|
inlinevirtual |
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.
Implements Dune::Fem::IntegrationPointListImp< ct, Topology::dimension >.
|
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() |
References Dune::Fem::IntegrationPointListImp< FieldImp, dim >::nop().