dune-fem
2.4.1-rc
|
Global basis functions. More...
#include </local/tomalk/somewhere/tmp/dune-fem/dune/fem/function/common/functionset.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 basis functions More... | |
std::size_t | size () const |
return number of basis functions More... | |
template<class Functor > | |
void | evaluateEach (const DomainType &x, Functor functor) const |
evalute each basis function More... | |
template<class Functor > | |
void | jacobianEach (const DomainType &x, Functor functor) const |
evalute jacobian of each basis function More... | |
template<class Functor > | |
void | hessianEach (const DomainType &x, Functor functor) const |
evalute hessian of each basis function More... | |
Global basis functions.
This class documents the function set interface.
FunctionSpace | function space |
typedef FunctionSpaceType::DomainType Dune::Fem::FunctionSet< FunctionSpace >::DomainType |
domain type
typedef FunctionSpace Dune::Fem::FunctionSet< FunctionSpace >::FunctionSpaceType |
function space type
typedef FunctionSpaceType::HessianRangeType Dune::Fem::FunctionSet< FunctionSpace >::HessianRangeType |
hessian range type
typedef FunctionSpaceType::JacobianRangeType Dune::Fem::FunctionSet< FunctionSpace >::JacobianRangeType |
jacobian range type
typedef FunctionSpaceType::RangeType Dune::Fem::FunctionSet< FunctionSpace >::RangeType |
range type
void Dune::Fem::FunctionSet< FunctionSpace >::evaluateEach | ( | const DomainType & | x, |
Functor | functor | ||
) | const |
evalute each basis function
[in] | x | global coordinate |
[in] | functor | functor call for evaluating each basis function |
The functor has to be a copyable object satisfying the following interface:
Referenced by Dune::Fem::LocalFunctionSetAdapter< Entity, FunctionSet >::evaluateEach().
void Dune::Fem::FunctionSet< FunctionSpace >::hessianEach | ( | const DomainType & | x, |
Functor | functor | ||
) | const |
evalute hessian of each basis function
[in] | x | global coordinate |
[in] | functor | functor call for evaluating the hessian of each basis function |
The functor has to be a copyable object satisfying the following interface:
Referenced by Dune::Fem::LocalFunctionSetAdapter< Entity, FunctionSet >::hessianEach().
void Dune::Fem::FunctionSet< FunctionSpace >::jacobianEach | ( | const DomainType & | x, |
Functor | functor | ||
) | const |
evalute jacobian of each basis function
[in] | x | global coordinate |
[in] | functor | functor call for evaluating the jacobian of each basis function |
The functor has to be a copyable object satisfying the following interface:
Referenced by Dune::Fem::LocalFunctionSetAdapter< Entity, FunctionSet >::jacobianEach().
int Dune::Fem::FunctionSet< FunctionSpace >::order | ( | ) | const |
return order of basis functions
Referenced by Dune::Fem::LocalFunctionSetAdapter< Entity, FunctionSet >::order().
std::size_t Dune::Fem::FunctionSet< FunctionSpace >::size | ( | ) | const |
return number of basis functions
Referenced by Dune::Fem::LocalFunctionSetAdapter< Entity, FunctionSet >::size().