dune-fem 2.8.0
|
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 Dune::ReferenceElement< typename DomainType::value_type, DomainType::dimension > | 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 | |
Interface class for basis function sets.
This class cannot be used itself, it is for documentation purposes only.
typedef FunctionSpaceType::DomainType Dune::Fem::BasisFunctionSet< Entity, Range >::DomainType |
range type
typedef Entity Dune::Fem::BasisFunctionSet< Entity, Range >::EntityType |
entity type
typedef FunctionSpace< typename Entity::Geometry::ctype, typename Range::value_type, Entity::Geometry::coorddimension, Range::dimension > Dune::Fem::BasisFunctionSet< Entity, Range >::FunctionSpaceType |
function space type
typedef FunctionSpaceType::HessianRangeType Dune::Fem::BasisFunctionSet< Entity, Range >::HessianRangeType |
hessian range type
typedef FunctionSpaceType::JacobianRangeType Dune::Fem::BasisFunctionSet< Entity, Range >::JacobianRangeType |
jacobian range type
typedef FunctionSpaceType::RangeType Dune::Fem::BasisFunctionSet< Entity, Range >::RangeType |
range type
typedef Dune::ReferenceElement< typename DomainType::value_type, DomainType::dimension > Dune::Fem::BasisFunctionSet< Entity, Range >::ReferenceElementType |
type of reference element
void Dune::Fem::BasisFunctionSet< Entity, Range >::axpy | ( | const Point & | x, |
const JacobianRangeType & | jacobianFactor, | ||
DofVector & | dofs | ||
) | const |
evaluate all basis function and multiply with given values and add to dofs
void Dune::Fem::BasisFunctionSet< Entity, Range >::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
void Dune::Fem::BasisFunctionSet< Entity, Range >::axpy | ( | const Point & | x, |
const RangeType & | valueFactor, | ||
DofVector & | dofs | ||
) | const |
evaluate all basis function and multiply with given values and add to dofs
void Dune::Fem::BasisFunctionSet< Entity, Range >::axpy | ( | const Quadrature & | quad, |
const Vector & | values, | ||
DofVector & | dofs | ||
) | const |
evaluate all basis function and multiply with given values and add to dofs
void Dune::Fem::BasisFunctionSet< Entity, Range >::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
const EntityType & Dune::Fem::BasisFunctionSet< Entity, Range >::entity | ( | ) | const |
return entity
void Dune::Fem::BasisFunctionSet< Entity, Range >::evaluateAll | ( | const Point & | x, |
const DofVector & | dofs, | ||
RangeType & | value | ||
) | const |
void Dune::Fem::BasisFunctionSet< Entity, Range >::evaluateAll | ( | const Point & | x, |
RangeArray & | values | ||
) | const |
void Dune::Fem::BasisFunctionSet< Entity, Range >::evaluateAll | ( | const Quadrature & | quad, |
const DofVector & | dofs, | ||
RangeArray & | ranges | ||
) | const |
evaluate all basis functions and store the result in the ranges array
void Dune::Fem::BasisFunctionSet< Entity, Range >::hessianAll | ( | const Point & | x, |
const DofVector & | dofs, | ||
HessianRangeType & | hessian | ||
) | const |
void Dune::Fem::BasisFunctionSet< Entity, Range >::hessianAll | ( | const Point & | x, |
HessianRangeArray & | hessians | ||
) | const |
void Dune::Fem::BasisFunctionSet< Entity, Range >::jacobianAll | ( | const Point & | x, |
const DofVector & | dofs, | ||
JacobianRangeType & | jacobian | ||
) | const |
void Dune::Fem::BasisFunctionSet< Entity, Range >::jacobianAll | ( | const Point & | x, |
JacobianRangeArray & | jacobians | ||
) | const |
void Dune::Fem::BasisFunctionSet< Entity, Range >::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
int Dune::Fem::BasisFunctionSet< Entity, Range >::order | ( | ) | const |
return order of basis function set
const ReferenceElementType & Dune::Fem::BasisFunctionSet< Entity, Range >::referenceElement | ( | ) | const |
return reference element
std::size_t Dune::Fem::BasisFunctionSet< Entity, Range >::size | ( | ) | const |
return size of basis function set
bool Dune::Fem::BasisFunctionSet< Entity, Range >::valid | ( | ) | const |
return true if entity was set