24#ifndef DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_MP_HH
25#define DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_MP_HH
27#include <dune/common/exceptions.hh>
28#include <dune/common/fmatrix.hh>
43template<
class GlobalPosition>
44struct hasFluidMatrixInteractionAtPos
46 template<
class SpatialParams>
47 auto operator()(
const SpatialParams& a)
48 ->
decltype(a.fluidMatrixInteractionAtPos(std::declval<GlobalPosition>()))
58template<
class Gr
idGeometry,
class Scalar,
class Implementation>
63 using GridView =
typename GridGeometry::GridView;
64 using FVElementGeometry =
typename GridGeometry::LocalView;
65 using SubControlVolume =
typename GridGeometry::SubControlVolume;
66 using Element =
typename GridView::template Codim<0>::Entity;
68 using GlobalPosition =
typename Element::Geometry::GlobalCoordinate;
82 template<
class ElementSolution>
84 const SubControlVolume& scv,
85 const ElementSolution& elemSol)
const
87 static_assert(
decltype(
isValid(Detail::hasFluidMatrixInteractionAtPos<GlobalPosition>())(this->
asImp_()))::value,
" \n\n"
88 " Your spatial params class has to either implement\n\n"
89 " auto fluidMatrixInteractionAtPos(const GlobalPosition& globalPos) const\n\n"
90 " or overload this function\n\n"
91 " template<class ElementSolution>\n"
92 " auto fluidMatrixInteraction(const Element& element,\n"
93 " const SubControlVolume& scv,\n"
94 " const ElementSolution& elemSol) const\n\n");
96 return this->
asImp_().fluidMatrixInteractionAtPos(scv.center());
107 template<
class Flu
idSystem,
class ElementSolution>
109 const SubControlVolume& scv,
110 const ElementSolution& elemSol)
const
112 return this->
asImp_().template wettingPhaseAtPos<FluidSystem>(scv.center());
121 template<
class Flu
idSystem>
124 DUNE_THROW(Dune::InvalidStateException,
125 "The spatial parameters do not provide "
126 "a wettingPhaseAtPos() method.");
A helper function for class member function introspection.
The infrastructure to retrieve run-time parameters from Dune::ParameterTrees.
Define some often used mathematical functions.
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
Adaption of the non-isothermal two-phase two-component flow model to problems with CO2.
Definition: adapt.hh:29
The base class for spatial parameters used with finite-volume schemes.
Definition: common/fvspatialparams.hh:46
Implementation & asImp_()
Returns the implementation of the spatial parameters (static polymorphism)
Definition: common/fvspatialparams.hh:147
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition: common/fvspatialparams.hh:142
The base class for spatial parameters of porous-medium-flow problems.
Definition: porousmediumflow/fvspatialparams.hh:58
The base class for spatial parameters of multi-phase problems.
Definition: fvspatialparamsmp.hh:61
int wettingPhaseAtPos(const GlobalPosition &globalPos) const
Function for defining which phase is to be considered as the wetting phase.
Definition: fvspatialparamsmp.hh:122
FVPorousMediumFlowSpatialParamsMP(std::shared_ptr< const GridGeometry > gridGeometry)
Definition: fvspatialparamsmp.hh:71
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: fvspatialparamsmp.hh:83
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: fvspatialparamsmp.hh:108
Basic spatial parameters to be used with finite-volume schemes.
Basic spatial parameters to be used with finite-volume schemes.