version 3.9-dev
Effective heat conductivity in porous media

Laws for calculating effective heat conductivity coefficients. More...

Description

In porous media, the effective heat conductivity depends on the solid-fluid conductivity ratio, the volume fractions of the constituent phases, and the geometry of the solid-fluid interface [5]. The following laws are implemented:

Average (multiple fluid phases, one solid phase)

The effective thermal conductivity of ThermalConductivityAverage is calculated as a weighted arithmetic average of the thermal conductivities of the solid and the fluid phases. The weights are determined by the volume fraction the phase occupies. Denoting the volume fractions by \( n_\alpha \), we have

\[ \lambda_\text{eff} = \sum_\alpha \lambda_\alpha n_\alpha / \sum_\alpha n_\alpha, \]

summing over both fluid and solid phases. With the porosity \( \phi \) as the sum of all fluid volume fractions, we can equivalently write

\[ \lambda_\text{eff} = \lambda_\text{s} (1-\phi) + \lambda_\text{f} \phi, \]

where \( \lambda_\text{s} \) is the thermal conductivity of the solid phase, and the effective thermal conductivity of the liquid phases is computed as an arithmetic average weighted with the fluid saturations.

Johansen (two fluid phases)

ThermalConductivityJohansen [43] computes the thermal conductivity of dry and the wet soil material and interpolates using the Kersten number. The effective wet conductivity is based on a geometric average and the effective dry conductivity is based on a semi-emprical relation and fitted to medium quartz sand.

The effective thermal conductivity is given by

\[ \lambda_\text{eff} = \lambda_{\text{dry}} + \text{Ke} \left(\lambda_\text{wet} - \lambda_\text{dry}\right), \quad \lambda_\text{wet} = \lambda_\text{s}^{\left(1-\phi\right)} \lambda_\text{w}^\phi, \quad \lambda_\text{dry} = \frac{0.135 \rho_\text{s} \phi + 64.7}{\rho_\text{s} - 0.947 \rho_\text{s} \phi}, \]

where \( \phi \) is the porosity, \( \lambda_\alpha \) is the thermal conductivity of phase \( \alpha \), \( \rho_\text{s} \) denotes the density of the solid phase, and the Kersten number is given by \( \text{Ke} = (\kappa S_\text{w})/(1 + (1-\kappa) S_\text{w}) \), with the wetting phase saturation \( S_w \) and a fitting parameter \( \kappa = 15.6 \) for medium quartz sand.

Somerton (two fluid phases)

The Somerton method [73] computes the thermal conductivity of dry and the wet soil material. It uses a root function of the water saturation to compute the effective thermal conductivity for a two-phase fluidsystem. The individual thermal conductivities are calculated as geometric mean of the thermal conductivity of the porous material and of the respective fluid phase.

The effective thermal conductivity of ThermalConductivitySomertonTwoP is given by

\[ \lambda_\text{eff} = \lambda_\text{g,eff} + \sqrt{S_\text{w}} \left(\lambda_\text{w,eff} - \lambda_\text{g,eff}\right) \]

with \( S_\text{w} \) the water saturation, \( S_\text{n} \) the NAPL saturation, the effective phase saturations given by \( \lambda_{\alpha,\text{eff}} = (\lambda_\text{s})^{\left(1-\phi\right)} (\lambda_\alpha)^\phi, \alpha \in \lbrace\text{w,n,g}\rbrace \) (geometric mean) and \( \lambda_\text{s} \) is the thermal conductivity of the solid phase. The effective conductivity \( \lambda_\text{g,eff} \) corresponds to dry conditions, whereas the effective conductivity \( \lambda_\text{g,eff} \) corresponds to wet conditions.

Somerton (three fluid phases)

The Somerton method [73] computes the thermal conductivity of dry and the wet soil material. It is extended here to a three phase system of water (w), NAPL (n) and gas (g). It uses a root function of the water and NAPL saturation to compute the effective thermal conductivity for a three-phase fluidsystem. The individual thermal conductivities are calculated as geometric mean of the thermal conductivity of the porous material and of the respective fluid phase.

The effective thermal conductivity of ThermalConductivitySomertonThreeP is given by

\[ \lambda_\text{eff} = \lambda_\text{g,eff} + \sqrt{S_\text{w}} \left(\lambda_\text{w,eff} - \lambda_\text{g,eff}\right) + \sqrt{S_\text{n}} \left(\lambda_\text{n,eff} - \lambda_\text{g,eff}\right) \]

with \( S_\text{w} \) the water saturation, \( S_\text{n} \) the NAPL saturation, the effective phase saturations given by \( \lambda_{\alpha,\text{eff}} = (\lambda_\text{s})^{\left(1-\phi\right)} (\lambda_\alpha)^\phi, \alpha \in \{\text{w,n,g}\}\) (geometric mean) and \( \lambda_\text{s} \) is the thermal conductivity of the solid phase.

Classes

class  Dumux::ThermalConductivityAverage< Scalar >
 Effective thermal conductivity based on weighted arithmetic average. More...
 
class  Dumux::ThermalConductivityJohansen< Scalar >
 Relation for the saturation-dependent effective thermal conductivity. More...
 
class  Dumux::ThermalConductivitySimpleFluidLumping< Scalar >
 Relation for the saturation-dependent effective thermal conductivity. More...
 
class  Dumux::ThermalConductivitySomertonTwoP< Scalar >
 Effective thermal conductivity after Somerton. More...
 
class  Dumux::ThermalConductivitySomertonThreeP< Scalar >
 Effective thermal conductivity after Somerton. More...