dune-localfunctions
2.2.1
|
Factory for Pk2DFiniteElement objects. More...
#include <dune/localfunctions/lagrange/pk2d.hh>
Public Types | |
typedef Pk2DFiniteElement < Geometry, RF, k > | FiniteElement |
Public Member Functions | |
template<class VertexOrder > | |
const FiniteElement | make (const Geometry &geometry, const VertexOrder &vertexOrder) |
construct Pk2DFiniteElementFactory More... | |
Finite element creation methods | |
Each finite element factory implementation must provide at least one of these methods. The signatures may be extended by additional parameters, but the parameters that are specified here should be given first and in the order specified here. The return value of these functions is suitable for binding to a const reference – it will either be an rvalue (in which case binding to a const reference will create a copy whose lifetime is the same as the reference itself), or it will be an lvalue (in which case the factory must guarantee that it will be valid until the factory is destroyed or something else happens that explicitly invalidates all created finite elements). In any case, since global-valued finite element objects are copy-constructible, it is also possible to use the returned value to initialize a finite element object instead of a const reference. | |
const FiniteElement | make (const Geometry &, const VertexOrder &,...) |
create a finite element from a geometry and a vertex ordering More... | |
const FiniteElement | make (const Geometry &,...) |
create a finite element from a geometry More... | |
const FiniteElement | make (const VertexOrder &,...) |
create a finite element from a vertex ordering More... | |
const FiniteElement | make (const GeometryType &,...) |
create a finite element from a geometry type More... | |
const FiniteElement | make (...) |
create a finite element More... | |
Factory for Pk2DFiniteElement objects.
Constructs Pk2DFiniteElement objects given a geometry and a vertex ordering.
Geometry | Geometry for the local to global transformation. |
RF | Field type of the range. |
k | Maximum polynomial order of the base functions. |
typedef Pk2DFiniteElement<Geometry, RF, k> Dune::Pk2DFiniteElementFactory< Geometry, RF, k >::FiniteElement |
|
inherited |
create a finite element from a geometry and a vertex ordering
|
inherited |
create a finite element from a geometry
|
inherited |
create a finite element from a vertex ordering
|
inherited |
create a finite element from a geometry type
|
inherited |
create a finite element
|
inline |
construct Pk2DFiniteElementFactory
geometry | The geometry object to use for adaption. |
vertexOrder | The global ordering of the vertices within the grid, used to determine orientation of the edges. This vertexOrder object must support codim=0. |