Loading [MathJax]/extensions/tex2jax.js

DUNE MultiDomainGrid (2.8)

multidomainmcmgmapper.hh
1#ifndef DUNE_MULTIDOMAINGRID_MULTDIDOMAINMCMGMAPPER_HH
2#define DUNE_MULTIDOMAINGRID_MULTDIDOMAINMCMGMAPPER_HH
3
4#include <iostream>
5#include <map>
6#include <numeric>
7
8#include <dune/grid/common/mcmgmapper.hh>
9#include <dune/geometry/referenceelements.hh>
10
11namespace Dune {
12
13namespace mdgrid {
14
21namespace {
22
23 template<typename GV, bool max_subomain_index_is_static>
24 struct MCMGMapperStorageProvider
25 {
26
27 protected:
28
29 typedef typename GV::IndexSet::IndexType IndexType;
30
31 void update(const GV& gv) {}
32
33 std::array<std::vector<IndexType>,GV::Grid::maxSubDomainIndex()> _offsets; // provide a map with all geometry types
34
35 };
36
37 template<typename GV>
38 struct MCMGMapperStorageProvider<GV,false>
39 {
40
41 protected:
42
43 typedef typename GV::IndexSet::IndexType IndexType;
44
45 void update(const GV& gv) {
46 _offsets.resize(gv.grid().maxSubDomainIndex());
47 }
48
49 std::vector<std::vector<IndexType> > _offsets; // provide a map with all geometry types
50
51 };
52
53
54}
55
84template <typename GV>
85class MultiDomainMCMGMapper : public MultipleCodimMultipleGeomTypeMapper<GV>,
86 public MCMGMapperStorageProvider<GV,GV::Grid::maxSubDomainIndexIsStatic()>
87
88{
89
90 typedef MultipleCodimMultipleGeomTypeMapper<GV> Base;
91
92 typedef MCMGMapperStorageProvider<GV,GV::Grid::maxSubDomainIndexIsStatic()> StorageProvider;
93
94 using StorageProvider::_offsets;
95
96public:
97
98 typedef typename GV::IndexSet::IndexType IndexType;
99 typedef typename GV::Grid::SubDomainIndex SubDomainIndex;
100
101 MultiDomainMCMGMapper (const GV& gv, const MCMGLayout& layout)
102 : Base(gv,layout)
103 {
104 update(gv);
105 }
106
114 : Base(gv)
115 {
116 update(gv);
117 }
118
119 using Base::gridView;
120
126 template<class EntityType>
127 int map (SubDomainIndex subDomain, const EntityType& e) const
128 {
129 return gridView().indexSet().index(subDomain,e) + _offsets[subDomain][GlobalGeometryTypeIndex::index(e.type())];
130 }
131
139 int map (SubDomainIndex subDomain, const typename GV::template Codim<0>::Entity& e, int i, unsigned int codim) const
140 {
141 GeometryType gt =
142 ReferenceElements<double, GV::dimension>::general(e.type()).type(i,
143 codim);
144 return gridView().indexSet().subIndex(subDomain, e, i, codim) +
145 _offsets[subDomain][GlobalGeometryTypeIndex::index(gt)];
146 }
147
156 int size (SubDomainIndex subDomain) const
157 {
158 return _offsets[subDomain].back();
159 }
160
167 template<class EntityType>
168 bool contains (SubDomainIndex subDomain, const EntityType& e, IndexType& result) const
169 {
170 if (!gridView().indexSet().contains(subDomain, e) ||
171 !Base::layout()(e.type(), GV::dimension)) {
172 result = 0;
173 return false;
174 }
175 result = map(subDomain,e);
176 return true;
177 }
178
186 template<int cc> // this is now the subentity's codim
187 bool contains (SubDomainIndex subDomain, const typename GV::template Codim<0>::Entity& e, int i, IndexType& result) const
188 {
189 GeometryType gt = ReferenceElements<double,GV::dimension>::general(e.type()).type(i,cc);
190 // if the entity is contained in the subdomain, all of its subentities are contained as well
191 if (!gridView().indexSet().contains(subDomain, e) ||
192 !Base::layout()(gt, GV::dimension)) {
193 result = 0;
194 return false;
195 }
196 result = gridView().indexSet().subIndex(subDomain, e, i, cc) +
197 _offsets[subDomain][GlobalGeometryTypeIndex::index(gt)];
198 return true;
199 }
200
203 [[deprecated("Use update(gridView) instead! Will be removed after release 2.8.")]]
204 void update ()
205 {
206 update(gridView());
207 }
208
214 void update(const GV& gv)
215 {
216 static_cast<Base*>(this)->update(gv);
217 StorageProvider::update(gv);
218 for (SubDomainIndex subDomain = 0;
219 subDomain < gridView().grid().maxSubDomainIndex(); ++subDomain) {
220 std::vector<IndexType>& offsets = _offsets[subDomain];
221 offsets.resize(GlobalGeometryTypeIndex::size(GV::dimension) + 1);
222 std::fill(offsets.begin(),offsets.end(),0);
223
224 // Compute offsets for the different geometry types.
225 // Note that mapper becomes invalid when the grid is modified.
226 for (int cc = 0; cc <= GV::dimension; ++cc)
227 {
228 for (auto gt : gridView().indexSet().types(subDomain,cc))
229 offsets[GlobalGeometryTypeIndex::index(gt) + 1] =
230 gridView().indexSet().size(subDomain, gt);
231 // convert sizes to offset
232 // last entry stores total size
233 std::partial_sum(offsets.begin(),offsets.end(),offsets.begin());
234 }
235 }
236 }
237};
238
241} // namespace mdgrid
242
243} // namespace Dune
244
245#endif // DUNE_MULTIDOMAINGRID_MULTDIDOMAINMCMGMAPPER_HH
Implementation class for a multiple codim and multiple geometry type mapper.
Definition: multidomainmcmgmapper.hh:88
int size(SubDomainIndex subDomain) const
Return total number of entities in the entity set managed by the mapper.
Definition: multidomainmcmgmapper.hh:156
void update(const GV &gv)
Recalculates indices after grid adaptation.
Definition: multidomainmcmgmapper.hh:214
bool contains(SubDomainIndex subDomain, const EntityType &e, IndexType &result) const
Returns true if the entity is contained in the index set.
Definition: multidomainmcmgmapper.hh:168
int map(SubDomainIndex subDomain, const typename GV::template Codim< 0 >::Entity &e, int i, unsigned int codim) const
Map subentity of codim 0 entity to array index.
Definition: multidomainmcmgmapper.hh:139
int map(SubDomainIndex subDomain, const EntityType &e) const
Map entity to array index.
Definition: multidomainmcmgmapper.hh:127
bool contains(SubDomainIndex subDomain, const typename GV::template Codim< 0 >::Entity &e, int i, IndexType &result) const
Returns true if the entity is contained in the index set.
Definition: multidomainmcmgmapper.hh:187
MultiDomainMCMGMapper(const GV &gv)
Construct mapper from grid and one of its index sets.
Definition: multidomainmcmgmapper.hh:113
void update()
Recalculates indices after grid adaptation.
Definition: multidomainmcmgmapper.hh:204
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 4, 22:59, 2025)