|
const Traits::FiniteElementType & | find (const EntityType &e) const |
| get local basis functions for entity More...
|
|
bool | hasDOFs (int codim) const=delete |
| return if FiniteElementMap has degrees of freedom for given codimension 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>())
|
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, Dune::GeometryType::BasicType bt, typename ComputationFieldType = R, PB::BasisType basisType = PB::BasisType::Pk>
class Dune::PDELab::OPBLocalFiniteElementMap< D, R, k, d, bt, ComputationFieldType, basisType >
wrap up element from local functions