dune-fem  2.4.1-rc
Public Types | Public Member Functions | List of all members
Dune::Fem::ShapeFunctionSet< FunctionSpace > Class Template Reference

#include </local/tomalk/somewhere/tmp/dune-fem/dune/fem/space/shapefunctionset/shapefunctionset.hh>

Inheritance diagram for Dune::Fem::ShapeFunctionSet< FunctionSpace >:
Inheritance graph

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...
 

Member Typedef Documentation

domain type

template<class FunctionSpace >
typedef FunctionSpace Dune::Fem::ShapeFunctionSet< FunctionSpace >::FunctionSpaceType

function space type

hessian range type

jacobian range type

range type

Member Function Documentation

template<class FunctionSpace >
template<class Point , class Functor >
void Dune::Fem::ShapeFunctionSet< FunctionSpace >::evaluateEach ( const Point &  x,
Functor  functor 
) const

evalute each shape function

Parameters
[in]xcoordinate or quadrature point
[in]functorfunctor 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 );
};

Referenced by Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::axpy(), Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::evaluateAll(), Dune::Fem::IdShapeFunctionSet< ShapeFunctionSet >::evaluateEach(), Dune::Fem::ShapeFunctionSetProxy< ShapeFunctionSet >::evaluateEach(), and Dune::Fem::CachingShapeFunctionSet< ShapeFunctionSet >::evaluateEach().

template<class FunctionSpace >
template<class Point , class Functor >
void Dune::Fem::ShapeFunctionSet< FunctionSpace >::hessianEach ( const Point &  x,
Functor  functor 
) const

evalute hessian of each shape function

Parameters
[in]xcoordinate or quadrature point
[in]functorfunctor 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 );
};

Referenced by Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::hessianAll(), Dune::Fem::IdShapeFunctionSet< ShapeFunctionSet >::hessianEach(), Dune::Fem::ShapeFunctionSetProxy< ShapeFunctionSet >::hessianEach(), and Dune::Fem::CachingShapeFunctionSet< ShapeFunctionSet >::hessianEach().

template<class FunctionSpace >
template<class Point , class Functor >
void Dune::Fem::ShapeFunctionSet< FunctionSpace >::jacobianEach ( const Point &  x,
Functor  functor 
) const

evalute jacobian of each shape function

Parameters
[in]xcoordinate or quadrature point
[in]functorfunctor 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 );
};

Referenced by Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::axpy(), Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::jacobianAll(), Dune::Fem::IdShapeFunctionSet< ShapeFunctionSet >::jacobianEach(), Dune::Fem::ShapeFunctionSetProxy< ShapeFunctionSet >::jacobianEach(), and Dune::Fem::CachingShapeFunctionSet< ShapeFunctionSet >::jacobianEach().

template<class FunctionSpace >
int Dune::Fem::ShapeFunctionSet< FunctionSpace >::order ( ) const
template<class FunctionSpace >
std::size_t Dune::Fem::ShapeFunctionSet< FunctionSpace >::size ( ) const

The documentation for this class was generated from the following file: