surfaceTensionModels::liquidProperties: New temperature-dependent surface tension model

Description
    Temperature-dependent surface tension model in which the surface tension
    function provided by the phase Foam::liquidProperties class is used.

Usage
    \table
        Property     | Description               | Required    | Default value
        phase        | Phase name                | yes         |
    \endtable

    Example of the surface tension specification:
    \verbatim
        sigma
        {
            type    liquidProperties;
            phase   water;
        }
    \endverbatim

for use with e.g. compressibleInterFoam, see
tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D
This commit is contained in:
Henry Weller
2017-04-05 14:36:11 +01:00
parent 0a20a8177f
commit 97d12d8b43
14 changed files with 383 additions and 25 deletions

View File

@ -19,6 +19,10 @@ phases (water air);
pMin 10000;
sigma 0.07;
sigma
{
type liquidProperties;
phase water;
}
// ************************************************************************* //