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 SpatialParameters | ||
10 | * \brief The base class for spatial parameters in single-phase porous-medium-flow problems. | ||
11 | */ | ||
12 | #ifndef DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_ONEP_HH | ||
13 | #define DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_ONEP_HH | ||
14 | |||
15 | #include "fvspatialparams.hh" | ||
16 | |||
17 | namespace Dumux { | ||
18 | |||
19 | /*! | ||
20 | * \ingroup SpatialParameters | ||
21 | * \brief The base class for spatial parameters of single-phase problems. | ||
22 | */ | ||
23 | template<class GridGeometry, class Scalar, class Implementation> | ||
24 |
6/24✗ Branch 0 not taken.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 170 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✓ Branch 8 taken 50 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 50 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 2 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 2 times.
✗ Branch 15 not taken.
✓ Branch 16 taken 2 times.
✗ Branch 17 not taken.
✗ Branch 18 not taken.
✗ Branch 19 not taken.
✗ Branch 20 not taken.
✗ Branch 21 not taken.
✗ Branch 22 not taken.
✗ Branch 23 not taken.
|
277 | class FVPorousMediumFlowSpatialParamsOneP |
25 | : public FVPorousMediumFlowSpatialParams<GridGeometry, Scalar, Implementation> | ||
26 | { | ||
27 | using ParentType = FVPorousMediumFlowSpatialParams<GridGeometry, Scalar, Implementation>; | ||
28 | |||
29 | public: | ||
30 |
4/8✓ Branch 1 taken 266 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 79 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 6 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 3 times.
✗ Branch 11 not taken.
|
354 | using ParentType::ParentType; |
31 | }; | ||
32 | |||
33 | } // namespace Dumux | ||
34 | |||
35 | #endif | ||
36 |