dune-geometry
2.7.0
|
This class provides access to geometric and topological properties of a reference element. More...
#include <dune/geometry/affinegeometry.hh>
Classes | |
struct | Codim |
Collection of types depending on the codimension. More... | |
Public Types | |
using | ctype = typename Implementation::ctype |
The coordinate field type. More... | |
using | CoordinateField = ctype |
The coordinate field type. More... | |
using | Coordinate = typename Implementation::Coordinate |
The coordinate type. More... | |
typedef ctype | Volume |
Type used for volume. More... | |
Public Member Functions | |
int | size (int c) const |
number of subentities of codimension c More... | |
int | size (int i, int c, int cc) const |
number of subentities of codimension cc of subentity (i,c) More... | |
int | subEntity (int i, int c, int ii, int cc) const |
obtain number of ii-th subentity with codim cc of (i,c) More... | |
auto | subEntities (int i, int c, int cc) const |
Obtain the range of numbers of subentities with codim cc of (i,c) More... | |
decltype(auto) | type (int i, int c) const |
obtain the type of subentity (i,c) More... | |
decltype(auto) | type () const |
obtain the type of this reference element More... | |
decltype(auto) | position (int i, int c) const |
position of the barycenter of entity (i,c) More... | |
bool | checkInside (const Coordinate &local) const |
check if a coordinate is in the reference element More... | |
template<int codim> | |
Codim< codim >::Geometry | geometry (int i) const |
obtain the embedding of subentity (i,codim) into the reference element More... | |
CoordinateField | volume () const |
obtain the volume of the reference element More... | |
decltype(auto) | integrationOuterNormal (int face) const |
obtain the integration outer normal of the reference element More... | |
ReferenceElement () | |
Constructs an empty reference element. More... | |
const Implementation & | impl () const |
Returns a reference to the internal implementation object. More... | |
bool | operator== (const ReferenceElement &r) const |
Compares for equality with another reference element. More... | |
bool | operator!= (const ReferenceElement &r) const |
Compares for inequality with another reference element. More... | |
Static Public Attributes | |
static constexpr int | dimension = Implementation::dimension |
The dimension of the reference element. More... | |
This class provides access to geometric and topological properties of a reference element.
This includes its type, the number of subentities, the volume, and a method for checking if a point is contained in the reference element. The embedding of each subentity into the reference element is also provided.
This class has value semantics, i.e. you can (and should) pass it around by value and not by reference and store a copy of it.
Instances of this object for a given geometry type can be retrieved from the ReferenceElements class.
using Dune::Geo::ReferenceElement::Coordinate = typename Implementation::Coordinate |
The coordinate type.
using Dune::Geo::ReferenceElement::CoordinateField = ctype |
The coordinate field type.
using Dune::Geo::ReferenceElement::ctype = typename Implementation::ctype |
The coordinate field type.
typedef ctype Dune::Geo::ReferenceElement::Volume |
Type used for volume.
|
inline |
Constructs an empty reference element.
This constructor creates an empty (invalid) reference element. This element may not be used in any way except for assigning other reference elements to it. After assigning a valid reference element (obtained from ReferenceElements), it may be used without restrictions.
|
inline |
check if a coordinate is in the reference element
This method returns true if the given local coordinate is within this reference element.
[in] | local | coordinates of the point |
|
inline |
obtain the embedding of subentity (i,codim) into the reference element
Denote by E the i-th subentity of codimension codim of the current reference element. This method returns a Dune::AffineGeometry that maps the reference element of E into the current reference element.
codim | codimension of subentity E |
[in] | i | number of subentity E (0 <= i < size( codim )) |
|
inline |
Returns a reference to the internal implementation object.
|
inline |
obtain the integration outer normal of the reference element
The integration outer normal is the outer normal whose length coincides with the face's integration element.
[in] | face | index of the face, whose normal is desired |
|
inline |
Compares for inequality with another reference element.
|
inline |
Compares for equality with another reference element.
|
inline |
position of the barycenter of entity (i,c)
Denote by E the i-th subentity of codimension c of the current reference element. This method returns the coordinates of the center of gravity of E within the current reference element.
[in] | i | number of subentity E (0 <= i < size( c )) |
[in] | c | codimension of subentity E |
|
inline |
number of subentities of codimension c
[in] | c | codimension whose size is desired |
|
inline |
number of subentities of codimension cc of subentity (i,c)
Denote by E the i-th subentity of codimension c of the current reference element. This method returns the number of subentities of codimension cc of the current reference element, that are also a subentity of E. If cc<c this number is zero.
[in] | i | number of subentity E (0 <= i < size( c )) |
[in] | c | codimension of subentity E (0 <= c <= dim) |
[in] | cc | codimension whose size is desired (0 <= cc <= dim) |
|
inline |
Obtain the range of numbers of subentities with codim cc of (i,c)
Denote by E the i-th subentity of codimension c of the current reference element. This method returns a range of numbers of all subentities of E with codimension cc. Notice that the sub-subentity codimension as well as the numbers in the returned range are given with respect to the reference element itself and not with respect to E. For 0<=cc<c this will return an empty range. The returned range r provide the methods r.begin(), r.end(), r.contains(std::size_t) and r.size() mimicking an immutable iterable set.
[in] | i | number of subentity E (0 <= i < size( c )) |
[in] | c | codimension of subentity E |
[in] | cc | codimension of subentity S (0 <= cc <= dim) |
|
inline |
obtain number of ii-th subentity with codim cc of (i,c)
Denote by E the i-th subentity of codimension c of the current reference element. And denote by S the ii-th subentity of codimension (cc-c) of E. Then, S is a also a subentity of codimension cc of the current reference element. This method returns the number of S with respect to the current reference element.
[in] | i | number of subentity E (0 <= i < size( c )) |
[in] | c | codimension of subentity E |
[in] | ii | number of subentity S (with respect to E) |
[in] | cc | codimension of subentity S (c <= cc <= dim) |
|
inline |
obtain the type of this reference element
|
inline |
obtain the type of subentity (i,c)
Denote by E the i-th subentity of codimension c of the current reference element. This method returns the GeometryType of E.
[in] | i | number of subentity E (0 <= i < size( c )) |
[in] | c | codimension of subentity E |
|
inline |
obtain the volume of the reference element
|
staticconstexpr |
The dimension of the reference element.