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...
Definition: indexhelper.hh:30
forward declaration of the method-specific implemetation
Definition: flux/box/fickslaw.hh:44
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
This structs indicates that Fick's law is not used for diffusion.
Definition: multidomain/boundary/freeflowporousmedium/traits.hh:65