12#ifndef DUMUX_MATERIAL_DIFFUSIVITY_CONSTANT_TORTUOSITY_HH
13#define DUMUX_MATERIAL_DIFFUSIVITY_CONSTANT_TORTUOSITY_HH
47 template<
class VolumeVariables>
53 static const Scalar tau = getParam<Scalar>(
"SpatialParams.Tortuosity", 0.5);
54 const Scalar diffCoeff = volVars.diffusionCoefficient(phaseIdx, compIdxI, compIdxJ);
55 return volVars.porosity() * volVars.saturation(phaseIdx) * tau * diffCoeff;
Relation for the saturation-dependent effective diffusion coefficient.
Definition: diffusivityconstanttortuosity.hh:37
static Scalar effectiveDiffusionCoefficient(const VolumeVariables &volVars, const int phaseIdx, const int compIdxI, const int compIdxJ)
Returns the effective diffusion coefficient based on a constant tortuosity value.
Definition: diffusivityconstanttortuosity.hh:48
The infrastructure to retrieve run-time parameters from Dune::ParameterTrees.