|
dune-fem 2.12-git
|
A FilteredGridPart allows to extract a set of entities from a grid satisfying a given constrainted defined through a filter class. More...
#include <dune/fem/gridpart/filteredgridpart.hh>

Classes | |
| struct | Codim |
| grid part typedefs, use those of traits More... | |
Public Member Functions | |
| FilteredGridPart (HostGridPartType &hostGridPart, const FilterType &filter) | |
| constructor | |
| FilteredGridPart (const FilteredGridPart &other) | |
| copy constructor | |
| FilteredGridPart & | operator= (const FilteredGridPart &other) |
| const IndexSetType & | indexSet () const |
| return index set of this grid part | |
| template<int codim> | |
| Codim< codim >::IteratorType | begin () const |
| Begin iterator on the leaf level. | |
| template<int codim, PartitionIteratorType pitype> | |
| Codim< codim >::template Partition< pitype >::IteratorType | begin () const |
| Begin iterator on the leaf level. | |
| template<int codim> | |
| Codim< codim >::IteratorType | end () const |
| Begin iterator on the leaf level. | |
| template<int codim, PartitionIteratorType pitype> | |
| Codim< codim >::template Partition< pitype >::IteratorType | end () const |
| End iterator on the leaf level. | |
| int | level () const |
| Returns maxlevel of the grid. | |
| IntersectionIteratorType | ibegin (const EntityType &entity) const |
| ibegin of corresponding intersection iterator for given entity | |
| IntersectionIteratorType | iend (const EntityType &entity) const |
| iend of corresponding intersection iterator for given entity | |
| template<class DataHandleImp , class DataType > | |
| void | communicate (CommDataHandleIF< DataHandleImp, DataType > &dataHandle, InterfaceType iftype, CommunicationDirection dir) const |
| corresponding communication method for this grid part | |
| template<class EntitySeed > | |
| Codim< EntitySeed::codimension >::EntityType | entity (const EntitySeed &seed) const |
| obtain entity pointer from entity seed | |
| const FilterType & | filter () const |
| return reference to filter | |
| FilterType & | filter () |
| return reference to filter | |
| template<class Entity > | |
| bool | contains (const Entity &entity) const |
| HostGridPartType & | hostGridPart () |
| const HostGridPartType & | hostGridPart () const |
| template<class Entity > | |
| const Entity & | convert (const Entity &entity) const |
| convert the grid's entity to a grid part entity Usually the parameter is GridType :: Codim< codim > :: Entity and the return is Codim< codim > :: EntityType. In general these types are the same, but for overloaded entities on grid parts this can differ. | |
| const GridType & | grid () const |
| Returns const reference to the underlying grid. | |
| GridType & | grid () |
| Returns reference to the underlying grid. | |
| bool | isConforming () const |
| returns true if current grid part represents a conforming grid | |
| int | size (int codim) const |
| obtain number of entities in a given codimension | |
| int | size (const GeometryType &type) const |
| obtain number of entities with a given geometry type | |
| bool | contains (const EntityType &e) const |
| const CommunicationType & | comm () const |
| obtain collective communication object | |
| int | boundaryId (const IntersectionType &intersection) const |
| obtain entity pointer from entity seed | |
| int | boundaryId (const IntersectionType &intersection) const |
| return boundary if given an intersection | |
| IntersectionIteratorType | ibegin (const typename Codim< 0 >::EntityType &entity) const |
| ibegin of corresponding intersection iterator for given entity | |
| IntersectionIteratorType | iend (const typename Codim< 0 >::EntityType &entity) const |
| iend of corresponding intersection iterator for given entity | |
| int | overlapSize (int codim) const |
| int | ghostSize (int codim) const |
| int | sequence () const |
| return sequence number to update structures depending on the grid part | |
| const auto & | gridView () const |
Static Public Attributes | |
| static const PartitionIteratorType | indexSetPartitionType = Traits::indexSetPartitionType |
| Maximum Partition type, the index set provides indices for. | |
| static const InterfaceType | indexSetInterfaceType = Traits::indexSetInterfaceType |
| static constexpr int | dimension = GridType::dimension |
| static constexpr int | dimensionworld = GridType::dimensionworld |
| static constexpr bool | conforming = Traits::conforming |
Protected Attributes | |
| GridType * | grid_ |
| DofManagerType * | dofManager_ |
Detailed Description
class Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >
A FilteredGridPart allows to extract a set of entities from a grid satisfying a given constrainted defined through a filter class.
Member Typedef Documentation
◆ BoundaryIdProviderType
|
inherited |
type of boundary id provider specialized for each grid type
◆ Communication
|
inherited |
Collective communication.
◆ CommunicationType
| typedef Traits::CommunicationType Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::CommunicationType |
◆ ctype
|
inherited |
◆ DofManagerType
|
inherited |
type of DofManager
◆ FilterType
| typedef FilterImp Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::FilterType |
type of filter
◆ Grid
|
inherited |
type of Grid implementation
◆ GridPartType
|
inherited |
Type of the implementation.
◆ GridType
| typedef Traits::GridType Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::GridType |
grid type
◆ GridViewType
| typedef ThisType Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::GridViewType |
◆ HostGridPartType
| typedef Traits::HostGridPartType Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::HostGridPartType |
◆ IndexSet
|
inherited |
Index set implementation.
◆ IndexSetType
| typedef Traits::IndexSetType Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::IndexSetType |
index set type
◆ Intersection
|
inherited |
type of Intersection
◆ IntersectionIterator
|
inherited |
type of IntersectionIterator
◆ IntersectionIteratorType
| typedef Traits::IntersectionIteratorType Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::IntersectionIteratorType |
intersection iterator type
◆ IntersectionType
| typedef IntersectionIteratorType::Intersection Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::IntersectionType |
intersection type
◆ Traits
| typedef FilteredGridPartTraits< HostGridPartImp, FilterImp, useFilteredIndexSet > Dune::Fem::FilteredGridPart< HostGridPartImp, FilterImp, useFilteredIndexSet >::Traits |
traits class
◆ TwistUtilityType
|
inherited |
Twist utility type.
Constructor & Destructor Documentation
◆ FilteredGridPart() [1/2]
|
inline |
constructor
◆ FilteredGridPart() [2/2]
|
inline |
copy constructor
Member Function Documentation
◆ begin() [1/2]
|
inline |
Begin iterator on the leaf level.
◆ begin() [2/2]
|
inline |
Begin iterator on the leaf level.
◆ boundaryId() [1/2]
|
inlineinherited |
return boundary if given an intersection
◆ boundaryId() [2/2]
|
inlineinherited |
obtain entity pointer from entity seed
◆ comm()
|
inlineinherited |
obtain collective communication object
◆ communicate()
|
inline |
corresponding communication method for this grid part
◆ contains() [1/2]
|
inline |
◆ contains() [2/2]
|
inlineinherited |
◆ convert()
|
inline |
convert the grid's entity to a grid part entity Usually the parameter is GridType :: Codim< codim > :: Entity and the return is Codim< codim > :: EntityType. In general these types are the same, but for overloaded entities on grid parts this can differ.
◆ end() [1/2]
|
inline |
Begin iterator on the leaf level.
◆ end() [2/2]
|
inline |
End iterator on the leaf level.
◆ entity()
|
inline |
obtain entity pointer from entity seed
◆ filter() [1/2]
|
inline |
return reference to filter
◆ filter() [2/2]
|
inline |
return reference to filter
◆ ghostSize()
|
inlineinherited |
◆ grid() [1/2]
|
inlineinherited |
Returns reference to the underlying grid.
◆ grid() [2/2]
|
inlineinherited |
Returns const reference to the underlying grid.
◆ gridView()
|
inlineinherited |
◆ hostGridPart() [1/2]
|
inline |
◆ hostGridPart() [2/2]
|
inline |
◆ ibegin() [1/2]
|
inline |
ibegin of corresponding intersection iterator for given entity
◆ ibegin() [2/2]
|
inlineinherited |
ibegin of corresponding intersection iterator for given entity
◆ iend() [1/2]
|
inline |
iend of corresponding intersection iterator for given entity
◆ iend() [2/2]
|
inlineinherited |
iend of corresponding intersection iterator for given entity
◆ indexSet()
|
inline |
return index set of this grid part
◆ isConforming()
|
inlineinherited |
returns true if current grid part represents a conforming grid
◆ level()
|
inline |
Returns maxlevel of the grid.
◆ operator=()
|
inline |
◆ overlapSize()
|
inlineinherited |
◆ sequence()
|
inlineinherited |
return sequence number to update structures depending on the grid part
- Note
- The default returns DofManager< Grid > :: sequence ()
◆ size() [1/2]
|
inlineinherited |
obtain number of entities with a given geometry type
◆ size() [2/2]
|
inlineinherited |
obtain number of entities in a given codimension
Member Data Documentation
◆ conforming
|
staticconstexprinherited |
◆ dimension
|
staticconstexprinherited |
◆ dimensionworld
|
staticconstexprinherited |
◆ dofManager_
|
protectedinherited |
◆ grid_
|
protectedinherited |
◆ indexSetInterfaceType
|
staticinherited |
◆ indexSetPartitionType
|
staticinherited |
Maximum Partition type, the index set provides indices for.
The documentation for this class was generated from the following file:
Legal Statements / Impressum | Hosted by TU Dresden & Uni Heidelberg | Generated by
1.9.8