13#ifndef DUMUX_PERMEABILITY_KOZENY_CARMAN_HH
14#define DUMUX_PERMEABILITY_KOZENY_CARMAN_HH
17#include <dune/common/fmatrix.hh>
18#include <dune/common/math.hh>
30template<
class PermeabilityType>
40 template<
class Scalar>
44 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:32
PermeabilityType evaluatePermeability(PermeabilityType refPerm, Scalar refPoro, Scalar poro) const
Calculates the permeability for a given sub-control volume.
Definition: permeabilitykozenycarman.hh:41