version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
thermalconductivitysomerton3p.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
13#ifndef DUMUX_MATERIAL_FLUIDMATRIX_THERMALCONDUCTIVITY_SOMERTON_THREE_P_HH
14#define DUMUX_MATERIAL_FLUIDMATRIX_THERMALCONDUCTIVITY_SOMERTON_THREE_P_HH
15
16#include <algorithm>
17#include <cmath>
18
19namespace Dumux {
20
50template<class Scalar>
52{
53public:
59 template<class VolumeVariables>
60 static Scalar effectiveThermalConductivity(const VolumeVariables& volVars)
61 {
62 using FluidSystem = typename VolumeVariables::FluidSystem;
63
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();
71
72 return effectiveThermalConductivity(sw, sn, lambdaW, lambdaN, lambdaG, lambdaSolid, porosity);
73 }
74
88 static Scalar effectiveThermalConductivity(const Scalar sw,
89 const Scalar sn,
90 const Scalar lambdaW,
91 const Scalar lambdaN,
92 const Scalar lambdaG,
93 const Scalar lambdaSolid,
94 const Scalar porosity)
95 {
96 using std::max;
97 using std::pow;
98 using std::sqrt;
99 const Scalar satW = max<Scalar>(0.0, sw);
100 const Scalar satN = max<Scalar>(0.0, sn);
101
102 // porosity weighted geometric mean
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);
107
108 return lambdaEff;
109
110 }
111};
112
113
114} // end namespace Dumux
115
116#endif
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
Definition: adapt.hh:17