template<class GridGeometry>
class Dumux::FEElementGeometry< GridGeometry >
- Template Parameters
-
The | grid geometry type |
The | FEBasis local view |
|
| FEElementGeometry (const GridGeometry &gg) |
| constructor taking grid geometry
|
|
FEElementGeometry | bind (const Element &element) && |
| bind the local view (r-value overload) This overload is called when an instance of this class is a temporary in the usage context This allows a usage like this: const auto view = localView(...).bind(element);
|
|
void | bind (const Element &element) & |
| Prepare element-local data.
|
|
FEElementGeometry | bindElement (const Element &element) && |
| bind the local view (r-value overload) This overload is called when an instance of this class is a temporary in the usage context This allows a usage like this: const auto view = localView(...).bindElement(element);
|
|
void | bindElement (const Element &element) & |
| Prepare element-local data.
|
|
bool | isBound () const |
| Returns true if bind/bindElement has already been called.
|
|
const Element & | element () const |
| The bound element.
|
|
const FEBasisLocalView & | feBasisLocalView () const |
| Return the finite element basis local view.
|
|
const GridGeometry & | gridGeometry () const |
| Return reference to the grid geometry.
|
|