humidityTemperatureCoupledMixedFvPatchScalarField Class Reference

Mixed boundary condition for temperature to be used at the coupling interface between fluid solid regions. More...

Detailed Description

Mixed boundary condition for temperature to be used at the coupling interface between fluid solid regions.

This boundary condition can operate in four modes:

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:

\begin{eqnarray*} 51104 + 2044 (T - 273.15) & T > 295 & T < 373 \\ 255510 & T > 373 & \end{eqnarray*}

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} \]

where:

$ D_{ab} $ = mass vapour difussivity
$ L $ = characteristic length
$ Sh $ = Sherwood number

The Sherwood number is calculated using:

\begin{eqnarray*} 0.664 Re^\frac{1}{2} Sc^\frac{1}{3} & Re < 5.0E+05 \\ 0.037 Re^\frac{4}{5} Sc^\frac{1}{3} & Re > 5.0E+05 \end{eqnarray*}

where:

$ Re $ = Reynolds number
$ Sc $ = 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;
    }
Source files

The documentation for this class was generated from the following file: