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 FacetTests | ||
10 | * \brief The spatial parameters for the single-phase facet coupling test. | ||
11 | */ | ||
12 | |||
13 | #ifndef DUMUX_TEST_TPFAFACETCOUPLING_ONEP_SPATIALPARAMS_HH | ||
14 | #define DUMUX_TEST_TPFAFACETCOUPLING_ONEP_SPATIALPARAMS_HH | ||
15 | |||
16 | #include <dumux/porousmediumflow/fvspatialparams1p.hh> | ||
17 | |||
18 | namespace Dumux { | ||
19 | |||
20 | /*! | ||
21 | * \ingroup FacetTests | ||
22 | * \brief The spatial parameters for the single-phase facet coupling test. | ||
23 | */ | ||
24 | template< class GridGeometry, class Scalar > | ||
25 |
2/4✓ Branch 0 taken 20 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
|
40 | class OnePSpatialParams |
26 | : public FVPorousMediumFlowSpatialParamsOneP< GridGeometry, Scalar, OnePSpatialParams<GridGeometry, Scalar> > | ||
27 | { | ||
28 | using ThisType = OnePSpatialParams< GridGeometry, Scalar >; | ||
29 | using ParentType = FVPorousMediumFlowSpatialParamsOneP< GridGeometry, Scalar, ThisType >; | ||
30 | |||
31 | using GridView = typename GridGeometry::GridView; | ||
32 | using Element = typename GridView::template Codim<0>::Entity; | ||
33 | using GlobalPosition = typename Element::Geometry::GlobalCoordinate; | ||
34 | |||
35 | public: | ||
36 | //! Export the type used for permeabilities | ||
37 | using PermeabilityType = Scalar; | ||
38 | |||
39 | 80 | OnePSpatialParams(std::shared_ptr<const GridGeometry> gridGeometry, const std::string& paramGroup = "") | |
40 |
2/4✓ Branch 2 taken 40 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 40 times.
✗ Branch 5 not taken.
|
80 | : ParentType(gridGeometry) |
41 | { | ||
42 |
1/2✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
|
80 | permeability_ = getParamFromGroup<Scalar>(paramGroup, "SpatialParams.Permeability"); |
43 |
1/2✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
|
80 | extrusion_ = getParamFromGroup<Scalar>(paramGroup, "SpatialParams.Aperture", 1.0); |
44 | 80 | } | |
45 | |||
46 | //! Function for defining the (intrinsic) permeability \f$[m^2]\f$. | ||
47 | 1218800 | PermeabilityType permeabilityAtPos(const GlobalPosition& globalPos) const | |
48 | ✗ | { return permeability_; } | |
49 | |||
50 | //! Returns the porosity | ||
51 | Scalar porosityAtPos(const GlobalPosition& globalPos) const | ||
52 | { return 1.0; } | ||
53 | |||
54 | //! Returns the extrusion factor | ||
55 | 1218800 | Scalar extrusionFactorAtPos(const GlobalPosition& globalPos) const | |
56 | 1218800 | { return extrusion_; } | |
57 | |||
58 | private: | ||
59 | PermeabilityType permeability_; | ||
60 | Scalar extrusion_; | ||
61 | }; | ||
62 | |||
63 | } // end namespace Dumux | ||
64 | |||
65 | #endif | ||
66 |