20 #ifndef DUNE_GRIDGLUE_EXTRACTORS_EXTRACTOR_HH
21 #define DUNE_GRIDGLUE_EXTRACTORS_EXTRACTOR_HH
26 #include <dune/common/exceptions.hh>
27 #include <dune/common/fvector.hh>
28 #include <dune/common/version.hh>
29 #include <dune/grid/common/geometry.hh>
30 #include <dune/grid/common/grid.hh>
31 #include <dune/grid/common/mcmgmapper.hh>
32 #include <dune/geometry/multilineargeometry.hh>
44 template<
typename GV,
int cd>
50 static constexpr
auto dimworld = GV::dimensionworld;
51 static constexpr
auto dim = GV::dimension;
52 static constexpr
auto codim = cd;
57 typedef typename GridView::Grid
Grid;
59 typedef typename GV::Grid::ctype
ctype;
60 typedef Dune::FieldVector<ctype, dimworld>
Coords;
63 typedef typename GV::Traits::template Codim<dim>::Entity
Vertex;
66 typedef typename GV::Traits::template Codim<0>::Entity
Element;
71 #if DUNE_VERSION_NEWER(DUNE_GRID, 2, 6)
72 using CellMapper = MultipleCodimMultipleGeomTypeMapper<GridView>;
74 using CellMapper = MultipleCodimMultipleGeomTypeMapper<GridView, MCMGElementLayout>;
93 unsigned int idx : 28;
157 #if DUNE_VERSION_NEWER(DUNE_GEOMETRY, 2, 6)
167 const Dune::GeometryType& geometryType)
237 #if DUNE_VERSION_NEWER(DUNE_GRID, 2, 6)
254 std::vector<CoordinateInfo> dummy;
258 std::vector<SubEntityInfo> dummy;
275 void getCoords(std::vector<Dune::FieldVector<ctype, dimworld> >& coords)
const
278 for (
unsigned int i = 0; i <
coords_.size(); ++i)
304 void getFaces(std::vector<VertexVector>& faces)
const
307 for (
unsigned int i = 0; i <
subEntities_.size(); ++i) {
309 for (
unsigned int j = 0; j <
subEntities_[i].nCorners(); ++j)
325 typename ElementInfoMap::const_iterator it =
334 first = it->second.idx;
335 count = it->second.faces;
383 DUNE_THROW(Dune::GridError,
"invalid face index");
385 return grid().entity(seed);
399 DUNE_THROW(Dune::GridError,
"invalid coordinate index");
401 return grid().entity(seed);
415 template<
typename GV,
int cd>
418 std::vector<Coords> corners(subEntities_[index].nCorners());
419 for (
unsigned int i = 0; i < subEntities_[index].nCorners(); ++i)
420 corners[i] = coords_[subEntities_[index].corners[i].idx].coord;
422 return Geometry(subEntities_[index].geometryType_, corners);
427 template<
typename GV,
int cd>
430 std::vector<LocalCoords> corners(subEntities_[index].nCorners());
434 Dune::GeometryType facetype = subEntities_[index].
geometryType_;
437 const auto elmtseed = elmtInfo_.at(face.
parent).p;
438 const auto elmt = grid().entity(elmtseed);
439 const Dune::GeometryType celltype = elmt.type();
440 const auto& re = Dune::ReferenceElements<ctype, dim>::general(celltype);
441 for (
unsigned int i = 0; i < subEntities_[index].nCorners(); ++i)
442 corners[i] = re.position(face.
corners[i].
num,dim);
Definition: gridglue.hh:37
Provides codimension-independent methods for grid extraction.
Definition: extractor.hh:46
GV::Traits::template Codim< dim >::Entity Vertex
Definition: extractor.hh:63
VertexInfoMap vtxInfo_
a map enabling faster access to vertices and coordinates
Definition: extractor.hh:216
MultipleCodimMultipleGeomTypeMapper< GridView, MCMGElementLayout > CellMapper
Definition: extractor.hh:74
Element element(unsigned int index) const
gets the parent element for a given face index, throws an exception if index not valid
Definition: extractor.hh:380
int indexInInside(unsigned int index) const
gets the number face in the parent element
Definition: extractor.hh:345
Dune::FieldVector< ctype, dim > LocalCoords
Definition: extractor.hh:61
LocalGeometry geometryLocal(unsigned int index) const
Get geometry of the extracted face in element coordinates.
Definition: extractor.hh:428
static constexpr auto dimworld
Definition: extractor.hh:50
const GridView & gridView() const
give access to the Dune::GridView where this Patch belongs to
Definition: extractor.hh:363
Dune::MultiLinearGeometry< ctype, dim-codim, dimworld > Geometry
Definition: extractor.hh:81
int IndexType
Definition: extractor.hh:77
std::vector< CoordinateInfo > coords_
all information about the corner vertices of the extracted
Definition: extractor.hh:206
GV::Traits::template Codim< 0 >::Entity Element
Definition: extractor.hh:66
void getFaces(std::vector< VertexVector > &faces) const
Get the corners of the extracted subentities.
Definition: extractor.hh:304
std::vector< unsigned int > VertexVector
Definition: extractor.hh:69
const GridView gv_
the grid object to extract the surface from
Definition: extractor.hh:201
std::vector< SubEntityInfo > subEntities_
all information about the extracted subEntities
Definition: extractor.hh:209
static constexpr int cube_corners
Definition: extractor.hh:54
Vertex vertex(unsigned int index) const
gets the vertex for a given coordinate index throws an exception if index not valid
Definition: extractor.hh:396
static constexpr auto codim
Definition: extractor.hh:52
Dune::FieldVector< ctype, dimworld > Coords
Definition: extractor.hh:60
void getGeometryTypes(std::vector< Dune::GeometryType > &geometryTypes) const
Get the list of geometry types.
Definition: extractor.hh:293
std::map< IndexType, VertexInfo > VertexInfoMap
Definition: extractor.hh:196
GridView::Grid Grid
Definition: extractor.hh:57
bool faceIndices(const Element &e, int &first, int &count) const
gets index of first subentity as well as the total number of subentities that were extracted from thi...
Definition: extractor.hh:323
Geometry geometry(unsigned int index) const
Get world geometry of the extracted face.
Definition: extractor.hh:416
GV GridView
Definition: extractor.hh:56
unsigned int nCoords() const
getter for the count of coordinates
Definition: extractor.hh:287
GV::Grid::ctype ctype
Definition: extractor.hh:59
std::map< IndexType, ElementInfo > ElementInfoMap
Definition: extractor.hh:195
Extractor(const GV &gv)
Constructor.
Definition: extractor.hh:235
void getCoords(std::vector< Dune::FieldVector< ctype, dimworld > > &coords) const
getter for the coordinates array
Definition: extractor.hh:275
CellMapper cellMapper_
Definition: extractor.hh:225
Element::EntitySeed ElementSeed
Definition: extractor.hh:67
const Grid & grid() const
Definition: extractor.hh:368
Vertex::EntitySeed VertexSeed
Definition: extractor.hh:64
ElementInfoMap elmtInfo_
a map enabling faster access to elements and faces
Definition: extractor.hh:223
void clear()
delete everything build up so far and free the memory
Definition: extractor.hh:249
static constexpr auto dim
Definition: extractor.hh:51
Dune::MultiLinearGeometry< ctype, dim-codim, dim > LocalGeometry
Definition: extractor.hh:82
Helpful struct holding one index for the coordinate (vertex) to which it is associated and the elemen...
Definition: extractor.hh:92
unsigned int idx
index of the vertex
Definition: extractor.hh:93
unsigned int num
element corner
Definition: extractor.hh:94
Definition: extractor.hh:98
CoordinateInfo(unsigned int index_, IndexType vtxindex_)
Definition: extractor.hh:102
unsigned int index
the index of this coordinate (in internal storage scheme) // NEEDED??
Definition: extractor.hh:113
CoordinateInfo()
Definition: extractor.hh:99
Coords coord
the coordinate
Definition: extractor.hh:110
IndexType vtxindex
the index of the parent element (from index set)
Definition: extractor.hh:107
simple struct holding a vertex pointer and an index
Definition: extractor.hh:120
unsigned int idx
Definition: extractor.hh:123
VertexInfo(unsigned int idx_, const Vertex &p_)
Definition: extractor.hh:121
VertexSeed p
Definition: extractor.hh:124
simple struct holding an element seed and an index
Definition: extractor.hh:132
unsigned int idx
the index of this element's first face in the internal list of extracted faces
Definition: extractor.hh:137
unsigned int faces
the number of extracted faces for this element
Definition: extractor.hh:140
ElementInfo(unsigned int idx_, const Element &p_, unsigned int f_)
Definition: extractor.hh:133
ElementSeed p
the entity seed for the element
Definition: extractor.hh:143
Holds some information about an element's subentity involved in a coupling.
Definition: extractor.hh:151
unsigned int nCorners() const
Definition: extractor.hh:171
CornerInfo corners[cube_corners]
the corner indices plus the numbers of the vertices in the parent element
Definition: extractor.hh:191
IndexType parent
the index of the parent element (from index set)
Definition: extractor.hh:177
SubEntityInfo(IndexType parent_, unsigned int num_in_parent_, const Dune::GeometryType &geometryType)
Definition: extractor.hh:166
unsigned int num_in_parent
the number of the face in the parent element
Definition: extractor.hh:180
Dune::GeometryType geometryType_
The GeometryType of the subentity.
Definition: extractor.hh:183
SubEntityInfo()
Definition: extractor.hh:152