Files
OpenFOAM-12/src/finiteVolume
Will Bainbridge 2f018f4156 coefficientMassTransfer: Added prototype fvModel for mass transfer
This simple model generates a mass transfer between two phases
calculated from the following expression:

    \dot{m}/V = C \alpha \grad \alpha

Where:

    \dot{m}/V | mass transfer rate per unit volume
    C         | coefficient
    \alpha    | volume fraction of the source phase

Example usage:

    coefficientMassTransfer
    {
        type            coefficientMassTransfer;

        phases          (liquid vapour);

        C               [kg/m^2/s] 0.1;
    }

This model may be of use in simple situations, but it is primarily
designed to serve as a prototype for more complex and physical
mechanisms of mass transfer between phases.
2023-10-12 11:32:49 +01:00
..