#include </local/tomalk/somewhere/tmp/dune-fem/dune/fem/space/discontinuousgalerkin/legendre.hh>
|
| ScalarShapeFunctionSet (Dune::GeometryType type) |
|
unsigned int | size () const |
|
int | order () const noexcept |
| return order of shape functions More...
|
|
void | evaluateEach (const Point &x, Functor functor) const noexcept |
| evalute each shape function More...
|
|
void | jacobianEach (const Point &x, Functor functor) const noexcept |
| evalute jacobian of each shape function More...
|
|
void | hessianEach (const Point &x, Functor functor) const noexcept |
| evalute hessian of each shape function More...
|
|
template<class FunctionSpace, class GridPart, int polOrder, template< class > class Storage>
template<class FunctionSpace, class GridPart, int polOrder, template< class > class Storage>
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().
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(), and Dune::Fem::LegendreShapeFunction< FunctionSpace >::hessian().
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(), and Dune::Fem::LegendreShapeFunction< FunctionSpace >::jacobian().
return order of shape functions
template<class FunctionSpace, class GridPart, int polOrder, template< class > class Storage>
template<class FunctionSpace, class GridPart, int polOrder, template< class > class Storage>
The documentation for this struct was generated from the following file: