25#ifndef DUMUX_FV_SPATIAL_PARAMS_HH
26#define DUMUX_FV_SPATIAL_PARAMS_HH
28#include <dune/common/exceptions.hh>
38template<
class GlobalPosition>
39struct hasMaterialLawParamsAtPos
41 template<
class SpatialParams>
42 auto operator()(
const SpatialParams& a)
43 ->
decltype(a.materialLawParamsAtPos(std::declval<GlobalPosition>()))
55template<
class Gr
idGeometry,
class Scalar,
class Implementation>
59 using GridView =
typename GridGeometry::GridView;
60 using FVElementGeometry =
typename GridGeometry::LocalView;
61 using SubControlVolume =
typename GridGeometry::SubControlVolume;
62 using Element =
typename GridView::template Codim<0>::Entity;
64 using GlobalPosition =
typename Element::Geometry::GlobalCoordinate;
72 template<
class ElementSolution>
73 [[deprecated(
"Use the new style material laws. Old material laws and this interface will no longer be supported after release 3.3")]]
75 const SubControlVolume& scv,
76 const ElementSolution& elemSol)
const
78 return this->
asImp_().materialLawParams(element, scv, elemSol);
89 template<
class ElementSolution>
90 [[deprecated(
"Use the new style material laws. Old material laws and this interface will no longer be supported after release 3.3")]]
92 const SubControlVolume& scv,
93 const ElementSolution& elemSol)
const
95 static_assert(
decltype(
isValid(Detail::hasMaterialLawParamsAtPos<GlobalPosition>())(this->
asImp_()))::value,
" \n\n"
96 " Your spatial params class has to either implement\n\n"
97 " const MaterialLawParams& materialLawParamsAtPos(const GlobalPosition& globalPos) const\n\n"
98 " or overload this function\n\n"
99 " template<class ElementSolution>\n"
100 " const MaterialLawParams& materialLawParams(const Element& element,\n"
101 " const SubControlVolume& scv,\n"
102 " const ElementSolution& elemSol) const\n\n");
104 return this->
asImp_().materialLawParamsAtPos(scv.center());
115 template<
class Flu
idSystem,
class ElementSolution>
117 const SubControlVolume& scv,
118 const ElementSolution& elemSol)
const
120 return this->
asImp_().template wettingPhaseAtPos<FluidSystem>(scv.center());
129 template<
class Flu
idSystem>
132 DUNE_THROW(Dune::InvalidStateException,
133 "The spatial parameters do not provide "
134 "a wettingPhaseAtPos() method.");
A helper function for class member function introspection.
The base class for spatial parameters of one-phase problems using a fully implicit discretization met...
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:57
decltype(auto) materialLawParams(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:91
decltype(auto) materialLawParamsDeprecated(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Definition: fv.hh:74
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:116
FVSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry)
Definition: fv.hh:67
int wettingPhaseAtPos(const GlobalPosition &globalPos) const
Function for defining which phase is to be considered as the wetting phase.
Definition: fv.hh:130
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