DUNE-GRID-GLUE (2.10)
gridglue.hh
Go to the documentation of this file.
3// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-GPL-2.0-only-with-dune-grid-glue-exception
166 static constexpr int dimworld = (int)griddimworld<0>() > (int)griddimworld<1>() ? (int)griddimworld<0>() : (int)griddimworld<1>();
182 using GridVertex = typename GridView<side>::Traits::template Codim<Grid<side>::dimension>::Entity;
213 using Grid0IntersectionIterator [[deprecated("please use IntersectionIterator<0> instead")]] = IntersectionIterator<0>;
216 using Grid1IntersectionIterator [[deprecated("please use IntersectionIterator<1> instead")]] = IntersectionIterator<1>;
302 GridGlue(const std::shared_ptr< const GridPatch<0> >& gp0, const std::shared_ptr< const GridPatch<1> >& gp1, const std::shared_ptr<Merger>& merger);
describes the features of a data handle for communication in parallel runs using the GridGlue::commun...
Definition: gridgluecommunicate.hh:77
Provides codimension-independent methods for grid extraction.
Definition: extractor.hh:46
sequential adapter to couple two grids at specified close together boundaries
Definition: gridglue.hh:67
Dune::FieldVector< ctype, dimworld > Coords
The type used for coordinate vectors.
Definition: gridglue.hh:174
GridVertex< 1 > Grid1Vertex
The type of the Grid1 vertices.
Definition: gridglue.hh:194
Dune::GridGlue::IntersectionIndexSet< P0, P1 > IndexSet
Type of remote intersection indexSet.
Definition: gridglue.hh:206
PromotionTraits< typenameGridView< 0 >::ctype, typenameGridView< 1 >::ctype >::PromotedType ctype
The type used for coordinates.
Definition: gridglue.hh:171
void mergePatches(const std::vector< Dune::FieldVector< ctype, dimworld > > &patch0coords, const std::vector< unsigned int > &patch0entities, const std::vector< Dune::GeometryType > &patch0types, const int patch0rank, const std::vector< Dune::FieldVector< ctype, dimworld > > &patch1coords, const std::vector< unsigned int > &patch1entities, const std::vector< Dune::GeometryType > &patch1types, const int patch1rank)
after building the merged grid the intersection can be updated through this method (for internal use)
Definition: gridglue.cc:179
Dune::GridGlue::Intersection< P0, P1, 0, 1 > Intersection
Type of remote intersection objects.
Definition: gridglue.hh:203
GridElement< 0 > Grid0Element
The type of the Grid0 elements.
Definition: gridglue.hh:185
void communicate(Dune::GridGlue::CommDataHandle< DataHandleImp, DataTypeImp > &data, Dune::InterfaceType iftype, Dune::CommunicationDirection dir) const
Communicate information on the MergedGrid of a GridGlue.
Definition: gridglue.cc:300
GridView< 0 > Grid0View
GridView of grid 0 (aka domain grid)
Definition: gridglue.hh:107
static constexpr int dimworld
export the world dimension This is the maximum of the extractors' world dimensions.
Definition: gridglue.hh:166
GridGlue(const std::shared_ptr< const GridPatch< 0 > > &gp0, const std::shared_ptr< const GridPatch< 1 > > &gp1, const std::shared_ptr< Merger > &merger)
constructor
Definition: gridglue.cc:21
IntersectionIterator< I > iend() const
gets the (general) end-iterator for grid glue iterations
Definition: gridglue.hh:350
Dune::GridGlue::Merger< ctype, Grid< 0 >::dimension - GridPatch< 0 >::codim, Grid< 1 >::dimension - GridPatch< 1 >::codim, dimworld > Merger
Instance of a Merger.
Definition: gridglue.hh:200
GridView< 1 > Grid1View
GridView of grid 1 (aka target grid)
Definition: gridglue.hh:138
GridPatch< 1 > Grid1Patch
Coupling patch of grid 1.
Definition: gridglue.hh:144
static constexpr auto grid0dim
dimension of the grid 0 extractor
Definition: gridglue.hh:125
const GridView< P > & gridView() const
getter for the GridView of patch P
Definition: gridglue.hh:318
static constexpr auto grid1dim
dimension of the grid 1 extractor
Definition: gridglue.hh:151
GridPatch< 0 > Grid0Patch
Coupling patch of grid 0.
Definition: gridglue.hh:113
static constexpr auto grid1dimworld
world dimension of the grid 1 extractor
Definition: gridglue.hh:158
static constexpr auto grid0dimworld
world dimension of the grid 0 extractor
Definition: gridglue.hh:132
IntersectionIterator< I > ibegin() const
gets an iterator over all remote intersections in the merged grid between grid0 and grid1
Definition: gridglue.hh:337
GridVertex< 0 > Grid0Vertex
The type of the Grid0 vertices.
Definition: gridglue.hh:188
typename GridPatch< side >::GridView GridView
Definition: gridglue.hh:100
std::conditional_t< side==0, P0, std::conditional_t< side==1, P1, void > > GridPatch
Definition: gridglue.hh:96
typename GridView< side >::Traits::template Codim< Grid< side >::dimension >::Entity GridVertex
type of grid vertices on side side
Definition: gridglue.hh:182
typename GridView< side >::Traits::template Codim< 0 >::Entity GridElement
type of grid elements on side side
Definition: gridglue.hh:178
GridElement< 1 > Grid1Element
The type of the Grid1 elements.
Definition: gridglue.hh:191
storage class for Dune::GridGlue::Intersection related data
Definition: intersection.hh:38
Definition: intersectioniterator.hh:25
The intersection of two entities of the two patches of a GridGlue.
Definition: intersection.hh:257
Abstract base for all classes that take extracted grids and build sets of intersections.
Definition: merger.hh:27
Describes the parallel communication interface class for Dune::GridGlue.
Model of the Intersection concept provided by GridGlue.
Implement iterators over GridGlue intersections.
