21#ifndef DUNE_GRIDGLUE_MERGING_CONFORMINGMERGE_HH
22#define DUNE_GRIDGLUE_MERGING_CONFORMINGMERGE_HH
29#include <dune/common/fmatrix.hh>
30#include <dune/common/fvector.hh>
32#include <dune/geometry/referenceelements.hh>
46template<
int dim,
int dimworld,
typename T =
double>
71 typedef typename StandardMerge<T,dim,dim,dimworld>::SimplicialIntersection SimplicialIntersection;
77 void computeIntersections(
const Dune::GeometryType& grid1ElementType,
78 const std::vector<Dune::FieldVector<T,dimworld> >& grid1ElementCorners,
79 std::bitset<(1<<dim)>& neighborIntersects1,
80 unsigned int grid1Index,
81 const Dune::GeometryType& grid2ElementType,
82 const std::vector<Dune::FieldVector<T,dimworld> >& grid2ElementCorners,
83 std::bitset<(1<<dim)>& neighborIntersects2,
84 unsigned int grid2Index,
85 std::vector<SimplicialIntersection>& intersections);
89 static constexpr T default_tolerance = 1e-4;
96template<
int dim,
int dimworld,
typename T>
97constexpr T ConformingMerge<dim, dimworld, T>::default_tolerance;
99template<
int dim,
int dimworld,
typename T>
100void ConformingMerge<dim, dimworld, T>::computeIntersections(
const Dune::GeometryType& grid1ElementType,
101 const std::vector<Dune::FieldVector<T,dimworld> >& grid1ElementCorners,
102 std::bitset<(1<<dim)>& neighborIntersects1,
103 unsigned int grid1Index,
104 const Dune::GeometryType& grid2ElementType,
105 const std::vector<Dune::FieldVector<T,dimworld> >& grid2ElementCorners,
106 std::bitset<(1<<dim)>& neighborIntersects2,
107 unsigned int grid2Index,
108 std::vector<SimplicialIntersection>& intersections)
113 assert((
unsigned int)(Dune::ReferenceElements<T,dim>::general(grid1ElementType).size(dim)) == grid1ElementCorners.size());
114 assert((
unsigned int)(Dune::ReferenceElements<T,dim>::general(grid2ElementType).size(dim)) == grid2ElementCorners.size());
116 neighborIntersects1.reset();
117 neighborIntersects2.reset();
120 if (grid1ElementType != grid2ElementType)
126 std::vector<int> other(grid1ElementCorners.size(), -1);
128 for (
unsigned int i=0; i<grid1ElementCorners.size(); i++) {
130 for (
unsigned int j=0; j<grid2ElementCorners.size(); j++) {
132 if ( (grid1ElementCorners[i]-grid2ElementCorners[j]).two_norm() < tolerance_ ) {
151 const auto& refElement = Dune::ReferenceElements<T,dim>::general(grid1ElementType);
154 if (grid1ElementType.isSimplex()) {
156 intersections.emplace_back(grid1Index, grid2Index);
158 for (
int i=0; i<refElement.size(dim); i++) {
159 intersections.back().corners0[0][i] = refElement.position(i,dim);
160 intersections.back().corners1[0][i] = refElement.position(other[i],dim);
163 }
else if (dim == 2 && grid1ElementType.isQuadrilateral()) {
166 const unsigned int subVertices[2][3] = {{0,1,3}, {0,3,2}};
168 for (
int i=0; i<2; i++) {
170 SimplicialIntersection newSimplicialIntersection(grid1Index, grid2Index);
172 for (
int j=0; j<dim+1; j++) {
173 newSimplicialIntersection.corners0[0][j] = refElement.position(subVertices[i][j],dim);
174 newSimplicialIntersection.corners1[0][j] = refElement.position(subVertices[i][other[j]],dim);
177 intersections.push_back(newSimplicialIntersection);
181 }
else if (grid1ElementType.isHexahedron()) {
185 const unsigned int subVertices[5][4] = {{0,1,3,5}, {0,3,2,6}, {4,5,0,6}, {6,7,6,3}, {6,0,5,3}};
187 for (
int i=0; i<5; i++) {
189 SimplicialIntersection newSimplicialIntersection(grid1Index, grid2Index);
191 for (
int j=0; j<dim+1; j++) {
192 newSimplicialIntersection.corners0[0][j] = refElement.position(subVertices[i][j],dim);
193 newSimplicialIntersection.corners1[0][j] = refElement.position(subVertices[i][other[j]],dim);
196 intersections.push_back(newSimplicialIntersection);
201 DUNE_THROW(Dune::GridError,
"Unsupported element type");
Common base class for many merger implementations: produce pairs of entities that may intersect.
Definition: standardmerge.hh:58
Common base class for many merger implementations: produce pairs of entities that may intersect.