#include <dune/fem/space/shapefunctionset/orthonormal.hh>
|
int | order () const |
| return order of shape functions
|
|
std::size_t constexpr | 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
|
|
static std::size_t constexpr | size (int order) |
| please doc me
|
|
◆ DomainType
◆ FunctionSpaceType
◆ HessianRangeType
◆ JacobianRangeType
◆ RangeType
◆ OrthonormalShapeFunctionSet() [1/4]
◆ OrthonormalShapeFunctionSet() [2/4]
◆ OrthonormalShapeFunctionSet() [3/4]
◆ OrthonormalShapeFunctionSet() [4/4]
◆ 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 );
};
◆ operator=() [1/2]
◆ operator=() [2/2]
◆ order()
return order of shape functions
◆ size() [1/2]
return number of shape functions
◆ size() [2/2]
◆ dimension
The documentation for this class was generated from the following file: