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-FileCopyrightInfo: 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 FaceCenteredStaggeredDiscretization | ||
10 | * \copydoc Dumux::FaceCenteredStaggeredFVGridGeometry | ||
11 | */ | ||
12 | #ifndef DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_NORMAL_AXIS_HH | ||
13 | #define DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_NORMAL_AXIS_HH | ||
14 | |||
15 | #include <cstddef> | ||
16 | #include <algorithm> | ||
17 | #include <numeric> | ||
18 | |||
19 | namespace Dumux { | ||
20 | |||
21 | /*! | ||
22 | * \ingroup FaceCenteredStaggeredDiscretization | ||
23 | * \brief Returns the normal axis index of a unit vector (0 = x, 1 = y, 2 = z) | ||
24 | */ | ||
25 | template<class Vector> | ||
26 | 38635342 | inline static std::size_t normalAxis(const Vector& v) | |
27 | { | ||
28 | using std::abs; | ||
29 | |||
30 | 38635342 | constexpr auto eps = 1e-8; | |
31 |
2/30✗ Branch 0 not taken.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✗ Branch 11 not taken.
✗ Branch 12 not taken.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
✗ Branch 15 not taken.
✗ Branch 16 not taken.
✗ Branch 17 not taken.
✗ Branch 18 not taken.
✗ Branch 19 not taken.
✓ Branch 20 taken 130 times.
✗ Branch 21 not taken.
✗ Branch 22 not taken.
✗ Branch 23 not taken.
✗ Branch 24 not taken.
✗ Branch 25 not taken.
✗ Branch 26 not taken.
✗ Branch 27 not taken.
✗ Branch 31 not taken.
✓ Branch 32 taken 38635212 times.
|
115906026 | assert(std::any_of(v.begin(), v.end(), [=](auto x){ return abs(x) > eps; })); |
32 | |||
33 |
2/4✗ Branch 3 not taken.
✓ Branch 4 taken 38635342 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 38635342 times.
|
115906026 | const auto result = std::distance( |
34 | ✗ | std::begin(v), std::find_if(v.begin(), v.end(), [eps=eps](auto x){ return abs(x) > eps; }) | |
35 | ); | ||
36 | |||
37 | // make sure there is only one non-zero entry | ||
38 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 38635342 times.
|
154541238 | assert(v[result] == std::accumulate(v.begin(), v.end(), 0.0)); |
39 | |||
40 | 38635342 | return result; | |
41 | } | ||
42 | |||
43 | } // end namespace Dumux | ||
44 | |||
45 | #endif | ||
46 |