#include </local/tomalk/somewhere/tmp/dune-fem/dune/fem/space/shapefunctionset/orthonormal.hh>
|
| OrthonormalShapeFunctionSet (const GeometryType &type) |
|
int | order () const |
| return order of shape functions More...
|
|
std::size_t | size () const |
| return number of shape functions More...
|
|
template<class Point , class Functor > |
void | evaluateEach (const Point &x, Functor functor) const |
| evalute each shape function More...
|
|
template<class Point , class Functor > |
void | jacobianEach (const Point &x, Functor functor) const |
| evalute jacobian of each shape function More...
|
|
template<class Point , class Functor > |
void | hessianEach (const Point &x, Functor functor) const |
| evalute hessian of each shape function More...
|
|
template<class FunctionSpace , int polOrder>
template<class FunctionSpace , int polOrder>
template<class FunctionSpace , int polOrder>
template<class FunctionSpace , int polOrder>
template<class FunctionSpace , int polOrder>
template<class FunctionSpace , int polOrder>
template<class FunctionSpace , int polOrder>
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 );
};
References Dune::Fem::coordinate().
template<class FunctionSpace , int polOrder>
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 );
};
References Dune::Fem::coordinate().
template<class FunctionSpace , int polOrder>
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 );
};
References Dune::Fem::coordinate().
template<class FunctionSpace , int polOrder>
return order of shape functions
template<class FunctionSpace , int polOrder>
return number of shape functions
template<class FunctionSpace , int polOrder>
The documentation for this class was generated from the following file: