13#ifndef DUMUX_MATERIAL_FLUIDMATRIX_THERMALCONDUCTIVITY_SOMERTON_THREE_P_HH
14#define DUMUX_MATERIAL_FLUIDMATRIX_THERMALCONDUCTIVITY_SOMERTON_THREE_P_HH
59 template<
class VolumeVariables>
62 using FluidSystem =
typename VolumeVariables::FluidSystem;
64 const Scalar sw = volVars.saturation(FluidSystem::wPhaseIdx);
65 const Scalar sn = volVars.saturation(FluidSystem::nPhaseIdx);
66 const Scalar lambdaW = volVars.fluidThermalConductivity(FluidSystem::wPhaseIdx);
67 const Scalar lambdaN = volVars.fluidThermalConductivity(FluidSystem::nPhaseIdx);
68 const Scalar lambdaG = volVars.fluidThermalConductivity(FluidSystem::gPhaseIdx);
69 const Scalar lambdaSolid = volVars.solidThermalConductivity();
70 const Scalar
porosity = volVars.porosity();
93 const Scalar lambdaSolid,
99 const Scalar satW = max<Scalar>(0.0, sw);
100 const Scalar satN = max<Scalar>(0.0, sn);
103 const Scalar lSw = pow(lambdaSolid, (1.0 -
porosity)) * pow(lambdaW,
porosity);
104 const Scalar lSn = pow(lambdaSolid, (1.0 -
porosity)) * pow(lambdaN,
porosity);
105 const Scalar lSg = pow(lambdaSolid, (1.0 -
porosity)) * pow(lambdaG,
porosity);
106 const Scalar lambdaEff = lSg + sqrt(satW) * (lSw - lSg) + sqrt(satN) * (lSn -lSg);
Effective thermal conductivity after Somerton.
Definition: thermalconductivitysomerton3p.hh:52
static Scalar effectiveThermalConductivity(const VolumeVariables &volVars)
Effective thermal conductivity in for three phases.
Definition: thermalconductivitysomerton3p.hh:60
static Scalar effectiveThermalConductivity(const Scalar sw, const Scalar sn, const Scalar lambdaW, const Scalar lambdaN, const Scalar lambdaG, const Scalar lambdaSolid, const Scalar porosity)
Effective thermal conductivity in for three phases.
Definition: thermalconductivitysomerton3p.hh:88
std::string porosity() noexcept
I/O name of porosity.
Definition: name.hh:127