DUNE PDELab (unstable)
A geometry embedding a descendent element into an ancestor. More...
#include <dune/functions/common/geometryinancestor.hh>
Public Member Functions | |
GeometryInAncestor (const GeometryInAncestor &other) | |
Copy constructor. More... | |
GeometryInAncestor (const GeometryInAncestor &other, const Element &fineElement) | |
Copy construction setting an external fine element. More... | |
template<class F > requires (std::is_invocable_r_v<bool,F,Element>) | |
const Element & | bind (const Element &fineElement, F &&includeFather) |
Bind this GeometryInAncestor to a fine element and search coarse element. More... | |
template<class F > requires (std::is_invocable_r_v<bool,F,Element>) | |
const Element & | bind (Element &&fineElement, F &&includeFather) |
Bind this GeometryInAncestor to a fine element and search coarse element. More... | |
const Element & | fineElement () const |
Return the fine element. | |
const Element & | coarseElement () const |
Return the coarse element. | |
GlobalCoordinate | global (LocalCoordinate x) const |
Map local coordinate in fine element into coarse element. | |
LocalCoordinate | local (GlobalCoordinate x) const |
Map local coordinate in coarse element into fine element. | |
Detailed Description
class Dune::Functions::GeometryInAncestor< Element >
A geometry embedding a descendent element into an ancestor.
- Template Parameters
-
Element Type of elements considered by this embedding
This class will store a chain of geometryInFather
objects connecting a coarse element with a fine element. The global()
and local()
methods of the GeometryInAncestor
simply chain those stored geometryInFather
objects. Since this requires that objects of type GeometryInAncestor
allocate dynamic memory, they are not intended to be created on the fly within a hot loop. Instead one reused a single GeometryInAncestor
object by binding if to a new element.
Currently this only provides the local()
and global()
methods of the geometry interface.
Constructor & Destructor Documentation
◆ GeometryInAncestor() [1/2]
|
inline |
Copy constructor.
If the original GeometryInAncestor holds a pointer to an external fine Element, the new GeometryInAncestor points to the same external fine Element.
◆ GeometryInAncestor() [2/2]
|
inline |
Copy construction setting an external fine element.
This copies the original GeometryInAncestor and sets the pointer to the external fine element passed additionally.
Member Function Documentation
◆ bind() [1/2]
requires (std::is_invocable_r_v<bool,F,Element>)
|
inline |
Bind this GeometryInAncestor to a fine element and search coarse element.
- Parameters
-
fineElement The fine element to be bound to includeFather Unary predicate indicating whether father element should be traversed
Build the geometry information by traversing the fathers starting from the given fineElement
as long as includeFather(element)
returns true
to obtain a chain of geometryInFather
objects connecting the fineElement
with a coarseElement
. The coarseElement
is the first element where includeFather(coarseElement)
returns false
.
This overload for an l-value fineElement
will store a pointer to fineElement
.
References Dune::Functions::GeometryInAncestor< Element >::coarseElement(), and Dune::Functions::GeometryInAncestor< Element >::fineElement().
Referenced by Dune::Functions::GeometryInAncestor< Element >::bind().
◆ bind() [2/2]
requires (std::is_invocable_r_v<bool,F,Element>)
|
inline |
Bind this GeometryInAncestor to a fine element and search coarse element.
- Parameters
-
fineElement The fine element to be bound to includeFather Unary predicate indicating whether father element should be traversed
Build the geometry information by traversing the fathers starting from the given fineElement
as long as includeFather(element)
returns true
to obtain a chain of geometryInFather
objects connecting the fineElement
with a coarseElement
. The coarseElement
is the first element where includeFather(coarseElement)
returns false
.
This overload for an r-value fineElement
will store a copy of the fineElement
.
References Dune::Functions::GeometryInAncestor< Element >::bind(), and Dune::Functions::GeometryInAncestor< Element >::fineElement().
The documentation for this class was generated from the following file:
- dune/functions/common/geometryinancestor.hh
