13#ifndef DUMUX_MD_FREEFLOW_POROUSMEDIUM_TRAITS_HH
14#define DUMUX_MD_FREEFLOW_POROUSMEDIUM_TRAITS_HH
28template<
class FFFS,
class PMFS>
31 static_assert(FFFS::numPhases == 1,
"Only single-phase fluidsystems may be used for free flow.");
32 static constexpr bool value = std::is_same<typename FFFS::MultiPhaseFluidSystem, PMFS>::value;
43 static_assert(FS::numPhases == 1,
"Only single-phase fluidsystems may be used for free flow.");
44 static constexpr bool value = std::is_same<FS, FS>::value;
52template<
class DiffLaw>
forward declaration of the method-specific implementation
Definition: flux/box/fickslaw.hh:32
Fick's law specialized for different discretization schemes. This file contains the data which is req...
Definition: indexhelper.hh:18
This structs indicates that Fick's law is not used for diffusion.
Definition: multidomain/boundary/freeflowporousmedium/traits.hh:53
This structs helps to check if the two sub models use the same fluidsystem. Specialization for the ca...
Definition: multidomain/boundary/freeflowporousmedium/traits.hh:30
static constexpr bool value
Definition: multidomain/boundary/freeflowporousmedium/traits.hh:32