|
enum | { codimension =0
} |
|
enum | { dimension =dim
} |
|
enum | { mydimension =dim
} |
|
typedef GridImp::template Codim< 0 >::Geometry | Geometry |
| The geometry type of this entity.
|
|
typedef GridImp::template Codim< 0 >::EntitySeed | EntitySeed |
| The corresponding entity seed (for storage of entities)
|
|
typedef GridImp::template Codim< 0 >::LocalGeometry | LocalGeometry |
| The geometry type of this entity when the geometry is expressed embedded in the father element. More...
|
|
typedef GridImp::template Codim< 0 >::EntityPointer | EntityPointer |
| The codim==0 EntityPointer type.
|
|
typedef GridImp::HierarchicIterator | HierarchicIterator |
| The HierarchicIterator type.
|
|
|
template<int codim> |
int | DUNE_DEPRECATED_MSG ("Use subEntities(unsigned int) instead!") count() const |
| Number of subentities with codimension cc . More...
|
|
unsigned int | subEntities (unsigned int codim) const |
| Number of subentities with codimension codim . More...
|
|
template<int codim> |
Codim< codim >::Entity | subEntity (int i) const |
| Obtain a subentity. More...
|
|
Entity | father () const |
| Inter-level access to father entity on the next-coarser grid. The given entity resulted directly from a subdivision of its father entity. The behaviour for elements on the macro grid, that is when hasFather() is false, is undefined. More...
|
|
bool | hasFather () const |
| Return true if entity has a father entity which can be accessed using the father() method.
|
|
bool | isLeaf () const |
| Returns true if the entity is contained in the leaf grid.
|
|
bool | isRegular () const |
| Returns true if element is of regular type in red/green type refinement. In bisection or hanging node refinement this is always true.
|
|
LocalGeometry | geometryInFather () const |
| Provides information how this element has been subdivided from its father element. More...
|
|
HierarchicIterator | hbegin (int maxLevel) const |
| Inter-level access to elements that resulted from (recursive) subdivision of this element. More...
|
|
HierarchicIterator | hend (int maxLevel) const |
| Returns iterator to one past the last son element. More...
|
|
bool | isNew () const |
| Returns true, if the entity has been created during the last call to adapt()
|
|
bool | mightVanish () const |
| Returns true, if entity might disappear during the next call to adapt(). If the method returns false, the entity is guaranteed to still be present after adaptation.
|
|
bool | hasBoundaryIntersections () const |
| Returns true, if entity has intersections with boundary.
|
|
template<int dim, class GridImp, template< int, int, class > class EntityImp>
class Dune::Entity< 0, dim, GridImp, EntityImp >
Template specialization of Dune::Entity for Elements (codim==0)
- Template Parameters
-
dim | Dimension of the grid |
GridImp | Type that is a model of Dune::Grid |
EntityImp | Class template that is a model of Dune::Entity |
- See also
- Dune::Entity (general version) for the full documentation
<int cd, int dim, class GridImp, template<int,int,class> class EntityImp>
template<int dim, class GridImp , template< int, int, class > class EntityImp>
typedef GridImp::template Codim<0>::LocalGeometry Dune::Entity< 0, dim, GridImp, EntityImp >::LocalGeometry |
The geometry type of this entity when the geometry is expressed embedded in the father element.
This differs from Geometry in particular when dim != dimworld, but even when dim == dimworld the implementation may choose to use a different type here.
template<int dim, class GridImp , template< int, int, class > class EntityImp>
template<int codim>
int Dune::Entity< 0, dim, GridImp, EntityImp >::DUNE_DEPRECATED_MSG |
( |
"Use subEntities(unsigned int) instead!" |
| ) |
const |
|
inline |
Number of subentities with codimension cc
.
Strictly speaking this method is redundant, because the same information can be obtained from the corresponding reference element. It is here for efficiency reasons only.
- Deprecated:
- This method will be removed after the release of dune-grid-2.4. Please use the method subEntities instead.
template<int dim, class GridImp , template< int, int, class > class EntityImp>
Inter-level access to father entity on the next-coarser grid. The given entity resulted directly from a subdivision of its father entity. The behaviour for elements on the macro grid, that is when hasFather() is false, is undefined.
- Note
- If the partitionType of the Entity is GhostEntity, it is not guaranteed that this method is working or implemented in general. For some grids it might be available, though.
template<int dim, class GridImp , template< int, int, class > class EntityImp>
obtain geometric realization of the entity
Each entity provides an object of type Dune::Geometry< dimension-codimension, dimensionworld, ... > that represents the map from a reference element to world coordinates.
- Note
- Previously, the geometry was encapsulated in the entity object and a const reference was returned.
-
The returned geometry object is guaranteed to remain valid until the grid is modified (or deleted).
template<int dim, class GridImp , template< int, int, class > class EntityImp>
Provides information how this element has been subdivided from its father element.
The returned LocalGeometry is a model of Dune::Geometry<dimension,dimension,...>, mapping the reference element of the given entity to the reference element of its father.
This information is sufficient to interpolate all degrees of freedom in the conforming case. Nonconforming may require access to neighbors of the father and calculations with local coordinates. The on-the-fly case is somewhat inefficient since degrees of freedom may be visited several times. If we store interpolation matrices, this is tolerable. We assume that on-the-fly implementation of interpolation is only done for simple discretizations.
- Note
- For ghost entities, this method is not guaranteed to be implemented.
-
Previously, the geometry was encapsulated in the entity object and a const reference was returned.
-
The returned geometry object is guaranteed to remain valid until the grid is modified (or deleted).
template<int dim, class GridImp , template< int, int, class > class EntityImp>
unsigned int Dune::Entity< 0, dim, GridImp, EntityImp >::subEntities |
( |
unsigned int |
codim | ) |
const |
|
inline |
Number of subentities with codimension codim
.
Strictly speaking this method is redundant, because the same information can be obtained from the corresponding reference element. It is here for efficiency reasons only.