dune-fem
2.4.1-rc
|
Set of lagrange points. More...
#include </local/tomalk/somewhere/tmp/dune-fem/dune/fem/space/lagrange/lagrangepoints.hh>
Public Types | |
typedef FieldImp | FieldType |
field type of points More... | |
typedef FieldVector< FieldType, dimension > | CoordinateType |
type of points More... | |
enum | { codimension = 0 } |
to be revised, look at caching quad More... | |
Public Member Functions | |
LagrangePointListInterface (const size_t id) | |
~LagrangePointListInterface () | |
void | setLagrangePointImpl (const LagrangePointInterfaceType *lpImpl) |
const LocalKey & | dofInfo (unsigned int index) const |
void | dofSubEntity (unsigned int index, unsigned int &codim, unsigned int &subEntity, unsigned int &dofNumber) const |
unsigned int | entityDofNumber (unsigned int codim, unsigned int subEntity, unsigned int dofNumber) const |
GeometryType | geometryType () const |
obtain GeometryType for this integration point list More... | |
unsigned int | maxDofs (unsigned int codim) const |
obtain the maximal number of DoFs in one entity of a codimension More... | |
unsigned int | numDofs (unsigned int codim, unsigned int subEntity) const |
obtain the number of DoFs on one entity More... | |
unsigned int | numDofs (unsigned int codim) const |
obtain the total number of DoFs in a codimension More... | |
int | order () const |
obtain order of the 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 int | maxOrder () |
Static Public Attributes | |
static const int | dimension = dim |
dimension of points More... | |
static const unsigned int | maxPolynomialOrder = maxPolOrder |
polynomial order of corresponding base functions More... | |
Protected Member Functions | |
void | addDofInfo (const LocalKey &dofInfo) |
void | addIntegrationPoint (const CoordinateType &point) |
Adds an integration point to the list. More... | |
Set of lagrange points.
Interface class for a set of lagrange points. An instance of the lagrange points can be obtained from the lagrange function space. The set can be wrapped in a quadrature.
typedef FieldVector< FieldType, dimension > Dune::Fem::LagrangePointListInterface< FieldImp, dim, maxPolOrder >::CoordinateType |
type of points
typedef FieldImp Dune::Fem::LagrangePointListInterface< FieldImp, dim, maxPolOrder >::FieldType |
field type of points
|
inherited |
|
inlineexplicit |
|
inline |
|
inlineprotected |
|
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.
Referenced by Dune::Fem::QuadratureImp< FieldImp, 1 >::addQuadraturePoint(), and Dune::Fem::QuadratureImp< FieldImp, 1 >::weight().
|
inline |
|
inline |
|
inline |
|
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< FieldImp, dim >.
|
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.
Referenced by Dune::Fem::CacheProvider< GridPart, 1 >::getMapper(), Dune::Fem::PointProvider< ct, dim, 1 >::getMappers(), Dune::Fem::PointProvider< ct, dim, 1 >::getPoints(), Dune::Fem::TwistProvider< ct, dim >::getTwistStorage(), and Dune::Fem::PointProvider< ct, dim, 0 >::registerQuadrature().
|
inline |
obtain the maximal number of DoFs in one entity of a codimension
[in] | codim | codimension, the information is desired for |
|
inlinestatic |
|
inlineinherited |
obtain the number of integration points
Referenced by Dune::Fem::LocalDGPass< DiscreteModelImp, PreviousPassImp >::applyLocalNeighbor(), Dune::Fem::TwistMapperCreator< ct, dim >::createStorage(), Dune::Fem::PointProvider< ct, dim, 1 >::getMappers(), Dune::Fem::IntegrationPointListImp< ct, Topology::dimension >::point(), and Dune::Fem::PointProvider< ct, dim, 0 >::registerQuadrature().
|
inline |
obtain the number of DoFs on one entity
[in] | codim | codimension of the entity |
[in] | subEntity | number of the subentity (of the given codimension) |
|
inline |
obtain the total number of DoFs in a codimension
[in] | codim | codimension the information is desired for |
|
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< FieldImp, dim >.
|
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() |
Referenced by Dune::Fem::TwistMapperCreator< ct, dim >::createStorage(), Dune::Fem::PointProvider< ct, dim, 1 >::getMappers(), Dune::Fem::PointProvider< ct, dim, 0 >::registerQuadrature(), and Dune::Fem::QuadratureImp< FieldImp, 1 >::weight().
|
inline |
|
static |
dimension of points
|
static |
polynomial order of corresponding base functions