dune-fem
2.4.1-rc
|
a Dune::Fem::ShapeFunctionSet of Legendre ansatz polynomials More...
#include </local/tomalk/somewhere/tmp/dune-fem/dune/fem/space/shapefunctionset/legendre.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 noexcept |
return order of shape functions More... | |
std::size_t | size () const noexcept |
return number of shape functions More... | |
template<class Point , class Functor > | |
void | evaluateEach (const Point &x, Functor functor) const noexcept |
evalute each shape function More... | |
template<class Point , class Functor > | |
void | jacobianEach (const Point &x, Functor functor) const noexcept |
evalute jacobian of each shape function More... | |
template<class Point , class Functor > | |
void | hessianEach (const Point &x, Functor functor) const noexcept |
evalute hessian of each shape function More... | |
Construction | |
LegendreShapeFunctionSet ()=default | |
default constructor resulting in uninitialized shape function set More... | |
LegendreShapeFunctionSet (int order) | |
initialize with polynomial order More... | |
template<class Factory > | |
LegendreShapeFunctionSet (const Factory &factory) | |
initialize from user-defined factory object More... | |
Protected Types | |
typedef LegendreShapeFunction< FunctionSpace > | ShapeFunctionType |
Protected Attributes | |
std::vector< ShapeFunctionType > | shapeFunctions_ |
int | order_ |
a Dune::Fem::ShapeFunctionSet of Legendre ansatz polynomials
double
.FunctionSpace | (scalar) function space |
typedef FunctionSpaceType::DomainType Dune::Fem::LegendreShapeFunctionSet< FunctionSpace >::DomainType |
domain type
typedef FunctionSpace Dune::Fem::LegendreShapeFunctionSet< FunctionSpace >::FunctionSpaceType |
function space type
typedef FunctionSpaceType::HessianRangeType Dune::Fem::LegendreShapeFunctionSet< FunctionSpace >::HessianRangeType |
hessian range type
typedef FunctionSpaceType::JacobianRangeType Dune::Fem::LegendreShapeFunctionSet< FunctionSpace >::JacobianRangeType |
jacobian range type
typedef FunctionSpaceType::RangeType Dune::Fem::LegendreShapeFunctionSet< FunctionSpace >::RangeType |
range type
|
protected |
|
default |
default constructor resulting in uninitialized shape function set
|
inlineexplicit |
initialize with polynomial order
[in] | order |
|
inline |
initialize from user-defined factory object
[in] | factory | a factory, see description |
|
inlinenoexcept |
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:
|
inlinenoexcept |
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:
|
inlinenoexcept |
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:
|
inlinenoexcept |
return order of shape functions
|
inlinenoexcept |
return number of shape functions
|
protected |
|
protected |