dune-grid-glue 2.5-git
intersection.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:
9#ifndef DUNE_GRIDGLUE_ADAPTER_INTERSECTION_HH
10#define DUNE_GRIDGLUE_ADAPTER_INTERSECTION_HH
11
12#include <memory>
13
14#include <dune/geometry/affinegeometry.hh>
16
17#define ONLY_SIMPLEX_INTERSECTIONS
18
19namespace Dune {
20 namespace GridGlue {
21
22 // forward declaration
23 template<typename P0, typename P1>
24 class IntersectionIndexSet;
25
29 template<typename P0, typename P1>
31 {
32 public:
33 typedef ::Dune::GridGlue::GridGlue<P0, P1> GridGlue;
34
36
39
40 private:
41 // intermediate quantities
42 static const int dim0 = GridGlue::Grid0View::Grid::dimension - GridGlue::Grid0Patch::codim;
43 static const int dim1 = GridGlue::Grid1View::Grid::dimension - GridGlue::Grid1Patch::codim;
44
45 public:
47 enum { mydim = (dim0<dim1) ? dim0 : dim1 };
48
49 typedef AffineGeometry<typename GridGlue::Grid0View::ctype, mydim, GridGlue::Grid0View::dimension>
51 typedef AffineGeometry<typename GridGlue::Grid0View::ctype, mydim, GridGlue::Grid0View::dimensionworld>
53 typedef AffineGeometry<typename GridGlue::Grid1View::ctype, mydim, GridGlue::Grid1View::dimension>
55 typedef AffineGeometry<typename GridGlue::Grid1View::ctype, mydim, GridGlue::Grid1View::dimensionworld>
57
60
62 IntersectionData(const GridGlue& glue, unsigned int mergeindex, unsigned int offset, bool grid0local, bool grid1local);
63
66
67 /* M E M B E R V A R I A B L E S */
68
71
73 std::vector<Grid0IndexType> grid0indices_;
75 std::vector<Grid1IndexType> grid1indices_;
76
80 std::vector<std::shared_ptr<Grid0LocalGeometry> > grid0localgeom_;
88 std::shared_ptr<Grid0Geometry> grid0geom_;
92 std::vector<std::shared_ptr<Grid1LocalGeometry> > grid1localgeom_;
100 std::shared_ptr<Grid1Geometry> grid1geom_;
101
102 };
103
105 template<typename P0, typename P1>
106 IntersectionData<P0, P1>::IntersectionData(const GridGlue& glue, unsigned int mergeindex, unsigned int offset,
107 bool grid0local, bool grid1local)
108 : index_(mergeindex+offset),
109 grid0local_(grid0local),
110 grid1local_(grid1local)
111 {
112 unsigned int n_grid0Parents = glue.merger_->template parents<0>(mergeindex);
113 unsigned int n_grid1Parents = glue.merger_->template parents<1>(mergeindex);
114
115 assert (0 <= n_grid0Parents || 0 <= n_grid1Parents);
116
117 // init containers
118 grid0indices_.resize(n_grid0Parents);
119 grid0localgeom_.resize(n_grid0Parents);
120
121 grid1indices_.resize(n_grid1Parents);
122 grid1localgeom_.resize(n_grid1Parents);
123
124 // default values
125 grid0indices_[0] = 0;
126 grid1indices_[0] = 0;
127
128 typedef typename GridGlue::ctype ctype;
129
130 // Number of corners of the intersection
131 const int nSimplexCorners = mydim + 1;
132
133 // if an invalid index is given do not proceed!
134 // (happens when the parent GridGlue initializes the "end"-Intersection)
135 assert (0 <= mergeindex || mergeindex < glue.index__sz);
136
137 // initialize the local and the global geometries of grid0
138 {
139 // compute the coordinates of the subface's corners in codim 0 entity local coordinates
140 const int elementdim = GridGlue::Grid0View::template Codim<0>::Geometry::mydimension;
141
142 // coordinates within the subentity that contains the remote intersection
143 std::array<Dune::FieldVector<ctype, dim0>, nSimplexCorners> corners_subEntity_local;
144
145 for (unsigned int par = 0; par < n_grid0Parents; ++par) {
146 for (int i = 0; i < nSimplexCorners; ++i)
147 corners_subEntity_local[i] = glue.merger_->template parentLocal<0>(mergeindex, i, par);
148
149 // Coordinates of the remote intersection corners wrt the element coordinate system
150 std::array<Dune::FieldVector<ctype, elementdim>, nSimplexCorners> corners_element_local;
151
152 if (grid0local)
153 {
154 grid0indices_[par] = glue.merger_->template parent<0>(mergeindex,par);
155
156 typename GridGlue::Grid0Patch::LocalGeometry
157 grid0LocalGeometry = glue.template patch<0>().geometryLocal(grid0indices_[par]);
158 typename GridGlue::Grid0Patch::Geometry grid0WorldGeometry1 = glue.template patch<0>().geometry(grid0indices_[par]);
159 for (std::size_t i=0; i<corners_subEntity_local.size(); i++) {
160 corners_element_local[i] = grid0LocalGeometry.global(corners_subEntity_local[i]);
161 }
162
163 // set the corners of the local geometry
164 #ifdef ONLY_SIMPLEX_INTERSECTIONS
165 Dune::GeometryType type(Dune::GeometryType::simplex, mydim);
166 #else
167 #error Not Implemented
168 #endif
169 grid0localgeom_[par] = std::make_shared<Grid0LocalGeometry>(type, corners_element_local);
170
171 // Add world geometry only for 0th parent
172 if (par == 0) {
173 typename GridGlue::Grid0Patch::Geometry
174 grid0WorldGeometry = glue.template patch<0>().geometry(grid0indices_[par]);
175
176 // world coordinates of the remote intersection corners
177 std::array<Dune::FieldVector<ctype, GridGlue::Grid0View::dimensionworld>, nSimplexCorners> corners_global;
178
179 for (std::size_t i=0; i<corners_subEntity_local.size(); i++) {
180 corners_global[i] = grid0WorldGeometry.global(corners_subEntity_local[i]);
181 }
182
183 grid0geom_ = std::make_shared<Grid0Geometry>(type, corners_global);
184 }
185 }
186 }
187 }
188
189 // do the same for the local and the global geometry of grid1
190 {
191 // compute the coordinates of the subface's corners in codim 0 entity local coordinates
192 const int elementdim = GridGlue::Grid1View::template Codim<0>::Geometry::mydimension;
193
194 // coordinates within the subentity that contains the remote intersection
195 std::array<Dune::FieldVector<ctype, dim1>, nSimplexCorners> corners_subEntity_local;
196
197 for (unsigned int par = 0; par < n_grid1Parents; ++par) {
198
199 for (int i = 0; i < nSimplexCorners; ++i)
200 corners_subEntity_local[i] = glue.merger_->template parentLocal<1>(mergeindex, i, par);
201
202 // Coordinates of the remote intersection corners wrt the element coordinate system
203 std::array<Dune::FieldVector<ctype, elementdim>, nSimplexCorners> corners_element_local;
204
205 if (grid1local)
206 {
207 grid1indices_[par] = glue.merger_->template parent<1>(mergeindex, par);
208
209 typename GridGlue::Grid1Patch::LocalGeometry
210 grid1LocalGeometry = glue.template patch<1>().geometryLocal(grid1indices_[par]);
211
212 for (std::size_t i=0; i<corners_subEntity_local.size(); i++) {
213 corners_element_local[i] = grid1LocalGeometry.global(corners_subEntity_local[i]);
214 }
215
216 // set the corners of the geometries
217 #ifdef ONLY_SIMPLEX_INTERSECTIONS
218 Dune::GeometryType type(Dune::GeometryType::simplex, mydim);
219 #else
220 #error Not Implemented
221 #endif
222 grid1localgeom_[par] = std::make_shared<Grid1LocalGeometry>(type, corners_element_local);
223
224 // Add world geomety only for 0th parent
225 if (par == 0) {
226 typename GridGlue::Grid1Patch::Geometry
227 grid1WorldGeometry = glue.template patch<1>().geometry(grid1indices_[par]);
228
229 // world coordinates of the remote intersection corners
230 std::array<Dune::FieldVector<ctype, GridGlue::Grid1View::dimensionworld>, nSimplexCorners> corners_global;
231
232 for (std::size_t i=0; i<corners_subEntity_local.size(); i++) {
233 corners_global[i] = grid1WorldGeometry.global(corners_subEntity_local[i]);
234 }
235
236 grid1geom_ = std::make_shared<Grid1Geometry>(type, corners_global);
237 }
238 }
239 }
240 }
241 }
242
247 template<typename P0, typename P1, int P>
249
250 template<typename P0, typename P1>
251 struct IntersectionDataView<P0, P1, 0>
252 {
256 static LocalGeometry& localGeometry(const IntersectionData<P0,P1> & i, unsigned int parentId = 0)
257 {
258 return *i.grid0localgeom_[parentId];
259 }
261 {
262 return *i.grid0geom_;
263 }
264 static bool local(const IntersectionData<P0,P1> & i)
265 {
266 return i.grid0local_;
267 }
268 static IndexType index(const IntersectionData<P0,P1> & i, unsigned int parentId = 0)
269 {
270 return i.grid0indices_[parentId];
271 }
273 {
274 return i.grid0indices_.size();
275 }
276 };
277
278 template<typename P0, typename P1>
279 struct IntersectionDataView<P0, P1, 1>
280 {
284 static LocalGeometry& localGeometry(const IntersectionData<P0,P1> & i, unsigned int parentId = 0)
285 {
286 return *i.grid1localgeom_[parentId];
287 }
289 {
290 return *i.grid1geom_;
291 }
293 {
294 return i.grid1local_;
295 }
296 static IndexType index(const IntersectionData<P0,P1> & i, unsigned int parentId = 0)
297 {
298 return i.grid1indices_[parentId];
299 }
301 {
302 return i.grid1indices_.size();
303 }
304 };
305
310 template<typename P0, typename P1, int inside, int outside>
312
313 template<typename P0, typename P1>
314 struct IntersectionTraits<P0,P1,0,1>
315 {
316 typedef ::Dune::GridGlue::GridGlue<P0, P1> GridGlue;
318
321
326
327 enum {
330 insidePatch = 0,
331 outsidePatch = 1
332 };
333
334 typedef typename GridGlue::ctype ctype;
335 typedef Dune::FieldVector<ctype, mydim> LocalCoordinate;
336 typedef Dune::FieldVector<ctype, coorddim> GlobalCoordinate;
337 };
338
339 template<typename P0, typename P1>
340 struct IntersectionTraits<P0,P1,1,0>
341 {
342 typedef ::Dune::GridGlue::GridGlue<P0, P1> GridGlue;
344
347
354
355 enum {
358 insidePatch = 1,
359 outsidePatch = 0
360 };
361
362 typedef typename GridGlue::ctype ctype;
363 typedef Dune::FieldVector<ctype, mydim> LocalCoordinate;
364 typedef Dune::FieldVector<ctype, coorddim> GlobalCoordinate;
365 };
366
369 template<typename P0, typename P1, int I, int O>
371 {
372
373 public:
374
376
377 typedef typename Traits::GridGlue GridGlue;
378 typedef typename Traits::IntersectionData IntersectionData;
379
380
381 typedef typename Traits::InsideGridView InsideGridView;
382 typedef typename Traits::InsideLocalGeometry InsideLocalGeometry;
383
384 typedef typename Traits::OutsideGridView OutsideGridView;
385 typedef typename Traits::OutsideLocalGeometry OutsideLocalGeometry;
386 typedef typename Traits::OutsideGeometry OutsideGeometry;
387
388 typedef typename Traits::Geometry Geometry;
389 typedef typename Traits::ctype ctype;
390
391 typedef typename InsideGridView::Traits::template Codim<0>::Entity InsideEntity;
392 typedef typename OutsideGridView::Traits::template Codim<0>::Entity OutsideEntity;
393
394 typedef typename Traits::LocalCoordinate LocalCoordinate;
395 typedef typename Traits::GlobalCoordinate GlobalCoordinate;
396
397 enum {
399 coorddim = Traits::coorddim,
401 mydim = Traits::mydim,
404 insidePatch = Traits::insidePatch,
405 outsidePatch = Traits::outsidePatch
407 };
408
409 // typedef unsigned int IndexType;
410
411 private:
415 const static int codimensionWorld = coorddim - mydim;
416
417 public:
418 /* C O N S T R U C T O R S */
419
421 Intersection(const GridGlue* glue, const IntersectionData* i) :
422 glue_(glue), i_(i) {}
423
424 /* F U N C T I O N A L I T Y */
425
429 inside(unsigned int parentId = 0) const
430 {
431 assert(self());
432 return glue_->template patch<I>().element(
434 }
435
439 outside(unsigned int parentId = 0) const
440 {
441 assert(neighbor());
442 return glue_->template patch<O>().element(
444 }
445
447 bool conforming() const
448 {
449 throw Dune::NotImplemented();
450 }
451
454 const InsideLocalGeometry& geometryInInside(unsigned int parentId = 0) const
455 {
457 }
458
461 const OutsideLocalGeometry& geometryInOutside(unsigned int parentId = 0) const
462 {
464 }
465
472 const Geometry& geometry() const
473 {
475 }
476
483 const OutsideGeometry& geometryOutside() const // DUNE_DEPRECATED
484 {
486 }
487
489 Dune::GeometryType type() const
490 {
491 #ifdef ONLY_SIMPLEX_INTERSECTIONS
492 static const Dune::GeometryType type(Dune::GeometryType::simplex, mydim);
493 return type;
494 #else
495 #error Not Implemented
496 #endif
497 }
498
499
501 bool self() const
502 {
504 }
505
507 size_t neighbor(unsigned int g = 0) const
508 {
509 if (g == 0 && IntersectionDataView<P0,P1,O>::local(*i_)) {
511 } else if (g == 1 && IntersectionDataView<P0,P1,I>::local(*i_)) {
513 }
514 return 0;
515 }
516
518 int indexInInside(unsigned int parentId = 0) const
519 {
520 assert(self());
521 return glue_->template patch<I>().indexInInside(
523 }
524
526 int indexInOutside(unsigned int parentId = 0) const
527 {
528 assert(neighbor());
529 return glue_->template patch<O>().indexInInside(
531 }
532
538 {
539 GlobalCoordinate normal;
540
541 if (codimensionWorld == 0)
542 DUNE_THROW(Dune::Exception, "There is no normal vector to a full-dimensional intersection");
543 else if (codimensionWorld == 1) {
544 /* TODO: Implement the general n-ary cross product here */
545 const auto jacobianTransposed = geometry().jacobianTransposed(local);
546 if (mydim==1) {
547 normal[0] = - jacobianTransposed[0][1];
548 normal[1] = jacobianTransposed[0][0];
549 } else if (mydim==2) {
550 normal[0] = (jacobianTransposed[0][1] * jacobianTransposed[1][2] - jacobianTransposed[0][2] * jacobianTransposed[1][1]);
551 normal[1] = - (jacobianTransposed[0][0] * jacobianTransposed[1][2] - jacobianTransposed[0][2] * jacobianTransposed[1][0]);
552 normal[2] = (jacobianTransposed[0][0] * jacobianTransposed[1][1] - jacobianTransposed[0][1] * jacobianTransposed[1][0]);
553 } else
554 DUNE_THROW(Dune::NotImplemented, "Remote intersections don't implement the 'outerNormal' method for " << mydim << "-dimensional intersections yet");
555 } else
556 DUNE_THROW(Dune::NotImplemented, "Remote intersections don't implement the 'outerNormal' method for intersections with codim >= 2 yet");
557
558 return normal;
559 }
560
566 {
567 GlobalCoordinate normal = outerNormal(local);
568 normal /= normal.two_norm();
569 return normal;
570 }
571
577 {
578 return (unitOuterNormal(local) *= geometry().integrationElement(local));
579 }
580
586 {
587 return unitOuterNormal(ReferenceElements<ctype,mydim>::general(type()).position(0,0));
588 }
589
594 {
595 return Intersection<P0,P1,O,I>(glue_,i_);
596 }
597
598#ifdef QUICKHACK_INDEX
599 typedef typename GridGlue::IndexType IndexType;
600
601 IndexType index() const
602 {
603 return i_->index_;
604 }
605
606#endif
607
608 private:
609
610 friend class IntersectionIndexSet<P0,P1>;
611
612 /* M E M B E R V A R I A B L E S */
613
615 const GridGlue* glue_;
616
618 const IntersectionData* i_;
619 };
620
621
622 } // end namespace GridGlue
623} // end namespace Dune
624
625#endif // DUNE_GRIDGLUE_ADAPTER_INTERSECTION_HH
Central component of the module implementing the coupling of two grids.
Definition gridglue.hh:30
sequential adapter to couple two grids at specified close together boundaries
Definition gridglue.hh:93
PromotionTraits< typenameGrid0View::ctype, typenameGrid1View::ctype >::PromotedType ctype
The type used for coordinates.
Definition gridglue.hh:175
unsigned int IndexType
Definition gridglue.hh:151
P1::GridView Grid1View
GridView of grid 1 (aka target grid)
Definition gridglue.hh:142
@ dimworld
export the world dimension : maximum of the two extractor world dimensions
Definition gridglue.hh:168
P0::GridView Grid0View
GridView of grid 0 (aka domain grid)
Definition gridglue.hh:123
storage class for Dune::GridGlue::Intersection related data
Definition intersection.hh:31
GridGlue::IndexType IndexType
Definition intersection.hh:35
AffineGeometry< typename GridGlue::Grid1View::ctype, mydim, GridGlue::Grid1View::dimensionworld > Grid1Geometry
Definition intersection.hh:56
@ mydim
Definition intersection.hh:47
std::vector< Grid0IndexType > grid0indices_
indices of the associated local grid0 entity
Definition intersection.hh:73
std::vector< std::shared_ptr< Grid0LocalGeometry > > grid0localgeom_
Definition intersection.hh:80
GridGlue::Grid0View::IndexSet::IndexType Grid0IndexType
Definition intersection.hh:58
AffineGeometry< typename GridGlue::Grid0View::ctype, mydim, GridGlue::Grid0View::dimension > Grid0LocalGeometry
Definition intersection.hh:50
std::shared_ptr< Grid0Geometry > grid0geom_
Definition intersection.hh:88
bool grid1local_
true if the associated grid1 entity is local
Definition intersection.hh:74
std::vector< Grid1IndexType > grid1indices_
indices of the associated local grid1 entity
Definition intersection.hh:75
GridGlue::Grid1View::IndexSet::IndexType Grid1IndexType
Definition intersection.hh:59
::Dune::GridGlue::GridGlue< P0, P1 > GridGlue
Definition intersection.hh:33
IntersectionData()
Default Constructor.
Definition intersection.hh:65
@ coorddim
Definition intersection.hh:38
std::shared_ptr< Grid1Geometry > grid1geom_
Definition intersection.hh:100
AffineGeometry< typename GridGlue::Grid0View::ctype, mydim, GridGlue::Grid0View::dimensionworld > Grid0Geometry
Definition intersection.hh:52
IndexType index_
index of this intersection after GridGlue interface
Definition intersection.hh:70
bool grid0local_
true if the associated grid0 entity is local
Definition intersection.hh:72
std::vector< std::shared_ptr< Grid1LocalGeometry > > grid1localgeom_
Definition intersection.hh:92
AffineGeometry< typename GridGlue::Grid1View::ctype, mydim, GridGlue::Grid1View::dimension > Grid1LocalGeometry
Definition intersection.hh:54
The intersection of two entities of the two patches of a GridGlue.
Definition intersection.hh:371
Traits::OutsideLocalGeometry OutsideLocalGeometry
Definition intersection.hh:385
Intersection< P0, P1, O, I > flip() const
Return a copy of the intersection with inside and outside switched.
Definition intersection.hh:593
bool conforming() const
Return true if intersection is conforming.
Definition intersection.hh:447
InsideGridView::Traits::template Codim< 0 >::Entity InsideEntity
Definition intersection.hh:391
Traits::GridGlue GridGlue
Definition intersection.hh:377
int indexInOutside(unsigned int parentId=0) const
Local number of codim 1 entity in outside() Entity where intersection is contained in.
Definition intersection.hh:526
int indexInInside(unsigned int parentId=0) const
Local number of codim 1 entity in the inside() Entity where intersection is contained in.
Definition intersection.hh:518
bool self() const
For parallel computations: Return true if inside() entity exists locally.
Definition intersection.hh:501
Dune::GeometryType type() const
Type of reference element for this intersection.
Definition intersection.hh:489
InsideEntity inside(unsigned int parentId=0) const
Return element on the inside of this intersection.
Definition intersection.hh:429
Traits::LocalCoordinate LocalCoordinate
Definition intersection.hh:394
const OutsideLocalGeometry & geometryInOutside(unsigned int parentId=0) const
Geometric information about this intersection in local coordinates of the outside() element.
Definition intersection.hh:461
GlobalCoordinate unitOuterNormal(const LocalCoordinate &local) const
Return a unit outer normal.
Definition intersection.hh:565
Traits::ctype ctype
Definition intersection.hh:389
IntersectionTraits< P0, P1, I, O > Traits
Definition intersection.hh:375
Traits::IntersectionData IntersectionData
Definition intersection.hh:378
Traits::GlobalCoordinate GlobalCoordinate
Definition intersection.hh:395
@ insidePatch
document the inside & outside patch
Definition intersection.hh:404
@ outsidePatch
Definition intersection.hh:405
@ coorddim
Dimension of the world space of the intersection.
Definition intersection.hh:399
@ mydim
Dimension of the intersection.
Definition intersection.hh:401
Traits::OutsideGeometry OutsideGeometry
Definition intersection.hh:386
size_t neighbor(unsigned int g=0) const
Return number of embeddings into local grid0 (grid1) entities.
Definition intersection.hh:507
Intersection(const GridGlue *glue, const IntersectionData *i)
Constructor for a given Dataset.
Definition intersection.hh:421
Traits::Geometry Geometry
Definition intersection.hh:388
OutsideGridView::Traits::template Codim< 0 >::Entity OutsideEntity
Definition intersection.hh:392
OutsideEntity outside(unsigned int parentId=0) const
Return element on the outside of this intersection.
Definition intersection.hh:439
const Geometry & geometry() const
Geometric information about this intersection as part of the inside grid.
Definition intersection.hh:472
Traits::InsideLocalGeometry InsideLocalGeometry
Definition intersection.hh:382
GlobalCoordinate outerNormal(const LocalCoordinate &local) const
Return an outer normal (length not necessarily 1)
Definition intersection.hh:537
const OutsideGeometry & geometryOutside() const
Geometric information about this intersection as part of the outside grid.
Definition intersection.hh:483
Traits::OutsideGridView OutsideGridView
Definition intersection.hh:384
GlobalCoordinate integrationOuterNormal(const LocalCoordinate &local) const
Return an outer normal with the length of the integration element.
Definition intersection.hh:576
Traits::InsideGridView InsideGridView
Definition intersection.hh:381
const InsideLocalGeometry & geometryInInside(unsigned int parentId=0) const
Geometric information about this intersection in local coordinates of the inside() element.
Definition intersection.hh:454
GlobalCoordinate centerUnitOuterNormal() const
Unit outer normal at the center of the intersection.
Definition intersection.hh:585
Definition intersection.hh:248
const IntersectionData< P0, P1 >::Grid0Geometry Geometry
Definition intersection.hh:254
static bool local(const IntersectionData< P0, P1 > &i)
Definition intersection.hh:264
static IndexType parents(const IntersectionData< P0, P1 > &i)
Definition intersection.hh:272
static IndexType index(const IntersectionData< P0, P1 > &i, unsigned int parentId=0)
Definition intersection.hh:268
static Geometry & geometry(const IntersectionData< P0, P1 > &i)
Definition intersection.hh:260
const IntersectionData< P0, P1 >::Grid0IndexType IndexType
Definition intersection.hh:255
const IntersectionData< P0, P1 >::Grid0LocalGeometry LocalGeometry
Definition intersection.hh:253
static LocalGeometry & localGeometry(const IntersectionData< P0, P1 > &i, unsigned int parentId=0)
Definition intersection.hh:256
static LocalGeometry & localGeometry(const IntersectionData< P0, P1 > &i, unsigned int parentId=0)
Definition intersection.hh:284
const IntersectionData< P0, P1 >::Grid1Geometry Geometry
Definition intersection.hh:282
static IndexType parents(const IntersectionData< P0, P1 > &i)
Definition intersection.hh:300
const IntersectionData< P0, P1 >::Grid1LocalGeometry LocalGeometry
Definition intersection.hh:281
static IndexType local(const IntersectionData< P0, P1 > &i)
Definition intersection.hh:292
static Geometry & geometry(const IntersectionData< P0, P1 > &i)
Definition intersection.hh:288
static IndexType index(const IntersectionData< P0, P1 > &i, unsigned int parentId=0)
Definition intersection.hh:296
const IntersectionData< P0, P1 >::Grid1IndexType IndexType
Definition intersection.hh:283
Definition intersection.hh:311
const IntersectionData::Grid0Geometry Geometry
Definition intersection.hh:324
const IntersectionData::Grid1Geometry OutsideGeometry
Definition intersection.hh:325
Dune::FieldVector< ctype, mydim > LocalCoordinate
Definition intersection.hh:335
const IntersectionData::Grid0LocalGeometry InsideLocalGeometry
Definition intersection.hh:322
const IntersectionData::Grid1LocalGeometry OutsideLocalGeometry
Definition intersection.hh:323
GridGlue::Grid1View OutsideGridView
Definition intersection.hh:320
Dune::FieldVector< ctype, coorddim > GlobalCoordinate
Definition intersection.hh:336
GridGlue::ctype ctype
Definition intersection.hh:334
::Dune::GridGlue::GridGlue< P0, P1 > GridGlue
Definition intersection.hh:316
Dune::GridGlue::IntersectionData< P0, P1 > IntersectionData
Definition intersection.hh:317
GridGlue::Grid0View InsideGridView
Definition intersection.hh:319
GridGlue::Grid0View OutsideGridView
Definition intersection.hh:346
const IntersectionData::Grid0Geometry OutsideGeometry
Definition intersection.hh:351
GridGlue::ctype ctype
Definition intersection.hh:362
Dune::FieldVector< ctype, coorddim > GlobalCoordinate
Definition intersection.hh:364
const IntersectionData::Grid0LocalGeometry OutsideLocalGeometry
Definition intersection.hh:349
const IntersectionData::Grid1Geometry Geometry
Definition intersection.hh:350
GridGlue::Grid1View InsideGridView
Definition intersection.hh:345
const IntersectionData::Grid1LocalGeometry InsideLocalGeometry
Definition intersection.hh:348
Dune::FieldVector< ctype, mydim > LocalCoordinate
Definition intersection.hh:363
Dune::GridGlue::IntersectionData< P0, P1 > IntersectionData
Definition intersection.hh:343
::Dune::GridGlue::GridGlue< P0, P1 > GridGlue
Definition intersection.hh:342
const IntersectionData::Grid1IndexType InsideIndexType
Definition intersection.hh:352
const IntersectionData::Grid0IndexType OutsideIndexType
Definition intersection.hh:353