DUNE MultiDomainGrid (2.10)

intersection.hh
1#ifndef DUNE_MULTIDOMAINGRID_INTERSECTION_HH
2#define DUNE_MULTIDOMAINGRID_INTERSECTION_HH
3
4#include <dune/grid/common/intersection.hh>
5
6#include <dune/grid/multidomaingrid/hostgridaccessor.hh>
7#include <dune/grid/multidomaingrid/subdomaingrid/intersection.hh>
8
9namespace Dune {
10
11namespace mdgrid {
12
13template<int codim, int dim, typename GridImp>
14class EntityWrapper;
15
16
17template<typename GridImp, typename HostIntersection_>
18class IntersectionWrapper {
19
20 template<class, class>
21 friend class Dune::Intersection;
22
23 template<typename,typename,typename>
24 friend class subdomain::IntersectionWrapper;
25
26 template<typename,typename>
27 friend class IntersectionIteratorWrapper;
28
29 using HostIntersection = HostIntersection_;
30 using Entity = typename GridImp::Traits::template Codim<0>::Entity;
31 using Geometry = typename GridImp::Traits::template Codim<1>::Geometry;
32 using LocalGeometry = typename GridImp::Traits::template Codim<1>::LocalGeometry;
33 using EntityWrapper = Dune::mdgrid::EntityWrapper<0,GridImp::dimension,GridImp>;
34
35 static const int dimension = GridImp::dimension;
36 static const int dimensionworld = GridImp::dimensionworld;
37
38 using ctype = typename GridImp::ctype;
39 using GlobalCoords = FieldVector<ctype,dimensionworld>;
40 using LocalCoords = FieldVector<ctype,dimension - 1>;
41
42
43
44protected:
45
46 IntersectionWrapper() = default;
47
48 explicit IntersectionWrapper(const HostIntersection& hostIntersection)
49 : _hostIntersection(hostIntersection)
50 {}
51
52 explicit IntersectionWrapper(HostIntersection&& hostIntersection)
53 : _hostIntersection(std::move(hostIntersection))
54 {}
55
56private:
57
58 const HostIntersection& hostIntersection() const {
59 return _hostIntersection;
60 }
61
62 bool equals(const IntersectionWrapper& rhs) const {
63 return _hostIntersection == rhs._hostIntersection;
64 }
65
66 bool boundary() const {
67 return _hostIntersection.boundary();
68 }
69
70 int boundaryId() const {
71 return _hostIntersection.boundaryId();
72 }
73
74 std::size_t boundarySegmentIndex() const {
75 return _hostIntersection.boundarySegmentIndex();
76 }
77
78 bool neighbor() const {
79 return _hostIntersection.neighbor();
80 }
81
82 Entity inside() const {
83 return {EntityWrapper(_hostIntersection.inside())};
84 }
85
86 Entity outside() const {
87 return {EntityWrapper(_hostIntersection.outside())};
88 }
89
90 bool conforming() const {
91 return _hostIntersection.conforming();
92 }
93
94 LocalGeometry geometryInInside() const {
95 return LocalGeometry(_hostIntersection.geometryInInside());
96 }
97
98 LocalGeometry geometryInOutside() const {
99 return LocalGeometry(_hostIntersection.geometryInOutside());
100 }
101
102 Geometry geometry() const {
103 return Geometry(_hostIntersection.geometry());
104 }
105
106 GeometryType type() const {
107 return _hostIntersection.type();
108 }
109
110 int indexInInside() const {
111 return _hostIntersection.indexInInside();
112 }
113
114 int indexInOutside() const {
115 return _hostIntersection.indexInOutside();
116 }
117
118 GlobalCoords outerNormal(const LocalCoords& local) const {
119 return _hostIntersection.outerNormal(local);
120 }
121
122 GlobalCoords integrationOuterNormal(const LocalCoords& local) const {
123 return _hostIntersection.integrationOuterNormal(local);
124 }
125
126 GlobalCoords unitOuterNormal(const LocalCoords& local) const {
127 return _hostIntersection.unitOuterNormal(local);
128 }
129
130 GlobalCoords centerUnitOuterNormal() const {
131 return _hostIntersection.centerUnitOuterNormal();
132 }
133
134private:
135
136 HostIntersection _hostIntersection;
137
138};
139
140} // namespace mdgrid
141
142} // namespace Dune
143
144#endif // DUNE_MULTIDOMAINGRID_INTERSECTION_HH
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)