|
dune-fem
2.8-git
|
Local basis functions. More...
#include <dune/fem/function/localfunction/localfunctionset.hh>
Public Types | |
| typedef Entity | EntityType |
| entity type More... | |
| typedef FunctionSpace< typename Entity::Geometry::ctype, typename Range::value_type, Entity::Geometry::coorddimension, Range::dimension > | 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 basis functions More... | |
| const EntityType & | entity () const |
| return entity More... | |
| std::size_t | size () const |
| return number of basis functions More... | |
| template<class Point , class Functor > | |
| void | evaluateEach (const Point &x, Functor functor) const |
| template<class Point , class Functor > | |
| void | jacobianEach (const Point &x, Functor functor) const |
| template<class Point , class Functor > | |
| void | hessianEach (const Point &x, Functor functor) const |
Local basis functions.
This class documents the local basis functions interface.
| FunctionSpace | function space |
| typedef FunctionSpaceType::DomainType Dune::Fem::LocalFunctionSet< Entity, Range >::DomainType |
domain type
| typedef Entity Dune::Fem::LocalFunctionSet< Entity, Range >::EntityType |
entity type
| typedef FunctionSpace< typename Entity::Geometry::ctype, typename Range::value_type, Entity::Geometry::coorddimension, Range::dimension > Dune::Fem::LocalFunctionSet< Entity, Range >::FunctionSpaceType |
function space type
| typedef FunctionSpaceType::HessianRangeType Dune::Fem::LocalFunctionSet< Entity, Range >::HessianRangeType |
hessian range type
| typedef FunctionSpaceType::JacobianRangeType Dune::Fem::LocalFunctionSet< Entity, Range >::JacobianRangeType |
jacobian range type
| typedef FunctionSpaceType::RangeType Dune::Fem::LocalFunctionSet< Entity, Range >::RangeType |
range type
| const EntityType& Dune::Fem::LocalFunctionSet< Entity, Range >::entity | ( | ) | const |
return entity
| void Dune::Fem::LocalFunctionSet< Entity, Range >::evaluateEach | ( | const Point & | x, |
| Functor | functor | ||
| ) | const |
\brief evalute each basis function
\param[in] x local coordinate or quadrature point
\param[in] functor functor call for evaluating each basis function
The functor has to be a copyable object satisfying the following
interface:
| void Dune::Fem::LocalFunctionSet< Entity, Range >::hessianEach | ( | const Point & | x, |
| Functor | functor | ||
| ) | const |
\brief evalute hessian of each basis function
\param[in] x local coordinate or quadrature point
\param[in] functor functor call for evaluating the hessian of each basis function
The functor has to be a copyable object satisfying the following
interface:
| void Dune::Fem::LocalFunctionSet< Entity, Range >::jacobianEach | ( | const Point & | x, |
| Functor | functor | ||
| ) | const |
\brief evalute jacobian of each basis function
\param[in] x local coordinate or quadrature point
\param[in] functor functor call for evaluating the jacobian of each basis function
The functor has to be a copyable object satisfying the following
interface:
| int Dune::Fem::LocalFunctionSet< Entity, Range >::order | ( | ) | const |
return order of basis functions
| std::size_t Dune::Fem::LocalFunctionSet< Entity, Range >::size | ( | ) | const |
return number of basis functions