Mixed boundary condition for temperature to be used at the coupling interface between fluid solid regions. More...
#include <humidityTemperatureCoupledMixedFvPatchScalarField.H>
Mixed boundary condition for temperature to be used at the coupling interface between fluid solid regions.
This boundary condition can operate in four modes:
constantMass: thermal inertia onlyrho, thickness and cp condensation: condensation onlyevaporation: evaporation onlycondensationAndEvaporation : condensation and evaporation take place simultaneously.There is no mass flow on the wall, i.e. the mass condensed on a face remains on that face. It uses a 'lumped mass' model to include thermal inertia effects.
It assumes a drop-wise type of condensation, whereby its heat transfer Nusselt number is calculated using:

References:
Standard models (tag:BLID):
Bergman, T. L., Lavine, A. S.,
Incropera, F. P., & Dewitt, D. P. (2011).
Fundamentals of heat and mass transfer.
John Wiley & Sons. 7th Edition. Chapter 10.
ISBN:9780470501979
The mass transfer correlation used is:
![\[ h_m = D_{ab} \frac{Sh}{L} \]](form_973.png)
where:
![]() | = | mass vapour difussivity |
![]() | = | characteristic length |
![]() | = | Sherwood number |
The Sherwood number is calculated using:

where:
![]() | = | Reynolds number |
![]() | = | Schmidt number |
NOTE:
Example usage:
On the fluid side
myInterfacePatchName
{
type thermalHumidityCoupledMixed;
kappaMethod fluidThermo;
kappa none;
// Modes of operation: inert, condensation, vaporization, condEvap
mode condEvap;
// Carrier species name
specieName H2O;
// Carrier molecular weight
carrierMolWeight 28.9;
// Characteristic length of the wall
L 0.1;
// Vaporisation temperature
Tvap 273;
// Liquid properties for the condensed mass
liquid
{
H2O
{
defaultCoeffs yes;
}
}
thicknessLayers (0.1 0.2 0.3 0.4);
kappaLayers (1 2 3 4);
// thickness, density and cp required for inert and condensation
// modes
//thickness uniform 0;
//cp uniform 0;
//rho uniform 0;
value $internalField;
}
On the solid side:
myInterfacePatchName
{
type thermalInertiaMassTransferCoupledMixed;
kappaMethod solidThermo;
kappa none;
value uniform 260;
}