3.4
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
fv.hh
Go to the documentation of this file.
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 * See the file COPYING for full copying permissions. *
5 * *
6 * This program is free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation, either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 *****************************************************************************/
25#ifndef DUMUX_FV_SPATIAL_PARAMS_HH
26#define DUMUX_FV_SPATIAL_PARAMS_HH
27
28#include <dune/common/exceptions.hh>
30#include "fv1p.hh"
31
32namespace Dumux {
33
34#ifndef DOXYGEN
35namespace Detail {
36// helper struct detecting if the user-defined spatial params class
37// has a fluidMatrixInteractionAtPos function
38template<class GlobalPosition>
39struct hasFluidMatrixInteractionAtPos
40{
41 template<class SpatialParams>
42 auto operator()(const SpatialParams& a)
43 -> decltype(a.fluidMatrixInteractionAtPos(std::declval<GlobalPosition>()))
44 {}
45};
46} // end namespace Detail
47#endif
48
54template<class GridGeometry, class Scalar, class Implementation>
55class FVSpatialParams : public FVSpatialParamsOneP<GridGeometry, Scalar, Implementation>
56{
58 using GridView = typename GridGeometry::GridView;
59 using FVElementGeometry = typename GridGeometry::LocalView;
60 using SubControlVolume = typename GridGeometry::SubControlVolume;
61 using Element = typename GridView::template Codim<0>::Entity;
62
63 using GlobalPosition = typename Element::Geometry::GlobalCoordinate;
64
65public:
66 FVSpatialParams(std::shared_ptr<const GridGeometry> gridGeometry)
68 {}
69
77 template<class ElementSolution>
78 decltype(auto) fluidMatrixInteraction(const Element& element,
79 const SubControlVolume& scv,
80 const ElementSolution& elemSol) const
81 {
82 static_assert(decltype(isValid(Detail::hasFluidMatrixInteractionAtPos<GlobalPosition>())(this->asImp_()))::value," \n\n"
83 " Your spatial params class has to either implement\n\n"
84 " auto fluidMatrixInteractionAtPos(const GlobalPosition& globalPos) const\n\n"
85 " or overload this function\n\n"
86 " template<class ElementSolution>\n"
87 " auto fluidMatrixInteraction(const Element& element,\n"
88 " const SubControlVolume& scv,\n"
89 " const ElementSolution& elemSol) const\n\n");
90
91 return this->asImp_().fluidMatrixInteractionAtPos(scv.center());
92 }
93
102 template<class FluidSystem, class ElementSolution>
103 int wettingPhase(const Element& element,
104 const SubControlVolume& scv,
105 const ElementSolution& elemSol) const
106 {
107 return this->asImp_().template wettingPhaseAtPos<FluidSystem>(scv.center());
108 }
109
116 template<class FluidSystem>
117 int wettingPhaseAtPos(const GlobalPosition& globalPos) const
118 {
119 DUNE_THROW(Dune::InvalidStateException,
120 "The spatial parameters do not provide "
121 "a wettingPhaseAtPos() method.");
122 }
123};
124
125} // namespace Dumux
126
127#endif
A helper function for class member function introspection.
The base class for spatial parameters of one-phase problems using a fully implicit discretization met...
Definition: adapt.hh:29
constexpr auto isValid(const Expression &t)
A function that creates a test functor to do class member introspection at compile time.
Definition: isvalid.hh:93
The base class for spatial parameters of multi-phase problems using a fully implicit discretization m...
Definition: fv.hh:56
int wettingPhase(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Function for defining which phase is to be considered as the wetting phase.
Definition: fv.hh:103
FVSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry)
Definition: fv.hh:66
decltype(auto) fluidMatrixInteraction(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Function for defining the parameters needed by constitutive relationships (kr-sw, pc-sw,...
Definition: fv.hh:78
int wettingPhaseAtPos(const GlobalPosition &globalPos) const
Function for defining which phase is to be considered as the wetting phase.
Definition: fv.hh:117
The base class for spatial parameters of one-phase problems using a fully implicit discretization met...
Definition: fv1p.hh:77
Implementation & asImp_()
Definition: fv1p.hh:334
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition: fv1p.hh:329