dune-fem 2.8.0
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Types | Protected Member Functions | Protected Attributes | List of all members
Dune::Fem::CornerPointList< ct, geometryId > Class Template Reference

#include <dune/fem/quadrature/cornerpointset.hh>

Inheritance diagram for Dune::Fem::CornerPointList< ct, geometryId >:
Inheritance graph

Public Types

typedef BaseType::CoordinateType CoordinateType
 
enum  
 to be revised, look at caching quad More...
 
typedef ct FieldType
 field type
 

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
 
GeometryType geometryType () const
 obtain GeometryType for this integration point list
 
const CoordinateTypepoint (size_t i) const
 obtain coordinates of i-th integration point
 
size_t nop () const
 obtain the number of integration points
 
size_t id () const
 obtain the identifier of the integration point list
 
virtual std::vector< ElementCoordinateTypeinterpolationPoints (const int reqDim) const
 returns list of element interpolation points for a given face quadrature
 
virtual bool isFaceInterpolationQuadrature (const size_t numShapeFunctions) const
 return true if quadrature is also a set of interpolation points for a given number of shape functions
 

Static Public Member Functions

static unsigned int maxOrder ()
 

Static Public Attributes

static const int dimension
 dimension of quadrature
 

Protected Types

typedef IntegrationPointListImp< FieldType, dim > ThisType
 
typedef FieldVector< FieldType, dim+1 > ElementCoordinateType
 

Protected Member Functions

void addIntegrationPoint (const CoordinateType &point)
 Adds an integration point to the list.
 
void setIntegrationPoints (std::vector< CoordinateType > &&points)
 Overwrites integration point list

 

Protected Attributes

std::vector< CoordinateTypepoints_
 
const size_t id_
 

Member Typedef Documentation

◆ CoordinateType

template<class ct , Dune::GeometryType::Id geometryId>
typedef BaseType::CoordinateType Dune::Fem::CornerPointList< ct, geometryId >::CoordinateType

◆ ElementCoordinateType

typedef FieldVector< FieldType, dim+1 > Dune::Fem::IntegrationPointListImp< ct , dim >::ElementCoordinateType
protectedinherited

◆ FieldType

typedef ct Dune::Fem::IntegrationPointListImp< ct , dim >::FieldType
inherited

field type

◆ ThisType

typedef IntegrationPointListImp< FieldType, dim > Dune::Fem::IntegrationPointListImp< ct , dim >::ThisType
protectedinherited

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
inherited

to be revised, look at caching quad

Constructor & Destructor Documentation

◆ CornerPointList() [1/2]

template<class ct , Dune::GeometryType::Id geometryId>
Dune::Fem::CornerPointList< ct, geometryId >::CornerPointList ( const size_t  id)
inlineexplicit

◆ CornerPointList() [2/2]

template<class ct , Dune::GeometryType::Id geometryId>
Dune::Fem::CornerPointList< ct, geometryId >::CornerPointList ( const GeometryType &  type,
const int  order,
const size_t  id 
)
inline

Member Function Documentation

◆ addIntegrationPoint()

void Dune::Fem::IntegrationPointListImp< ct , dim >::addIntegrationPoint ( const CoordinateType point)
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.

◆ geometryType()

template<class ct , Dune::GeometryType::Id geometryId>
GeometryType Dune::Fem::CornerPointList< ct, geometryId >::geometryType ( ) const
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.

Returns
GeometryType for this integration point list

Implements Dune::Fem::IntegrationPointListImp< ct, Dune::GeometryType(geometryId).dim() >.

◆ id()

size_t Dune::Fem::IntegrationPointListImp< ct , dim >::id ( ) const
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.

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

◆ interpolationPoints()

virtual std::vector< ElementCoordinateType > Dune::Fem::IntegrationPointListImp< ct , dim >::interpolationPoints ( const int  reqDim) const
inlinevirtualinherited

returns list of element interpolation points for a given face quadrature

◆ isFaceInterpolationQuadrature()

virtual bool Dune::Fem::IntegrationPointListImp< ct , dim >::isFaceInterpolationQuadrature ( const size_t  numShapeFunctions) const
inlinevirtualinherited

return true if quadrature is also a set of interpolation points for a given number of shape functions

◆ maxOrder()

template<class ct , Dune::GeometryType::Id geometryId>
static unsigned int Dune::Fem::CornerPointList< ct, geometryId >::maxOrder ( )
inlinestatic

◆ nop()

size_t Dune::Fem::IntegrationPointListImp< ct , dim >::nop ( ) const
inlineinherited

obtain the number of integration points

Returns
number of integration points within this list

◆ order()

template<class ct , Dune::GeometryType::Id geometryId>
int Dune::Fem::CornerPointList< ct, geometryId >::order ( ) const
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.

Returns
the order of the integration point list

Implements Dune::Fem::IntegrationPointListImp< ct, Dune::GeometryType(geometryId).dim() >.

◆ point()

const CoordinateType & Dune::Fem::IntegrationPointListImp< ct , dim >::point ( size_t  i) const
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.

Parameters
[in]inumber of the integration point, 0 <= i < nop()
Returns
reference to i-th integration point

◆ setIntegrationPoints()

void Dune::Fem::IntegrationPointListImp< ct , dim >::setIntegrationPoints ( std::vector< CoordinateType > &&  points)
inlineprotectedinherited

Overwrites integration point list

Member Data Documentation

◆ dimension

const int Dune::Fem::IntegrationPointListImp< ct , dim >::dimension
staticinherited

dimension of quadrature

◆ id_

const size_t Dune::Fem::IntegrationPointListImp< ct , dim >::id_
protectedinherited

◆ points_

std::vector< CoordinateType > Dune::Fem::IntegrationPointListImp< ct , dim >::points_
mutableprotectedinherited

The documentation for this class was generated from the following file: