diff --git a/dumux/discretization/pq1bubble/fvgridgeometry.hh b/dumux/discretization/pq1bubble/fvgridgeometry.hh index c8bd0df6275fedefaccaaff3a3da07dd27788d58..3f694fc5a75cdb9e37bfc8961ed9e215ee7b38da 100644 --- a/dumux/discretization/pq1bubble/fvgridgeometry.hh +++ b/dumux/discretization/pq1bubble/fvgridgeometry.hh @@ -349,7 +349,8 @@ private: intersection.centerUnitOuterNormal(), std::move(scvPair), scvfLocalIdx, - typename SubControlVolumeFace::Traits::BoundaryFlag{ intersection } + typename SubControlVolumeFace::Traits::BoundaryFlag{ intersection }, + geometryHelper.isOverlappingBoundaryScvf(localFacetIndex) ); // store look-up map to construct boundary scvf geometries diff --git a/dumux/discretization/pq1bubble/geometryhelper.hh b/dumux/discretization/pq1bubble/geometryhelper.hh index 966e6366f117a62e3fdf3d5c810204a1b11e9430..843c93b4f860b668c152b6d4a234cb70941d1b84 100644 --- a/dumux/discretization/pq1bubble/geometryhelper.hh +++ b/dumux/discretization/pq1bubble/geometryhelper.hh @@ -406,6 +406,11 @@ public: return true; } + bool isOverlappingBoundaryScvf(unsigned int localFacetIndex) const + { + return false; + } + bool isOverlappingScv(unsigned int localScvIndex) const { if (localScvIndex < boxHelper_.numScv())