|
bool | hasDOFs (int codim) const=delete |
| return if FiniteElementMap has degrees of freedom for given codimension More...
|
|
std::size_t | maxLocalSize () const=delete |
| compute an upper bound for the local number of DOFs. More...
|
|
const Traits::FiniteElementType & | find (const EntityType &e) const |
| get local basis functions for entity More...
|
|
|
The FiniteElementMap provides different methods to compute the size of the GridFunctionSpace (if possible) without iterating the grid. The approach is as follows (pseudo code):
computeNumberOfDofs(GridView, FEM): sum(FEM. size(gt)*GridView. size(gt) for gt in GeometryTypes) else sum(FEM. find(E).basis(). size() for E in GridView.entities<0>()) |
bool | fixedSize () const=delete |
| a FiniteElementMap is fixedSize iif the size of the local functions space for each GeometryType is fixed. More...
|
|
std::size_t | size (GeometryType gt) const=delete |
| if the FiniteElementMap is fixedSize, the size methods computes the number of DOFs for given GeometryType. More...
|
|
template<class D, class R, int k, int d>
class Dune::PDELab::QkDGLocalFiniteElementMap< D, R, k, d, QkDGBasisPolynomial::l2orthonormal >
Qk discontinuous Galerkin FiniteElementMap based on an L2 orthonormal polynomials.
If you have gmp the computation field for the l2 orthonormal basis polynomials is Dune::GMPField<512>.
- Template Parameters
-
D | Type used for coordinates |
R | Type used for shape function values |
k | Order of polynomial basis |
d | Grid dimension |
- Note
- Use OPBLocalFiniteElementMap directly if you need more customization.