|
dune-fem 2.12-git
|
#include <dune/fem/space/basisfunctionset/default.hh>

Public Types | |
| typedef BaseType::EntityType | EntityType |
| entity type | |
| typedef BaseType::Geometry | Geometry |
| geometry | |
| typedef Geometry::ctype | ctype |
| type of coordinate field | |
| typedef BaseType::ShapeFunctionSetType | ShapeFunctionSetType |
| shape function set type | |
| typedef ToNewDimDomainFunctionSpace< LocalFunctionSpaceType, Geometry::coorddimension >::Type | FunctionSpaceType |
| type of function space | |
| typedef FunctionSpaceType::RangeType | RangeType |
| range type | |
| typedef FunctionSpaceType::DomainType | DomainType |
| domain type | |
| typedef FunctionSpaceType::JacobianRangeType | JacobianRangeType |
| jacobian range type | |
| typedef FunctionSpaceType::HessianRangeType | HessianRangeType |
| hessian range type | |
| typedef FunctionSpaceType::ScalarFunctionSpaceType | ScalarFunctionSpaceType |
| typedef ScalarFunctionSpaceType::RangeType | ScalarRangeType |
| typedef ScalarFunctionSpaceType::JacobianRangeType | ScalarJacobianRangeType |
| typedef std::decay_t< decltype(Dune::ReferenceElements< ctype, Geometry::coorddimension >::general(std::declval< const Dune::GeometryType & >())) > | ReferenceElementType |
| type of reference element | |
Public Member Functions | |
| DefaultBasisFunctionSet () | |
| constructor | |
| DefaultBasisFunctionSet (const EntityType &entity, const ShapeFunctionSet &shapeFunctionSet=ShapeFunctionSet()) | |
| constructor | |
| DefaultBasisFunctionSet (const DefaultBasisFunctionSet &other)=default | |
| DefaultBasisFunctionSet & | operator= (const DefaultBasisFunctionSet &other)=default |
| template<class QuadratureType , class Vector , class DofVector > | |
| void | axpy (const QuadratureType &quad, const Vector &values, DofVector &dofs) const |
| evaluate all basis function and multiply with given values and add to dofs | |
| template<class QuadratureType , class VectorA , class VectorB , class DofVector > | |
| void | axpy (const QuadratureType &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 derivatives of 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 derivatives and multiply with given values and add to dofs | |
| template<class Point , class DofVector > | |
| void | axpy (const Point &x, const HessianRangeType &hessianFactor, DofVector &dofs) const |
| Add H:D^2phi to each dof. | |
| template<class QuadratureType , class DofVector , class RangeArray > | |
| void | evaluateAll (const QuadratureType &quad, const DofVector &dofs, RangeArray &ranges) const |
| 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 |
| 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 QuadratureType , class DofVector , class HessianArray > | |
| void | hessianAll (const QuadratureType &quad, const DofVector &dofs, HessianArray &hessians) 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 ShapeFunctionSetType & | shapeFunctionSet () const |
| return shape function set | |
| int | order () const |
| return order of basis function set | |
| std::size_t | size () const |
| return size of basis function set | |
| const Entity & | entity () const |
| return entity | |
| bool | valid () const |
| return true if entity pointer is set | |
| const Geometry & | geometry () const |
| return geometry | |
| Dune::GeometryType | type () const |
| return geometry type | |
| const ReferenceElementType & | referenceElement () const |
| return reference element | |
| void | bind (const EntityType &entity) |
| set new entity object and geometry if enabled | |
| void | unbind () |
| release entity and geometry object | |
Static Public Attributes | |
| static const int | pointSetId = detail::SelectPointSetId< ShapeFunctionSetType >::value |
| static constexpr bool | codegenShapeFunctionSet = detail::IsCodegenShapeFunctionSet< ShapeFunctionSetType >::value |
Protected Types | |
| typedef ShapeFunctionSetType::FunctionSpaceType | LocalFunctionSpaceType |
| typedef LocalFunctionSpaceType::JacobianRangeType | LocalJacobianRangeType |
| typedef LocalFunctionSpaceType::HessianRangeType | LocalHessianRangeType |
| typedef LocalFunctionSpaceType::RangeFieldType | RangeFieldType |
| typedef std::optional< EntityType > | EntityStorageType |
| typedef std::conditional< storeGeometry, std::optional< Geometry >, Empty >::type | GeometryStorageType |
Protected Member Functions | |
| template<class QuadratureType , class RangeArray , class DofVector > | |
| void | axpyImpl (const QuadratureType &quad, const RangeArray &rangeFactors, DofVector &dofs, const RangeType &) const |
| evaluate all basis function and multiply with given values and add to dofs | |
| template<class QuadratureType , class JacobianArray , class DofVector > | |
| void | axpyImpl (const QuadratureType &quad, const JacobianArray &jacobianFactors, DofVector &dofs, const JacobianRangeType &) const |
| evaluate all basis function and multiply with given values and add to dofs | |
| template<class QuadratureType , class HessianArray , class DofVector > | |
| void | axpyImpl (const QuadratureType &quad, const HessianArray &hessianFactors, DofVector &dofs, const HessianRangeType &) const |
| evaluate all basis function and multiply with given values and add to dofs | |
| template<class QuadratureType > | |
| const auto & | rangeCache (const QuadratureType &quad) const |
| template<class QuadratureType > | |
| const auto & | jacobianCache (const QuadratureType &quad) const |
| void | copyGeometry (const EntityGeometryStorageImpl &other) |
Protected Attributes | |
| ShapeFunctionSetType | shapeFunctionSet_ |
| EntityStorageType | entity_ |
| GeometryStorageType | geometry_ |
Detailed Description
class Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >
\brief implementation of a basis function set for given entity
\tparam Entity entity type
\tparam ShapeFunctionSet shape function set
\note ShapeFunctionSet must be a copyable object. For most
non-trivial implementations, you may want to use a
proxy, see file
Member Typedef Documentation
◆ ctype
| typedef Geometry::ctype Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::ctype |
type of coordinate field
◆ DomainType
| typedef FunctionSpaceType::DomainType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::DomainType |
domain type
◆ EntityStorageType
|
protectedinherited |
◆ EntityType
| typedef BaseType::EntityType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::EntityType |
entity type
◆ FunctionSpaceType
| typedef ToNewDimDomainFunctionSpace<LocalFunctionSpaceType,Geometry::coorddimension>::Type Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::FunctionSpaceType |
type of function space
◆ Geometry
| typedef BaseType::Geometry Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::Geometry |
geometry
◆ GeometryStorageType
|
protectedinherited |
◆ HessianRangeType
| typedef FunctionSpaceType::HessianRangeType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::HessianRangeType |
hessian range type
◆ JacobianRangeType
| typedef FunctionSpaceType::JacobianRangeType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::JacobianRangeType |
jacobian range type
◆ LocalFunctionSpaceType
|
protected |
◆ LocalHessianRangeType
|
protected |
◆ LocalJacobianRangeType
|
protected |
◆ RangeFieldType
|
protected |
◆ RangeType
| typedef FunctionSpaceType::RangeType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::RangeType |
range type
◆ ReferenceElementType
| typedef std::decay_t< decltype( Dune::ReferenceElements< ctype, Geometry::coorddimension >::general( std::declval< const Dune::GeometryType & >() ) ) > Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::ReferenceElementType |
type of reference element
◆ ScalarFunctionSpaceType
| typedef FunctionSpaceType::ScalarFunctionSpaceType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::ScalarFunctionSpaceType |
◆ ScalarJacobianRangeType
| typedef ScalarFunctionSpaceType::JacobianRangeType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::ScalarJacobianRangeType |
◆ ScalarRangeType
| typedef ScalarFunctionSpaceType::RangeType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::ScalarRangeType |
◆ ShapeFunctionSetType
| typedef BaseType::ShapeFunctionSetType Dune::Fem::DefaultBasisFunctionSet< Entity, ShapeFunctionSet >::ShapeFunctionSetType |
shape function set type
Constructor & Destructor Documentation
◆ DefaultBasisFunctionSet() [1/3]
|
inline |
constructor
◆ DefaultBasisFunctionSet() [2/3]
|
inlineexplicit |
constructor
◆ DefaultBasisFunctionSet() [3/3]
|
default |
Member Function Documentation
◆ axpy() [1/6]
|
inline |
Add H:D^2phi to each dof.
◆ axpy() [2/6]
|
inline |
evaluate all derivatives of all basis function and multiply with given values and add to dofs
◆ axpy() [3/6]
|
inline |
evaluate all basis function and derivatives and multiply with given values and add to dofs
◆ axpy() [4/6]
|
inline |
evaluate all basis function and multiply with given values and add to dofs
◆ axpy() [5/6]
|
inline |
evaluate all basis function and multiply with given values and add to dofs
◆ axpy() [6/6]
|
inline |
evaluate all basis function and multiply with given values and add to dofs
- Note
- valuesA and valuesB can be vectors of RangeType or JacobianRangeType
◆ axpyImpl() [1/3]
|
inlineprotected |
evaluate all basis function and multiply with given values and add to dofs
◆ axpyImpl() [2/3]
|
inlineprotected |
evaluate all basis function and multiply with given values and add to dofs
◆ axpyImpl() [3/3]
|
inlineprotected |
evaluate all basis function and multiply with given values and add to dofs
◆ bind()
|
inlineinherited |
set new entity object and geometry if enabled
◆ copyGeometry()
|
inlineprotectedinherited |
◆ entity()
|
inlineinherited |
return entity
◆ evaluateAll() [1/3]
|
inline |
- Todo:
- please doc me
◆ evaluateAll() [2/3]
|
inline |
- Todo:
- please doc me
◆ evaluateAll() [3/3]
|
inline |
◆ geometry()
|
inlineinherited |
return geometry
◆ hessianAll() [1/3]
|
inline |
- Todo:
- please doc me
◆ hessianAll() [2/3]
|
inline |
- Todo:
- please doc me
◆ hessianAll() [3/3]
|
inline |
- Todo:
- please doc me
◆ jacobianAll() [1/3]
|
inline |
- Todo:
- please doc me
◆ jacobianAll() [2/3]
|
inline |
- Todo:
- please doc me
◆ jacobianAll() [3/3]
|
inline |
◆ jacobianCache()
|
inlineprotected |
◆ operator=()
|
default |
◆ order()
|
inlineinherited |
return order of basis function set
◆ rangeCache()
|
inlineprotected |
◆ referenceElement()
|
inlineinherited |
return reference element
◆ shapeFunctionSet()
|
inlineinherited |
return shape function set
◆ size()
|
inlineinherited |
return size of basis function set
◆ type()
|
inlineinherited |
return geometry type
◆ unbind()
|
inlineinherited |
release entity and geometry object
◆ valid()
|
inlineinherited |
return true if entity pointer is set
Member Data Documentation
◆ codegenShapeFunctionSet
|
staticconstexprinherited |
◆ entity_
|
protectedinherited |
◆ geometry_
|
protectedinherited |
◆ pointSetId
|
static |
◆ shapeFunctionSet_
|
protectedinherited |
The documentation for this class was generated from the following file:
Legal Statements / Impressum | Hosted by TU Dresden & Uni Heidelberg | Generated by
1.9.8