|
dune-localfunctions
2.5.0
|
Lagrange shape functions of order k on the reference cube. More...
#include <dune/localfunctions/lagrange/qk/qklocalbasis.hh>
Public Types | |
| typedef LocalBasisTraits< D, d, Dune::FieldVector< D, d >, R, 1, Dune::FieldVector< R, 1 >, Dune::FieldMatrix< R, 1, d >, 1 > | Traits |
Public Member Functions | |
| unsigned int | size () const |
| number of shape functions More... | |
| void | evaluateFunction (const typename Traits::DomainType &in, std::vector< typename Traits::RangeType > &out) const |
| Evaluate all shape functions. More... | |
| void | evaluateJacobian (const typename Traits::DomainType &in, std::vector< typename Traits::JacobianType > &out) const |
| Evaluate Jacobian of all shape functions. More... | |
| void | partial (const std::array< unsigned int, d > &order, const typename Traits::DomainType &in, std::vector< typename Traits::RangeType > &out) const |
| Evaluate partial derivatives of any order of all shape functions. More... | |
| template<int diffOrder> | |
| void | evaluate (const std::array< int, 1 > &direction, const typename Traits::DomainType &in, std::vector< typename Traits::RangeType > &out) const |
| Evaluate derivative in a given direction. More... | |
| unsigned int | order () const |
| Polynomial order of the shape functions. More... | |
Lagrange shape functions of order k on the reference cube.
Also known as
.
| D | Type to represent the field in the domain. |
| R | Type to represent the field in the range. |
| k | Polynomial degree |
| d | Dimension of the cube |
| typedef LocalBasisTraits<D,d,Dune::FieldVector<D,d>,R,1,Dune::FieldVector<R,1>,Dune::FieldMatrix<R,1,d>, 1> Dune::QkLocalBasis< D, R, k, d >::Traits |
|
inline |
Evaluate derivative in a given direction.
| [in] | direction | The direction to derive in |
| [in] | in | Position where to evaluate |
| [out] | out | The return value |
|
inline |
Evaluate all shape functions.
|
inline |
Evaluate Jacobian of all shape functions.
| in | position where to evaluate |
| out | The return value |
|
inline |
Polynomial order of the shape functions.
|
inline |
Evaluate partial derivatives of any order of all shape functions.
| order | Order of the partial derivatives, in the classic multi-index notation | |
| in | Position where to evaluate the derivatives | |
| [out] | out | Return value: the desired partial derivatives |
|
inline |
number of shape functions
1.8.12