#include <dune/fem/space/shapefunctionset/selectcaching.hh>
◆ DomainType
template<class FunctionSpace >
◆ FunctionSpaceType
template<class FunctionSpace >
◆ HessianRangeType
template<class FunctionSpace >
◆ ImplementationType
template<class ShapeFunctionSet >
◆ JacobianRangeType
template<class FunctionSpace >
◆ RangeType
template<class FunctionSpace >
◆ SelectCachingShapeFunctionSet()
template<class ShapeFunctionSet >
◆ evaluateEach()
template<class FunctionSpace >
template<class Point , class Functor >
evalute each shape function
- Parameters
-
[in] | x | coordinate or quadrature point |
[in] | functor | functor call for evaluating each shape function |
The functor has to be a copyable object satisfying the following interface:
struct Functor
{
template< class Value >
void operator() ( const int shapeFunction, const Value &value );
};
◆ hessianEach()
template<class FunctionSpace >
template<class Point , class Functor >
evalute hessian of each shape function
- Parameters
-
[in] | x | coordinate or quadrature point |
[in] | functor | functor call for evaluating the hessian of each shape function |
The functor has to be a copyable object satisfying the following interface:
struct Functor
{
template< class Hessian >
void operator() ( const int shapeFunction, const Hessian &hessian );
};
◆ jacobianEach()
template<class FunctionSpace >
template<class Point , class Functor >
evalute jacobian of each shape function
- Parameters
-
[in] | x | coordinate or quadrature point |
[in] | functor | functor call for evaluating the jacobian of each shape function |
The functor has to be a copyable object satisfying the following interface:
struct Functor
{
template< class Jacobian >
void operator() ( const int shapeFunction, const Jacobian &jacobian );
};
◆ order()
template<class FunctionSpace >
return order of shape functions
◆ size()
template<class FunctionSpace >
return number of shape functions
The documentation for this class was generated from the following file: