Dune Core Modules (2.6.0)

scsgmapper.hh
Go to the documentation of this file.
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3#ifndef DUNE_GRID_COMMON_SCSGMAPPER_HH
4#define DUNE_GRID_COMMON_SCSGMAPPER_HH
5
6#include <iostream>
7#include "mapper.hh"
8
10
17namespace Dune
18{
37 template <typename GV, int c>
39 public Mapper<typename GV::Grid,SingleCodimSingleGeomTypeMapper<GV,c>, typename GV::IndexSet::IndexType >
40 {
41 public:
42
44 typedef typename GV::IndexSet::IndexType Index;
45
50 using size_type = decltype(std::declval<typename GV::IndexSet>().size(0));
51
57 : is(gridView.indexSet())
58 {
59 // check that grid has only a single geometry type
60 if (is.types(c).size() != 1)
61 DUNE_THROW(GridError, "mapper treats only a single codim and a single geometry type");
62 }
63
69 template<class EntityType>
70 Index index (const EntityType& e) const
71 {
72 static_assert(EntityType::codimension == c, "Entity of wrong codim passed to SingleCodimSingleGeomTypeMapper");
73 return is.index(e);
74 }
75
83 Index subIndex (const typename GV::template Codim<0>::Entity& e,
84 int i, unsigned int codim) const
85 {
86 if (codim != c)
87 DUNE_THROW(GridError, "Id of wrong codim requested from SingleCodimSingleGeomTypeMapper");
88 return is.subIndex(e,i,codim);
89 }
90
99 size_type size () const
100 {
101 return is.size(c);
102 }
103
110 template<class EntityType>
111 bool contains (const EntityType& e, Index& result) const
112 {
113 result = index(e);
114 return true;
115 }
116
125 bool contains (const typename GV::template Codim<0>::Entity& e, int i, int cc, Index& result) const
126 {
127 result = subIndex(e,i,cc);
128 return true;
129 }
130
133 void update ()
134 { // nothing to do here
135 }
136
137 private:
138 const typename GV::IndexSet& is;
139 };
140
159 template <typename G, int c>
160 class LeafSingleCodimSingleGeomTypeMapper : public SingleCodimSingleGeomTypeMapper<typename G::LeafGridView,c> {
161 public:
166 : SingleCodimSingleGeomTypeMapper<typename G::LeafGridView,c>(grid.leafGridView())
167 {}
168 };
169
181 template <typename G, int c>
182 class LevelSingleCodimSingleGeomTypeMapper : public SingleCodimSingleGeomTypeMapper<typename G::LevelGridView,c> {
183 public:
184 /* @brief The constructor
185 @param grid A reference to a grid.
186 @param level A valid level of the grid.
187 */
188 LevelSingleCodimSingleGeomTypeMapper (const G& grid, int level)
190 {}
191 };
192
194}
195#endif
Base class for exceptions in Dune grid modules.
Definition: exceptions.hh:18
Single codim and single geometry type mapper for leaf entities.
Definition: scsgmapper.hh:160
LeafSingleCodimSingleGeomTypeMapper(const G &grid)
The constructor.
Definition: scsgmapper.hh:165
Single codim and single geometry type mapper for entities of one level.
Definition: scsgmapper.hh:182
Mapper interface.
Definition: mapper.hh:107
Implementation class for a single codim and single geometry type mapper.
Definition: scsgmapper.hh:40
bool contains(const EntityType &e, Index &result) const
Returns true if the entity is contained in the index set.
Definition: scsgmapper.hh:111
GV::IndexSet::IndexType Index
Number type used for indices.
Definition: scsgmapper.hh:44
bool contains(const typename GV::template Codim< 0 >::Entity &e, int i, int cc, Index &result) const
Returns true if the entity is contained in the index set.
Definition: scsgmapper.hh:125
decltype(std::declval< typename GV::IndexSet >().size(0)) size_type
Number type used for the overall size (the return value of the 'size' method)
Definition: scsgmapper.hh:50
Index index(const EntityType &e) const
Map entity to array index.
Definition: scsgmapper.hh:70
Index subIndex(const typename GV::template Codim< 0 >::Entity &e, int i, unsigned int codim) const
Map subentity of codim 0 entity to array index.
Definition: scsgmapper.hh:83
SingleCodimSingleGeomTypeMapper(const GV &gridView)
Construct mapper from grid and one of its index sets.
Definition: scsgmapper.hh:56
size_type size() const
Return total number of entities in the entity set managed by the mapper.
Definition: scsgmapper.hh:99
void update()
Recalculates map after mesh adaptation.
Definition: scsgmapper.hh:133
Different resources needed by all grid implementations.
#define DUNE_THROW(E, m)
Definition: exceptions.hh:216
Grid< dim, dimworld, ct, GridFamily >::LeafGridView leafGridView(const Grid< dim, dimworld, ct, GridFamily > &grid)
leaf grid view for the given grid
Definition: grid.hh:809
Provides classes with basic mappers which are used to attach data to a grid.
Dune namespace.
Definition: alignedallocator.hh:10
Static tag representing a codimension.
Definition: dimension.hh:22
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 15, 22:36, 2024)