|
| | PolynomialBasisWithMatrix (const Basis &basis) |
| template<class Matrix> |
| void | fill (const Matrix &matrix) |
| template<class Matrix> |
| void | fill (const Matrix &matrix, int size) |
| const Basis & | basis () const |
| const CoefficientMatrix & | matrix () const |
| unsigned int | order () const |
| unsigned int | size () const |
| void | evaluateFunction (const typename Traits::DomainType &x, std::vector< typename Traits::RangeType > &out) const |
| | Evaluate all shape functions.
|
| void | evaluateJacobian (const typename Traits::DomainType &x, std::vector< typename Traits::JacobianType > &out) const |
| | Evaluate Jacobian of all shape functions.
|
| void | evaluateHessian (const typename Traits::DomainType &x, std::vector< HessianType > &out) const |
| | Evaluate Jacobian of all shape functions.
|
| void | partial (const std::array< unsigned int, dimension > &order, const typename Traits::DomainType &in, std::vector< typename Traits::RangeType > &out) const |
| | Evaluate partial derivatives of all shape functions.
|
| template<unsigned int deriv, class F> |
| void | evaluate (const DomainVector &x, F *values) const |
| template<unsigned int deriv, class DVector, class F> |
| void | evaluate (const DVector &x, F *values) const |
| template<unsigned int deriv, class DVector, class RVector> |
| void | evaluate (const DVector &x, RVector &values) const |
| template<class Fy> |
| void | evaluate (const DomainVector &x, std::vector< FieldVector< Fy, dimRange > > &values) const |
| template<class DVector, class RVector> |
| void | evaluate (const DVector &x, RVector &values) const |
| template<unsigned int deriv, class Vector> |
| void | evaluateSingle (const DomainVector &x, Vector &values) const |
| template<unsigned int deriv, class Fy> |
| void | evaluateSingle (const DomainVector &x, std::vector< FieldVector< FieldVector< Fy, LFETensor< Fy, dimension, deriv >::size >, dimRange > > &values) const |
| template<unsigned int deriv, class Fy> |
| void | evaluateSingle (const DomainVector &x, std::vector< FieldVector< LFETensor< Fy, dimension, deriv >, dimRange > > &values) const |
| template<class Fy> |
| void | jacobian (const DomainVector &x, std::vector< FieldMatrix< Fy, dimRange, dimension > > &values) const |
| template<class DVector, class RVector> |
| void | jacobian (const DVector &x, RVector &values) const |
| template<class Fy> |
| void | hessian (const DomainVector &x, std::vector< HessianFyType< Fy > > &values) const |
| template<class DVector, class HVector> |
| void | hessian (const DVector &x, HVector &values) const |
| template<class Fy> |
| void | integrate (std::vector< Fy > &values) const |
template<class Eval, class CM = SparseCoeffMatrix<typename Eval::Field,Eval::dimRange>, class D = double, class R = double>
class Dune::PolynomialBasisWithMatrix< Eval, CM, D, R >
Specialized version of PolynomialBasis with FieldMatrix for matrix coefficience and std::vector for container type with FieldVector as value type. This class stores the coefficient matrix with can be constructed via the fill method