#include <dune/fem/space/shapefunctionset/selectcaching.hh>
|
| | SelectCachingShapeFunctionSet (const GeometryType &type, const ShapeFunctionSet &shapeFunctionSet=ShapeFunctionSet()) |
| |
| int | order () const |
| | return order of shape functions
|
| |
| std::size_t | size () const |
| | return number of shape functions
|
| |
| template<class Point , class Functor > |
| void | evaluateEach (const Point &x, Functor functor) const |
| | evalute each shape function
|
| |
| template<class Point , class Functor > |
| void | jacobianEach (const Point &x, Functor functor) const |
| | evalute jacobian of each shape function
|
| |
| template<class Point , class Functor > |
| void | hessianEach (const Point &x, Functor functor) const |
| | evalute hessian of each shape function
|
| |
◆ DomainType
◆ FunctionSpaceType
◆ HessianRangeType
◆ ImplementationType
◆ JacobianRangeType
◆ RangeType
◆ SelectCachingShapeFunctionSet()
◆ evaluateEach()
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 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 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()
return order of shape functions
◆ size()
return number of shape functions
The documentation for this class was generated from the following file: