25#ifndef DUMUX_MD_FREEFLOW_POROUSMEDIUM_TRAITS_HH
26#define DUMUX_MD_FREEFLOW_POROUSMEDIUM_TRAITS_HH
40template<
class FFFS,
class PMFS>
43 static_assert(FFFS::numPhases == 1,
"Only single-phase fluidsystems may be used for free flow.");
44 static constexpr bool value = std::is_same<typename FFFS::MultiPhaseFluidSystem, PMFS>::value;
55 static_assert(FS::numPhases == 1,
"Only single-phase fluidsystems may be used for free flow.");
56 static constexpr bool value = std::is_same<FS, FS>::value;
64template<
class DiffLaw>
Fick's law specilized for different discretization schemes. This file contains the data which is requ...
FicksLawImplementation< TypeTag, typename GetPropType< TypeTag, Properties::GridGeometry >::DiscretizationMethod, referenceSystem > FicksLaw
Evaluates the diffusive mass flux according to Fick's law.
Definition fickslaw_fwd.hh:45
Definition indexhelper.hh:30
This structs helps to check if the two sub models use the same fluidsystem. Specialization for the ca...
Definition multidomain/boundary/freeflowporousmedium/traits.hh:42
static constexpr bool value
Definition multidomain/boundary/freeflowporousmedium/traits.hh:44
static constexpr bool value
Definition multidomain/boundary/freeflowporousmedium/traits.hh:56
This structs indicates that Fick's law is not used for diffusion.
Definition multidomain/boundary/freeflowporousmedium/traits.hh:65