13#ifndef DUMUX_MATERIAL_THERMALCONDUCTIVITY_AVERAGED_HH
14#define DUMUX_MATERIAL_THERMALCONDUCTIVITY_AVERAGED_HH
56 template<
class VolumeVariables>
59 constexpr int numFluidPhases = VolumeVariables::numFluidPhases();
62 Scalar lambdaFluid = 0.0;
63 for (
int phaseIdx = 0; phaseIdx < numFluidPhases; ++phaseIdx)
64 lambdaFluid += volVars.fluidThermalConductivity(phaseIdx)*volVars.saturation(phaseIdx);
66 const Scalar lambdaSolid = volVars.solidThermalConductivity();
67 const Scalar
porosity = volVars.porosity();
Effective thermal conductivity based on weighted arithmetic average.
Definition: thermalconductivityaverage.hh:49
static Scalar effectiveThermalConductivity(const VolumeVariables &volVars)
Effective thermal conductivity in .
Definition: thermalconductivityaverage.hh:57
std::string porosity() noexcept
I/O name of porosity.
Definition: name.hh:127