dune-localfunctions 2.8.0
|
class for wrapping a basis using the virtual interface More...
#include <dune/localfunctions/common/virtualwrappers.hh>
Public Types | |
using | Traits = T |
Public Member Functions | |
unsigned int | size () const |
Number of shape functions. More... | |
unsigned int | order () const |
Polynomial order of the shape functions. More... | |
void | evaluateFunction (const typename Traits::DomainType &in, std::vector< typename Traits::RangeType > &out) const |
Evaluate all basis function at given position. More... | |
void | evaluateJacobian (const typename Traits::DomainType &in, std::vector< typename Traits::JacobianType > &out) const |
Evaluate jacobian of all shape functions at given position. More... | |
void | partial (const std::array< unsigned int, Traits::dimDomain > &order, const typename Traits::DomainType &in, std::vector< typename Traits::RangeType > &out) const |
Evaluate partial derivatives of any order of all shape functions. More... | |
Protected Member Functions | |
LocalBasisVirtualImp (const Imp &imp) | |
constructor taking an implementation of the interface More... | |
Protected Attributes | |
const Imp & | impl_ |
class for wrapping a basis using the virtual interface
T | The LocalBasisTraits class |
Imp | LocalBasisInterface implementation |
using Dune::LocalBasisVirtualImp< T, Imp >::Traits = T |
|
inlineprotected |
constructor taking an implementation of the interface
|
inlinevirtual |
Evaluate all basis function at given position.
Evaluates all shape functions at the given position and returns these values in a vector.
Implements Dune::LocalBasisVirtualInterface< T >.
|
inlinevirtual |
Evaluate jacobian of all shape functions at given position.
out[i][j][k] is
[in] | in | The position where evaluated |
[out] | out | The result |
Implements Dune::LocalBasisVirtualInterface< T >.
|
inlinevirtual |
Polynomial order of the shape functions.
Implements Dune::LocalBasisVirtualInterface< T >.
|
inlinevirtual |
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 |
Implements Dune::LocalBasisVirtualInterface< T >.
|
inlinevirtual |
Number of shape functions.
Implements Dune::LocalBasisVirtualInterface< T >.
|
protected |