12#ifndef DUMUX_MATERIAL_FLUIDMATRIX_THERMALCONDUCTIVITY_SIMPLE_FLUID_LUMPING_HH
13#define DUMUX_MATERIAL_FLUIDMATRIX_THERMALCONDUCTIVITY_SIMPLE_FLUID_LUMPING_HH
34 template<
class VolumeVariables>
37 using FluidSystem =
typename VolumeVariables::FluidSystem;
38 const Scalar sw = volVars.saturation(FluidSystem::phase0Idx);
39 const Scalar lambdaW = volVars.fluidThermalConductivity(FluidSystem::phase0Idx);
40 const Scalar lambdaN = volVars.fluidThermalConductivity(FluidSystem::phase1Idx);
41 const Scalar lambdaSolid = volVars.solidThermalConductivity();
42 const Scalar
porosity = volVars.porosity();
44 return effectiveThermalConductivity_(sw, lambdaW, lambdaN, lambdaSolid,
porosity);
59 static Scalar effectiveThermalConductivity_(
const Scalar sw,
62 const Scalar lambdaSolid,
67 const Scalar satW = max<Scalar>(0.0, sw);
68 return porosity * ( (1. - satW) * lambdaN + satW * lambdaW ) + (1.0 -
porosity) * lambdaSolid ; ;
Relation for the saturation-dependent effective thermal conductivity.
Definition: simplefluidlumping.hh:26
static Scalar effectiveThermalConductivity(const VolumeVariables &volVars)
Effective thermal conductivity .
Definition: simplefluidlumping.hh:35
std::string porosity() noexcept
I/O name of porosity.
Definition: name.hh:127