12#ifndef DUMUX_PERMEABILITY_KOZENY_CARMAN_HH
13#define DUMUX_PERMEABILITY_KOZENY_CARMAN_HH
16#include <dune/common/fmatrix.hh>
17#include <dune/common/math.hh>
29template<
class PermeabilityType>
39 template<
class Scalar>
43 auto factor = power((1.0 - refPoro)/(1.0 - poro), 2) * power(poro/refPoro, 3);
The Kozeny-Carman relationship for the calculation of a porosity-dependent permeability....
Definition: permeabilitykozenycarman.hh:31
PermeabilityType evaluatePermeability(PermeabilityType refPerm, Scalar refPoro, Scalar poro) const
Calculates the permeability for a given sub-control volume.
Definition: permeabilitykozenycarman.hh:40