13#ifndef DUMUX_DISCRETIZATION_PQ1BUBBLE_GEOMETRY_HELPER_HH
14#define DUMUX_DISCRETIZATION_PQ1BUBBLE_GEOMETRY_HELPER_HH
18#include <dune/common/exceptions.hh>
20#include <dune/geometry/type.hh>
21#include <dune/geometry/referenceelements.hh>
22#include <dune/geometry/multilineargeometry.hh>
23#include <dune/common/reservedvector.hh>
37 template<
int mydim,
int cdim >
40 using Type = Dune::ReservedVector< Dune::FieldVector< ct, cdim >, (1<<mydim)+1>;
46template<Dune::GeometryType::Id gt>
52 using Key = std::pair<std::uint8_t, std::uint8_t>;
53 static constexpr std::array<std::array<Key, 2>, 1> keys = {{
61 using Key = std::pair<std::uint8_t, std::uint8_t>;
62 static constexpr std::array<std::array<Key, 3>, 1> keys = {{
70 using Key = std::pair<std::uint8_t, std::uint8_t>;
71 static constexpr std::array<std::array<Key, 4>, 1> keys = {{
79 using Key = std::pair<std::uint8_t, std::uint8_t>;
80 static constexpr std::array<std::array<Key, 4>, 1> keys = {{
88 using Key = std::pair<std::uint8_t, std::uint8_t>;
89 static constexpr std::array<std::array<Key, 6>, 1> keys = {{
90 {
Key{0, 1},
Key{2, 1},
Key{3, 1},
Key{1, 1},
Key{4, 1},
Key{5, 1} }
95template<Dune::GeometryType::Id gt>
101 using Key = std::pair<std::uint8_t, std::uint8_t>;
102 static constexpr std::array<std::array<Key, 1>, 1> keys = {{
110 using Key = std::pair<std::uint8_t, std::uint8_t>;
111 static constexpr std::array<std::array<Key, 2>, 3> keys = {{
121 using Key = std::pair<std::uint8_t, std::uint8_t>;
122 static constexpr std::array<std::array<Key, 2>, 4> keys = {{
133 using Key = std::pair<std::uint8_t, std::uint8_t>;
134 static constexpr std::array<std::array<Key, 3>, 10> keys = {{
145 using Key = std::pair<std::uint8_t, std::uint8_t>;
146 static constexpr std::array<std::array<Key, 3>, 8> keys = {{
164template <
class Gr
idView,
class ScvType,
class ScvfType>
167 using Scalar =
typename GridView::ctype;
168 using GlobalPosition =
typename Dune::FieldVector<Scalar, GridView::dimensionworld>;
169 using ScvCornerStorage =
typename ScvType::Traits::CornerStorage;
170 using ScvfCornerStorage =
typename ScvfType::Traits::CornerStorage;
171 using LocalIndexType =
typename ScvType::Traits::LocalIndexType;
173 using Element =
typename GridView::template Codim<0>::Entity;
174 using Intersection =
typename GridView::Intersection;
176 static constexpr auto dim = GridView::dimension;
177 static constexpr auto dimWorld = GridView::dimensionworld;
182 , boxHelper_(geometry)
189 const auto type = geo_.type();
190 const auto numBoxScv = boxHelper_.numScv();
192 if (localScvIdx < numBoxScv)
193 return boxHelper_.getScvCorners(localScvIdx);
195 const auto localOverlappingScvIdx = localScvIdx-numBoxScv;
196 if (type == Dune::GeometryTypes::triangle)
199 return Detail::Box::keyToCornerStorage<ScvCornerStorage>(geo_, Corners::keys[localOverlappingScvIdx]);
201 else if (type == Dune::GeometryTypes::quadrilateral)
204 return Detail::Box::keyToCornerStorage<ScvCornerStorage>(geo_, Corners::keys[localOverlappingScvIdx]);
206 else if (type == Dune::GeometryTypes::tetrahedron)
209 return Detail::Box::keyToCornerStorage<ScvCornerStorage>(geo_, Corners::keys[localOverlappingScvIdx]);
211 else if (type == Dune::GeometryTypes::hexahedron)
214 return Detail::Box::keyToCornerStorage<ScvCornerStorage>(geo_, Corners::keys[localOverlappingScvIdx]);
217 DUNE_THROW(Dune::NotImplemented,
"PQ1Bubble scv geometries for dim=" << dim
218 <<
" dimWorld=" << dimWorld
219 <<
" type=" << type);
225 const auto type = geo_.type();
226 const auto numBoxScv = boxHelper_.numScv();
227 if (localScvIdx < numBoxScv)
228 return Dune::GeometryTypes::cube(dim);
229 else if (type == Dune::GeometryTypes::simplex(dim))
230 return Dune::GeometryTypes::simplex(dim);
231 else if (type == Dune::GeometryTypes::quadrilateral)
232 return Dune::GeometryTypes::quadrilateral;
233 else if (type == Dune::GeometryTypes::hexahedron)
236 DUNE_THROW(Dune::NotImplemented,
"PQ1Bubble scv geometries for dim=" << dim
237 <<
" dimWorld=" << dimWorld
238 <<
" type=" << type);
245 const auto type = geo_.type();
246 const auto numBoxScvf = boxHelper_.numInteriorScvf();
248 if (localScvfIdx < numBoxScvf)
249 return boxHelper_.getScvfCorners(localScvfIdx);
251 const auto localOverlappingScvfIdx = localScvfIdx-numBoxScvf;
252 if (type == Dune::GeometryTypes::triangle)
255 return Detail::Box::keyToCornerStorage<ScvfCornerStorage>(geo_, Corners::keys[localOverlappingScvfIdx]);
257 else if (type == Dune::GeometryTypes::quadrilateral)
260 return Detail::Box::keyToCornerStorage<ScvfCornerStorage>(geo_, Corners::keys[localOverlappingScvfIdx]);
262 else if (type == Dune::GeometryTypes::tetrahedron)
265 return Detail::Box::keyToCornerStorage<ScvfCornerStorage>(geo_, Corners::keys[localOverlappingScvfIdx]);
267 else if (type == Dune::GeometryTypes::hexahedron)
270 return Detail::Box::keyToCornerStorage<ScvfCornerStorage>(geo_, Corners::keys[localOverlappingScvfIdx]);
273 DUNE_THROW(Dune::NotImplemented,
"PQ1Bubble scvf geometries for dim=" << dim
274 <<
" dimWorld=" << dimWorld
275 <<
" type=" << type);
280 const auto numBoxScvf = boxHelper_.numInteriorScvf();
281 if (localScvfIdx < numBoxScvf)
282 return Dune::GeometryTypes::cube(dim-1);
284 return Dune::GeometryTypes::simplex(dim-1);
289 unsigned int indexInFacet)
const
291 return boxHelper_.getBoundaryScvfCorners(localFacetIndex, indexInFacet);
294 template<
int d = dimWorld, std::enable_if_t<(d==3),
int> = 0>
295 GlobalPosition
normal(
const ScvfCornerStorage& p,
const std::array<LocalIndexType, 2>& scvPair)
309 template<
int d = dimWorld, std::enable_if_t<(d==2),
int> = 0>
310 GlobalPosition
normal(
const ScvfCornerStorage& p,
const std::array<LocalIndexType, 2>& scvPair)
313 const auto t = p[1] - p[0];
314 GlobalPosition
normal({-t[1], t[0]});
333 return boxHelper_.numInteriorScvf() + referenceElement(geo_).size(dim);
339 return referenceElement(geo_).size(localFacetIndex, 1, dim);
345 return boxHelper_.numScv() + 1;
349 Scalar
scvVolume(
unsigned int localScvIdx,
const ScvCornerStorage& p)
const
352 if constexpr (dim == 3)
354 return octahedronVolume_(p);
356 return Dumux::convexPolytopeVolume<dim>(
358 [&](
unsigned int i){
return p[i]; }
362 template<
class DofMapper>
363 auto dofIndex(
const DofMapper& dofMapper,
const Element& element,
unsigned int localScvIdx)
const
365 if (localScvIdx <
numScv()-1)
366 return dofMapper.subIndex(element, localScvIdx, dim);
368 return dofMapper.index(element);
373 if (localScvIdx <
numScv()-1)
374 return geo_.corner(localScvIdx);
376 return geo_.center();
381 const auto numEdges = referenceElement(geo_).size(dim-1);
382 if (localScvfIndex < numEdges)
384 static_cast<LocalIndexType
>(referenceElement(geo_).subEntity(localScvfIndex, dim-1, 0, dim)),
385 static_cast<LocalIndexType
>(referenceElement(geo_).subEntity(localScvfIndex, dim-1, 1, dim))
389 static_cast<LocalIndexType
>(
numScv()-1),
390 static_cast<LocalIndexType
>(localScvfIndex-numEdges)
396 const LocalIndexType insideScvIdx
397 =
static_cast<LocalIndexType
>(referenceElement(geo_).subEntity(localFacetIndex, 1, localIsScvfIndex, dim));
398 return { insideScvIdx, insideScvIdx };
403 if (localScvfIndex < boxHelper_.numInteriorScvf())
411 if (localScvIndex < boxHelper_.numScv())
418 Scalar octahedronVolume_(
const ScvCornerStorage& p)
const
427 const typename Element::Geometry& geo_;
Helper class constructing the dual grid finite volume geometries for the box discretizazion method.
Create sub control volumes and sub control volume face geometries.
Definition: boxgeometryhelper.hh:257
A class to create sub control volume and sub control volume face geometries per element.
Definition: discretization/pq1bubble/geometryhelper.hh:166
PQ1BubbleGeometryHelper(const typename Element::Geometry &geometry)
Definition: discretization/pq1bubble/geometryhelper.hh:180
bool isOverlappingScvf(unsigned int localScvfIndex) const
Definition: discretization/pq1bubble/geometryhelper.hh:401
auto dofIndex(const DofMapper &dofMapper, const Element &element, unsigned int localScvIdx) const
Definition: discretization/pq1bubble/geometryhelper.hh:363
std::size_t numScv() const
number of sub control volumes (number of codim-1 entities)
Definition: discretization/pq1bubble/geometryhelper.hh:343
std::size_t numBoundaryScvf(unsigned int localFacetIndex) const
number of boundary sub control volume faces for face localFacetIndex
Definition: discretization/pq1bubble/geometryhelper.hh:337
std::size_t numInteriorScvf() const
number of interior sub control volume faces
Definition: discretization/pq1bubble/geometryhelper.hh:331
ScvfCornerStorage getBoundaryScvfCorners(unsigned int localFacetIndex, unsigned int indexInFacet) const
Create the sub control volume face geometries on the boundary.
Definition: discretization/pq1bubble/geometryhelper.hh:288
GlobalPosition dofPosition(unsigned int localScvIdx) const
Definition: discretization/pq1bubble/geometryhelper.hh:371
std::array< LocalIndexType, 2 > getScvPairForScvf(unsigned int localScvfIndex) const
Definition: discretization/pq1bubble/geometryhelper.hh:379
Dune::GeometryType getInteriorScvfGeometryType(unsigned int localScvfIdx) const
Definition: discretization/pq1bubble/geometryhelper.hh:278
bool isOverlappingScv(unsigned int localScvIndex) const
Definition: discretization/pq1bubble/geometryhelper.hh:409
Scalar scvVolume(unsigned int localScvIdx, const ScvCornerStorage &p) const
get scv volume
Definition: discretization/pq1bubble/geometryhelper.hh:349
const Element::Geometry & elementGeometry() const
the wrapped element geometry
Definition: discretization/pq1bubble/geometryhelper.hh:327
ScvfCornerStorage getScvfCorners(unsigned int localScvfIdx) const
Create a vector with the corners of sub control volume faces.
Definition: discretization/pq1bubble/geometryhelper.hh:242
std::array< LocalIndexType, 2 > getScvPairForBoundaryScvf(unsigned int localFacetIndex, unsigned int localIsScvfIndex) const
Definition: discretization/pq1bubble/geometryhelper.hh:394
GlobalPosition normal(const ScvfCornerStorage &p, const std::array< LocalIndexType, 2 > &scvPair)
Definition: discretization/pq1bubble/geometryhelper.hh:295
ScvCornerStorage getScvCorners(unsigned int localScvIdx) const
Create a vector with the scv corners.
Definition: discretization/pq1bubble/geometryhelper.hh:186
Dune::GeometryType getScvGeometryType(unsigned int localScvIdx) const
Definition: discretization/pq1bubble/geometryhelper.hh:222
Dune::FieldVector< Scalar, 3 > crossProduct(const Dune::FieldVector< Scalar, 3 > &vec1, const Dune::FieldVector< Scalar, 3 > &vec2)
Cross product of two vectors in three-dimensional Euclidean space.
Definition: math.hh:642
Scalar tripleProduct(const Dune::FieldVector< Scalar, 3 > &vec1, const Dune::FieldVector< Scalar, 3 > &vec2, const Dune::FieldVector< Scalar, 3 > &vec3)
Triple product of three vectors in three-dimensional Euclidean space retuning scalar.
Definition: math.hh:671
Define some often used mathematical functions.
constexpr None none
Definition: method.hh:153
CVFE< CVFEMethods::PQ1Bubble > PQ1Bubble
Definition: method.hh:108
constexpr Line line
Definition: couplingmanager1d3d_line.hh:31
Definition: common/pdesolver.hh:24
Definition: discretization/pq1bubble/geometryhelper.hh:87
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:88
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:52
Definition: discretization/pq1bubble/geometryhelper.hh:69
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:70
Definition: discretization/pq1bubble/geometryhelper.hh:78
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:79
Definition: discretization/pq1bubble/geometryhelper.hh:60
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:61
Definition: discretization/pq1bubble/geometryhelper.hh:47
Definition: discretization/pq1bubble/geometryhelper.hh:144
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:145
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:101
Definition: discretization/pq1bubble/geometryhelper.hh:120
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:121
Definition: discretization/pq1bubble/geometryhelper.hh:132
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:133
Definition: discretization/pq1bubble/geometryhelper.hh:109
std::pair< std::uint8_t, std::uint8_t > Key
Definition: discretization/pq1bubble/geometryhelper.hh:110
Definition: discretization/pq1bubble/geometryhelper.hh:96
Definition: discretization/pq1bubble/geometryhelper.hh:39
Dune::ReservedVector< Dune::FieldVector< ct, cdim >,(1<< mydim)+1 > Type
Definition: discretization/pq1bubble/geometryhelper.hh:40
Traits for an efficient corner storage for the PQ1Bubble method.
Definition: discretization/pq1bubble/geometryhelper.hh:34
Compute the volume of several common geometry types.