![]() |
Dune-Functions 2.11
|
PreBasis implementation for a Lagrangean-DG finite element space. More...
#include <dune/functions/functionspacebases/lagrangedgbasis.hh>

Public Types | |
| using | GridView = GV |
| The grid view that the FE space is defined on. | |
| using | size_type = typename Base::size_type |
| using | Node = LagrangeDGNode<GV, k, R> |
Public Member Functions | |
| LagrangeDGPreBasis (const GridView &gv) | |
| Constructor for a given grid view object. | |
| LagrangeDGPreBasis (const GridView &gv, unsigned int order) | |
| Constructor for a given grid view object. | |
| Node | makeNode () const |
| Create tree node. | |
| template<class Node, class It> | |
| It | indices (const Node &node, It it) const |
| unsigned int | order () const |
| Polynomial order used in the local Lagrange finite-elements. | |
| void | initializeIndices () |
| Initialize the global index information. | |
| const GridView & | gridView () const |
| Export the stored GridView. | |
| void | update (const GridView &gv) |
| Update the stored GridView. | |
| size_type | dimension () const |
| Return total number of basis functions. | |
| size_type | maxNodeSize () const |
| Return maximal number of basis functions per element. | |
| template<class Node, class It> | |
| It | indices (const Node &node, It it) const |
| Fill cache with global indices of DOFs associated to the given bound node. | |
| size_type | size (const SizePrefix &prefix) const |
| Return number of possible values for next position in multi index. | |
| auto | containerDescriptor () const |
| Return a flat container-descriptor. | |
Static Public Attributes | |
| static const int | dofsPerEdge = k+1 |
| static const int | dofsPerTriangle = (k+1)*(k+2)/2 |
| static const int | dofsPerQuad = (k+1)*(k+1) |
| static const int | dofsPerTetrahedron = (k+1)*(k+2)*(k+3)/6 |
| static const int | dofsPerPrism = (k+1)*(k+1)*(k+2)/2 |
| static const int | dofsPerHexahedron = (k+1)*(k+1)*(k+1) |
| static const int | dofsPerPyramid = (k+1)*(k+2)*(2*k+3)/6 |
| static constexpr size_type | maxMultiIndexSize |
| Maximal length of global multi-indices. | |
| static constexpr size_type | minMultiIndexSize |
| Minimal length of global multi-indices. | |
| static constexpr size_type | multiIndexBufferSize |
| Size required temporarily when constructing global multi-indices. | |
Protected Attributes | |
| unsigned int | order_ |
| GridView | gridView_ |
| Dune::MultipleCodimMultipleGeomTypeMapper< GridView > | mapper_ |
| std::size_t | maxNodeSize_ |
PreBasis implementation for a Lagrangean-DG finite element space.
| GV | The grid view that the FE basis is defined on |
| k | The order of ansatz functions; -1 means 'order determined at run-time' |
| R | Range type used for shape function values |
| using Dune::Functions::LagrangeDGPreBasis< GV, k, R >::GridView = GV |
The grid view that the FE space is defined on.
| using Dune::Functions::LagrangeDGPreBasis< GV, k, R >::Node = LagrangeDGNode<GV, k, R> |
| using Dune::Functions::LagrangeDGPreBasis< GV, k, R >::size_type = typename Base::size_type |
|
inline |
Constructor for a given grid view object.
This constructor requires that the order is given at compile-time using k>=0
|
inline |
Constructor for a given grid view object.
This constructor has to be used to set the order dynamically which is enables using k<0.
|
inlineinherited |
Return a flat container-descriptor.
|
inlineinherited |
Return total number of basis functions.
|
inlineinherited |
Export the stored GridView.
|
inline |
|
inlineinherited |
Fill cache with global indices of DOFs associated to the given bound node.
|
inlineinherited |
Initialize the global index information.
|
inline |
Create tree node.
|
inlineinherited |
Return maximal number of basis functions per element.
|
inline |
Polynomial order used in the local Lagrange finite-elements.
|
inlineinherited |
Return number of possible values for next position in multi index.
|
inlineinherited |
Update the stored GridView.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
protectedinherited |
|
protectedinherited |
|
staticconstexprinherited |
Maximal length of global multi-indices.
|
protectedinherited |
|
staticconstexprinherited |
Minimal length of global multi-indices.
|
staticconstexprinherited |
Size required temporarily when constructing global multi-indices.
|
protected |