|
dune-fem
2.8-git
|
Interface class for shape function sets. More...
#include <dune/fem/space/shapefunctionset/shapefunctionset.hh>

Public Types | |
| typedef FunctionSpace | FunctionSpaceType |
| function space type More... | |
| typedef FunctionSpaceType::DomainType | DomainType |
| domain type More... | |
| typedef FunctionSpaceType::RangeType | RangeType |
| range type More... | |
| typedef FunctionSpaceType::JacobianRangeType | JacobianRangeType |
| jacobian range type More... | |
| typedef FunctionSpaceType::HessianRangeType | HessianRangeType |
| hessian range type More... | |
Public Member Functions | |
| 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... | |
Interface class for shape function sets.
This class cannot be used itself, it is for documentation purposes only.
| typedef FunctionSpaceType::DomainType Dune::Fem::ShapeFunctionSet< FunctionSpace >::DomainType |
domain type
| typedef FunctionSpace Dune::Fem::ShapeFunctionSet< FunctionSpace >::FunctionSpaceType |
function space type
| typedef FunctionSpaceType::HessianRangeType Dune::Fem::ShapeFunctionSet< FunctionSpace >::HessianRangeType |
hessian range type
| typedef FunctionSpaceType::JacobianRangeType Dune::Fem::ShapeFunctionSet< FunctionSpace >::JacobianRangeType |
jacobian range type
| typedef FunctionSpaceType::RangeType Dune::Fem::ShapeFunctionSet< FunctionSpace >::RangeType |
range type
| void Dune::Fem::ShapeFunctionSet< FunctionSpace >::evaluateEach | ( | const Point & | x, |
| Functor | functor | ||
| ) | const |
evalute each shape function
| [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:
| void Dune::Fem::ShapeFunctionSet< FunctionSpace >::hessianEach | ( | const Point & | x, |
| Functor | functor | ||
| ) | const |
evalute hessian of each shape function
| [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:
| void Dune::Fem::ShapeFunctionSet< FunctionSpace >::jacobianEach | ( | const Point & | x, |
| Functor | functor | ||
| ) | const |
evalute jacobian of each shape function
| [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:
| int Dune::Fem::ShapeFunctionSet< FunctionSpace >::order | ( | ) | const |
return order of shape functions
| std::size_t Dune::Fem::ShapeFunctionSet< FunctionSpace >::size | ( | ) | const |
return number of shape functions