DUNE-FEM (unstable)
Dune::Fem::BasisFunctionSet< Entity, Range > Class Template Reference
Interface class for basis function sets. More...
#include <dune/fem/space/basisfunctionset/basisfunctionset.hh>
Public Types | |
| typedef Entity | EntityType | 
| entity type  | |
| typedef FunctionSpace< typename Entity::Geometry::ctype, typename Range::value_type, Entity::Geometry::coorddimension, Range::dimension > | FunctionSpaceType | 
| function space type  | |
| typedef FunctionSpaceType::DomainType | DomainType | 
| range type  | |
| typedef FunctionSpaceType::RangeType | RangeType | 
| range type  | |
| typedef FunctionSpaceType::JacobianRangeType | JacobianRangeType | 
| jacobian range type  | |
| typedef FunctionSpaceType::HessianRangeType | HessianRangeType | 
| hessian range type  | |
| typedef std::decay_t< decltype(Dune::ReferenceElements< typename Entity::Geometry::ctype, Entity::Geometry::coorddimension >::general(std::declval< const Dune::GeometryType & >())) > | ReferenceElementType | 
| type of reference element  | |
Public Member Functions | |
| int | order () const | 
| return order of basis function set  | |
| std::size_t | size () const | 
| return size of basis function set  | |
| const ReferenceElementType & | referenceElement () const | 
| return reference element  | |
| template<class Quadrature , class Vector , class DofVector > | |
| void | axpy (const Quadrature &quad, const Vector &values, DofVector &dofs) const | 
| evaluate all basis function and multiply with given values and add to dofs  | |
| template<class Quadrature , class VectorA , class VectorB , class DofVector > | |
| void | axpy (const Quadrature &quad, const VectorA &valuesA, const VectorB &valuesB, DofVector &dofs) const | 
| evaluate all basis function and multiply with given values and add to dofs  | |
| template<class Point , class DofVector > | |
| void | axpy (const Point &x, const RangeType &valueFactor, DofVector &dofs) const | 
| evaluate all basis function and multiply with given values and add to dofs  | |
| template<class Point , class DofVector > | |
| void | axpy (const Point &x, const JacobianRangeType &jacobianFactor, DofVector &dofs) const | 
| evaluate all basis function and multiply with given values and add to dofs  | |
| template<class Point , class DofVector > | |
| void | axpy (const Point &x, const RangeType &valueFactor, const JacobianRangeType &jacobianFactor, DofVector &dofs) const | 
| evaluate all basis function and multiply with given values and add to dofs  | |
| template<class Quadrature , class DofVector , class RangeArray > | |
| void | evaluateAll (const Quadrature &quad, const DofVector &dofs, RangeArray &ranges) const | 
| evaluate all basis functions and store the result in the ranges array  | |
| template<class Point , class DofVector > | |
| void | evaluateAll (const Point &x, const DofVector &dofs, RangeType &value) const | 
| template<class Point , class RangeArray > | |
| void | evaluateAll (const Point &x, RangeArray &values) const | 
| template<class QuadratureType , class DofVector , class JacobianArray > | |
| void | jacobianAll (const QuadratureType &quad, const DofVector &dofs, JacobianArray &jacobians) const | 
| evaluate the jacobian of all basis functions and store the result in the jacobians array  | |
| template<class Point , class DofVector > | |
| void | jacobianAll (const Point &x, const DofVector &dofs, JacobianRangeType &jacobian) const | 
| template<class Point , class JacobianRangeArray > | |
| void | jacobianAll (const Point &x, JacobianRangeArray &jacobians) const | 
| template<class Point , class DofVector > | |
| void | hessianAll (const Point &x, const DofVector &dofs, HessianRangeType &hessian) const | 
| template<class Point , class HessianRangeArray > | |
| void | hessianAll (const Point &x, HessianRangeArray &hessians) const | 
| const EntityType & | entity () const | 
| return entity  | |
| bool | valid () const | 
| return true if entity was set  | |
Detailed Description
template<class Entity, class Range>
class Dune::Fem::BasisFunctionSet< Entity, Range >
class Dune::Fem::BasisFunctionSet< Entity, Range >
Interface class for basis function sets.
This class cannot be used itself, it is for documentation purposes only.
- Note
 - Constructor signatures are explicitly not specified by this interface.
 
Member Function Documentation
◆ evaluateAll() [1/2]
template<class Entity , class Range > 
template<class Point , class DofVector > 
      | void Dune::Fem::BasisFunctionSet< Entity, Range >::evaluateAll | ( | const Point & | x, | 
| const DofVector & | dofs, | ||
| RangeType & | value | ||
| ) | const | 
- Todo:
 - please doc me
 
◆ evaluateAll() [2/2]
template<class Entity , class Range > 
template<class Point , class RangeArray > 
      | void Dune::Fem::BasisFunctionSet< Entity, Range >::evaluateAll | ( | const Point & | x, | 
| RangeArray & | values | ||
| ) | const | 
- Todo:
 - please doc me
 
◆ hessianAll() [1/2]
template<class Entity , class Range > 
template<class Point , class DofVector > 
      | void Dune::Fem::BasisFunctionSet< Entity, Range >::hessianAll | ( | const Point & | x, | 
| const DofVector & | dofs, | ||
| HessianRangeType & | hessian | ||
| ) | const | 
- Todo:
 - please doc me
 
Referenced by Dune::Fem::LocalFunction< BasisFunctionSet, LocalDofVector >::hessian().
◆ hessianAll() [2/2]
template<class Entity , class Range > 
template<class Point , class HessianRangeArray > 
      | void Dune::Fem::BasisFunctionSet< Entity, Range >::hessianAll | ( | const Point & | x, | 
| HessianRangeArray & | hessians | ||
| ) | const | 
- Todo:
 - please doc me
 
◆ jacobianAll() [1/2]
template<class Entity , class Range > 
template<class Point , class DofVector > 
      | void Dune::Fem::BasisFunctionSet< Entity, Range >::jacobianAll | ( | const Point & | x, | 
| const DofVector & | dofs, | ||
| JacobianRangeType & | jacobian | ||
| ) | const | 
- Todo:
 - please doc me
 
◆ jacobianAll() [2/2]
template<class Entity , class Range > 
template<class Point , class JacobianRangeArray > 
      | void Dune::Fem::BasisFunctionSet< Entity, Range >::jacobianAll | ( | const Point & | x, | 
| JacobianRangeArray & | jacobians | ||
| ) | const | 
- Todo:
 - please doc me
 
The documentation for this class was generated from the following file:
- dune/fem/space/basisfunctionset/basisfunctionset.hh
 
   | 
                                Legal Statements / Impressum  | 
                                Hosted by  TU Dresden & Uni Heidelberg  | 
				  generated with Hugo v0.111.3
								(Nov 3, 23:36, 2025)