Loading [MathJax]/extensions/tex2jax.js

DUNE MultiDomainGrid (2.10)

gmshreader.hh
1#ifndef DUNE_MULTIDOMAINGRID_GMSHREADERPARSER_HH
2#define DUNE_MULTIDOMAINGRID_GMSHREADERPARSER_HH
3
4#include <dune/common/exceptions.hh>
5
6namespace Dune {
7
8namespace mdgrid {
9
10// forward declaration
11template<typename HostGrid,typename MDGridTraits>
12class MultiDomainGrid;
13
14} // namespace mdgrid
15
16// forward declaration
17template<typename GridType>
18class GmshReaderParser;
19
20template<class HostGrid, class MDGTraits>
21class GmshReaderParser<Dune::mdgrid::MultiDomainGrid<HostGrid, MDGTraits>> : public Dune::GmshReaderParser<HostGrid> {
22public:
23
25
26 GmshReaderParser(Dune::GridFactory<Grid>& factory, bool v, bool i)
27 : Dune::GmshReaderParser<HostGrid>{factory.hostGridFactory(), v, i}
28 , _factory{factory}
29 {}
30
31 void read (const std::string& f)
32 {
33 Dune::GmshReaderParser<HostGrid>::read(f);
34 // list of gmsh domain indices for each entity (gmsh index starts at 1!)
35 const auto& sub_domain_ids = this->elementIndexMap();
36 if (begin(sub_domain_ids) == end(sub_domain_ids))
37 return;
38 int max_subdomains =
39 *std::max_element(begin(sub_domain_ids), end(sub_domain_ids));
40 if (max_subdomains < 1)
41 DUNE_THROW(IOError,
42 "Gmsh phisical entity indices are 1-index based, but a 0 "
43 "index was read");
44 _factory.makeGrid(max_subdomains);
45 auto& grid = _factory.grid();
46
47 grid.startSubDomainMarking();
48 unsigned int i = 0;
49 for (const auto& cell : elements(grid.leafGridView())) {
50 assert(sub_domain_ids[i] != 0);
51 grid.addToSubDomain(sub_domain_ids[i] - 1, cell), i++;
52 }
53
54 grid.preUpdateSubDomains();
55 grid.updateSubDomains();
56 grid.postUpdateSubDomains();
57 }
58
59private:
60 Dune::GridFactory<Grid>& _factory;
61};
62
63} // namespace Dune
64
65#endif // DUNE_MULTIDOMAINGRID_GMSHREADERPARSER_HH
A meta grid for dividing an existing DUNE grid into subdomains that can be accessed as a grid in thei...
Definition: multidomaingrid.hh:243
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)