GCC Code Coverage Report


Directory: ../../../builds/dumux-repositories/
File: dumux/dumux/porousmediumflow/boxdfm/subcontrolvolume.hh
Date: 2025-04-12 19:19:20
Exec Total Coverage
Lines: 52 52 100.0%
Functions: 10 10 100.0%
Branches: 56 74 75.7%

Line Branch Exec Source
1 // -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 // vi: set et ts=4 sw=4 sts=4:
3 //
4 // SPDX-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5 // SPDX-License-Identifier: GPL-3.0-or-later
6 //
7 /*!
8 * \file
9 * \ingroup BoxDFMModel
10 * \brief the sub control volume for the box discrete fracture scheme
11 */
12
13 #ifndef DUMUX_POROUSMEDIUMFLOW_BOXDFM_SUBCONTROLVOLUME_HH
14 #define DUMUX_POROUSMEDIUMFLOW_BOXDFM_SUBCONTROLVOLUME_HH
15
16 #include <dune/common/reservedvector.hh>
17 #include <dune/geometry/type.hh>
18 #include <dune/geometry/multilineargeometry.hh>
19
20 #include <dumux/discretization/subcontrolvolumebase.hh>
21 #include <dumux/porousmediumflow/boxdfm/geometryhelper.hh>
22 #include <dumux/common/math.hh>
23 #include <dumux/geometry/volume.hh>
24
25 namespace Dumux {
26
27 /*!
28 * \ingroup BoxDFMModel
29 * \brief Default traits class to be used for the sub-control volumes
30 * for the box discrete fracture scheme
31 *
32 * \tparam GV the type of the grid view
33 *
34 * \note We define new traits for the box-dfm sub-control volume face
35 * as we use a different type of container for storing the scvf corners!
36 */
37 template<class GridView>
38 struct BoxDfmDefaultScvGeometryTraits
39 {
40 using Grid = typename GridView::Grid;
41
42 static const int dim = Grid::dimension;
43 static const int dimWorld = Grid::dimensionworld;
44 using GridIndexType = typename Grid::LeafGridView::IndexSet::IndexType;
45 using LocalIndexType = unsigned int;
46 using Scalar = typename Grid::ctype;
47 using GeometryTraits = BoxDfmMLGeometryTraits<Scalar>;
48 using Geometry = Dune::MultiLinearGeometry<Scalar, dim, dimWorld, GeometryTraits>;
49 using CornerStorage = typename GeometryTraits::template CornerStorage<dim, dimWorld>::Type;
50 using GlobalPosition = typename CornerStorage::value_type;
51 };
52
53 /*!
54 * \ingroup BoxDFMModel
55 * \brief the sub control volume for the box discrete fracture scheme
56 *
57 * \tparam GV the type of the grid view
58 * \tparam T the scvf geometry traits
59 */
60 template<class GV,
61 class T = BoxDfmDefaultScvGeometryTraits<GV> >
62 class BoxDfmSubControlVolume
63 : public SubControlVolumeBase<BoxDfmSubControlVolume<GV, T>, T>
64 {
65 using ThisType = BoxDfmSubControlVolume<GV, T>;
66 using ParentType = SubControlVolumeBase<ThisType, T>;
67 using Geometry = typename T::Geometry;
68 using GridIndexType = typename T::GridIndexType;
69 using LocalIndexType = typename T::LocalIndexType;
70 using Scalar = typename T::Scalar;
71 using GlobalPosition = typename T::GlobalPosition;
72 enum { dim = Geometry::mydimension };
73
74 static_assert(dim == 2 || dim == 3, "Box-Dfm sub-control volume only implemented in 2d or 3d");
75
76 public:
77 //! State the traits public and thus export all types
78 using Traits = T;
79
80 //! The default constructor
81 7472124 BoxDfmSubControlVolume() = default;
82
83 // the constructor for standard scvs
84 template<class GeometryHelper>
85 7535184 BoxDfmSubControlVolume(const GeometryHelper& geometryHelper,
86 LocalIndexType scvIdx,
87 GridIndexType elementIndex,
88 GridIndexType dofIndex)
89 7535184 : isFractureScv_(false)
90 7535184 , center_(0.0)
91 7535184 , elementIndex_(elementIndex)
92 7535184 , vIdxLocal_(scvIdx)
93 7535184 , elemLocalScvIdx_(scvIdx)
94 7535184 , dofIndex_(dofIndex)
95 7535184 , facetIdx_(0)
96 7535184 , indexInIntersection_(0)
97 {
98 7535184 const auto corners = geometryHelper.getScvCorners(scvIdx);
99 7535184 dofPosition_ = corners[0];
100 8630880 volume_ = Dumux::convexPolytopeVolume<T::dim>(
101 Dune::GeometryTypes::cube(T::dim),
102 21644544 [&](unsigned int i){ return corners[i]; });
103 // compute center point
104
2/2
✓ Branch 0 taken 34523520 times.
✓ Branch 1 taken 7535184 times.
42058704 for (const auto& corner : corners)
105
2/2
✓ Branch 0 taken 77812608 times.
✓ Branch 1 taken 34523520 times.
112336128 center_ += corner;
106 7535184 center_ /= corners.size();
107 7535184 }
108
109 /*!
110 * \brief Constructor for fracture scvs
111 *
112 * The corner computation is the same as for boundary scvfs.
113 * Also, the scvf area of a boundary scvf is equal to the scv
114 * volume (unscaled by the aperture) Thus, we reuse functionality here.
115 * In order to get the right dimensions later, one must provide appropriate
116 * extrusion factors in the problem corresponding to the fracture aperture. *
117 */
118 template<class GeometryHelper, class Intersection>
119 515728 BoxDfmSubControlVolume(const GeometryHelper& geometryHelper,
120 const Intersection& intersection,
121 const typename Intersection::Geometry& isGeometry,
122 LocalIndexType indexInIntersection,
123 LocalIndexType vIdxLocal,
124 LocalIndexType elemLocalScvIdx,
125 LocalIndexType elemLocalFacetIdx,
126 GridIndexType elementIndex,
127 GridIndexType dofIndex)
128 515728 : isFractureScv_(true)
129 515728 , center_(0.0)
130 515728 , volume_(0.0)
131 515728 , elementIndex_(elementIndex)
132 515728 , vIdxLocal_(vIdxLocal)
133 515728 , elemLocalScvIdx_(elemLocalScvIdx)
134 515728 , dofIndex_(dofIndex)
135 515728 , facetIdx_(elemLocalFacetIdx)
136 515728 , indexInIntersection_(indexInIntersection)
137 {
138 515728 const auto corners = geometryHelper.getBoundaryScvfCorners(intersection.indexInInside(), indexInIntersection);
139 515728 dofPosition_ = corners[0];
140
141 // compute volume and scv center
142 1031456 volume_ = Dumux::convexPolytopeVolume<T::dim-1>(
143 Dune::GeometryTypes::cube(T::dim-1),
144 1114616 [&](unsigned int i){ return corners[i]; }
145 );
146
2/2
✓ Branch 0 taken 1197776 times.
✓ Branch 1 taken 515728 times.
1713504 for (const auto& corner : corners)
147
2/2
✓ Branch 0 taken 2728192 times.
✓ Branch 1 taken 1197776 times.
3925968 center_ += corner;
148 515728 center_ /= corners.size();
149 515728 }
150
151 //! The center of the sub control volume
152 29212096 const GlobalPosition& center() const
153 115055280 { return center_; }
154
155 //! The volume of the sub control volume
156 113262176 Scalar volume() const
157 113262176 { return volume_; }
158
159 //! The element-local vertex index this scv is connected to
160 486336012 LocalIndexType localDofIndex() const
161
5/8
✗ Branch 0 not taken.
✓ Branch 1 taken 3837592 times.
✓ Branch 4 taken 99109728 times.
✗ Branch 5 not taken.
✓ Branch 8 taken 577616 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 577616 times.
✓ Branch 11 taken 261136 times.
486336012 { return vIdxLocal_; }
162
163 //! The element-local index of this scv
164 741570580 LocalIndexType indexInElement() const
165
4/8
✓ Branch 0 taken 116749288 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 432401072 times.
✓ Branch 10 taken 849392 times.
✓ Branch 11 taken 57808 times.
✗ Branch 12 not taken.
✗ Branch 13 not taken.
741570580 { return elemLocalScvIdx_; }
166
167 //! The element-local facet index for which a fracture scv was created
168 1825288 LocalIndexType facetIndexInElement() const
169
6/6
✓ Branch 0 taken 577616 times.
✓ Branch 1 taken 11544 times.
✓ Branch 2 taken 577616 times.
✓ Branch 3 taken 11544 times.
✓ Branch 4 taken 11544 times.
✓ Branch 5 taken 577616 times.
1825288 { assert(isFractureScv_); return facetIdx_; }
170
171 //! The local vertex index in the intersection
172 LocalIndexType indexInsideIntersection() const
173 { assert(isFractureScv_); return indexInIntersection_; }
174
175 //! The index of the dof this scv is embedded in
176 164959584 GridIndexType dofIndex() const
177
9/16
✓ Branch 1 taken 643678 times.
✓ Branch 2 taken 6432546 times.
✓ Branch 3 taken 7076224 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 8 taken 99109728 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 4828758 times.
✓ Branch 11 taken 24383338 times.
✓ Branch 13 taken 136328 times.
✗ Branch 14 not taken.
✓ Branch 15 taken 3880 times.
✓ Branch 16 taken 29864 times.
✗ Branch 17 not taken.
✗ Branch 18 not taken.
164959584 { return dofIndex_; }
178
179 // The position of the dof this scv is embedded in (list is defined such that first entry is vertex itself)
180 643678 const GlobalPosition& dofPosition() const
181
4/6
✓ Branch 0 taken 147474 times.
✓ Branch 1 taken 115732 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 495431 times.
✓ Branch 5 taken 148247 times.
906884 { return dofPosition_; }
182
183 //! The global index of the element this scv is embedded in
184 GridIndexType elementIndex() const
185 { return elementIndex_; }
186
187 //! Return true if this scv is part of the fracture domain
188 123263034 bool isOnFracture() const
189
20/22
✓ Branch 0 taken 1871952 times.
✓ Branch 1 taken 2956806 times.
✓ Branch 2 taken 1871952 times.
✓ Branch 3 taken 27340144 times.
✓ Branch 4 taken 589160 times.
✓ Branch 5 taken 838752 times.
✓ Branch 6 taken 23974704 times.
✓ Branch 7 taken 1598604 times.
✓ Branch 8 taken 589160 times.
✓ Branch 9 taken 838752 times.
✓ Branch 10 taken 589160 times.
✓ Branch 11 taken 838752 times.
✓ Branch 12 taken 1871952 times.
✓ Branch 13 taken 27340144 times.
✓ Branch 14 taken 1871952 times.
✓ Branch 15 taken 27340144 times.
✓ Branch 16 taken 2192 times.
✓ Branch 17 taken 31552 times.
✓ Branch 18 taken 849392 times.
✓ Branch 19 taken 57808 times.
✗ Branch 20 not taken.
✗ Branch 21 not taken.
123263034 { return isFractureScv_; }
190
191 private:
192 bool isFractureScv_;
193 GlobalPosition dofPosition_;
194 GlobalPosition center_;
195 Scalar volume_;
196 GridIndexType elementIndex_;
197 LocalIndexType vIdxLocal_;
198 LocalIndexType elemLocalScvIdx_;
199 GridIndexType dofIndex_;
200
201 // for fracture scvs only!
202 LocalIndexType facetIdx_;
203 LocalIndexType indexInIntersection_;
204 };
205
206 } // end namespace
207
208 #endif
209