|
dune-fem 2.12-git
|
This class is a simple basis function set which is needed for global basis functions sets (Fourier space etc.). More...
#include <dune/fem/space/basisfunctionset/simple.hh>
Public Types | |
| typedef LocalFunctionSet | LocalFunctionSetType |
| typedef LocalFunctionSetType::EntityType | EntityType |
| entity type | |
| typedef LocalFunctionSetType::Geometry | Geometry |
| typedef LocalFunctionSetType::FunctionSpaceType | FunctionSpaceType |
| 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 FunctionSpaceType::RangeFieldType | RangeFieldType |
| typedef FunctionSpaceType::DomainFieldType | DomainFieldType |
| typedef Dune::ReferenceElement< typename EntityType::Geometry > | ReferenceElementType |
| type of reference element | |
Public Member Functions | |
| SimpleBasisFunctionSet () | |
| SimpleBasisFunctionSet (const LocalFunctionSetType &localFunctionSet) | |
| constructor | |
| int | order () const |
| return order of basis function set | |
| std::size_t | size () const |
| return size of basis function set | |
| decltype(auto) | 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 HessianRangeType &hessianFactor, DofVector &dofs) const |
| Add H:D^2phi to each dof. | |
| 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 |
| please doc me | |
| template<class Point , class RangeArray > | |
| void | evaluateAll (const Point &x, RangeArray &values) const |
| please doc me | |
| template<class Quadrature , class DofVector , class JacobianRangeArray > | |
| void | jacobianAll (const Quadrature &quad, const DofVector &dofs, JacobianRangeArray &jacobians) const |
| please doc me | |
| template<class Point , class DofVector > | |
| void | jacobianAll (const Point &x, const DofVector &dofs, JacobianRangeType &jacobian) const |
| please doc me | |
| template<class Point , class JacobianRangeArray > | |
| void | jacobianAll (const Point &x, JacobianRangeArray &jacobians) const |
| please doc me | |
| template<class Point , class DofVector > | |
| void | hessianAll (const Point &x, const DofVector &dofs, HessianRangeType &hessian) const |
| please doc me | |
| template<class Point , class HessianRangeArray > | |
| void | hessianAll (const Point &x, HessianRangeArray &hessians) const |
| please doc me | |
| const EntityType & | entity () const |
| return entity this basis function set was initialized on | |
| const Geometry & | geometry () const |
| return geometry this basis function set was initialized on | |
| const LocalFunctionSetType | localFunctionSet () const |
| return local function set | |
Detailed Description
class Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >
This class is a simple basis function set which is needed for global basis functions sets (Fourier space etc.).
- Note
- For localized basis function sets use the DefaultBasisFunctionSet.
- Template Parameters
-
LocalFunctionSet set of basis functions
Member Typedef Documentation
◆ DomainFieldType
| typedef FunctionSpaceType::DomainFieldType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::DomainFieldType |
◆ DomainType
| typedef FunctionSpaceType::DomainType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::DomainType |
range type
◆ EntityType
| typedef LocalFunctionSetType::EntityType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::EntityType |
entity type
◆ FunctionSpaceType
| typedef LocalFunctionSetType::FunctionSpaceType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::FunctionSpaceType |
◆ Geometry
| typedef LocalFunctionSetType::Geometry Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::Geometry |
◆ HessianRangeType
| typedef FunctionSpaceType::HessianRangeType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::HessianRangeType |
hessian range type
◆ JacobianRangeType
| typedef FunctionSpaceType::JacobianRangeType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::JacobianRangeType |
jacobian range type
◆ LocalFunctionSetType
| typedef LocalFunctionSet Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::LocalFunctionSetType |
◆ RangeFieldType
| typedef FunctionSpaceType::RangeFieldType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::RangeFieldType |
◆ RangeType
| typedef FunctionSpaceType::RangeType Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::RangeType |
range type
◆ ReferenceElementType
| typedef Dune::ReferenceElement< typename EntityType::Geometry > Dune::Fem::SimpleBasisFunctionSet< LocalFunctionSet >::ReferenceElementType |
type of reference element
Constructor & Destructor Documentation
◆ SimpleBasisFunctionSet() [1/2]
|
inline |
◆ SimpleBasisFunctionSet() [2/2]
|
inlineexplicit |
constructor
- Parameters
-
[in] localFunctionSet implementation of LocalFunctionSet
Member Function Documentation
◆ axpy() [1/6]
|
inline |
Add H:D^2phi to each dof.
◆ axpy() [2/6]
|
inline |
evaluate all basis function and multiply with given values and add to dofs
◆ axpy() [3/6]
|
inline |
evaluate all basis function 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
◆ entity()
|
inline |
return entity this basis function set was initialized on
◆ evaluateAll() [1/3]
|
inline |
please doc me
◆ evaluateAll() [2/3]
|
inline |
please doc me
◆ evaluateAll() [3/3]
|
inline |
evaluate all basis functions and store the result in the ranges array
◆ geometry()
|
inline |
return geometry this basis function set was initialized on
◆ hessianAll() [1/2]
|
inline |
please doc me
◆ hessianAll() [2/2]
|
inline |
please doc me
◆ jacobianAll() [1/3]
|
inline |
please doc me
◆ jacobianAll() [2/3]
|
inline |
please doc me
◆ jacobianAll() [3/3]
|
inline |
please doc me
◆ localFunctionSet()
|
inline |
return local function set
◆ order()
|
inline |
return order of basis function set
◆ referenceElement()
|
inline |
return reference element
◆ size()
|
inline |
return size of basis function set
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