Files
OpenFOAM-12/applications/test/nonUniformTable/thermoDict
Henry Weller 73a594cbce nonUniformTableThermophysicalFunction: New non-uniform table thermophysicalFunction for liquid properties
Description
    Non-uniform tabulated property function that linearly interpolates between
    the values.

    To speed-up the search of the non-uniform table a uniform jump-table is
    created on construction which is used for fast indirect addressing into
    the table.

Usage
    \nonUniformTable
        Property    | Description
        values      | List of (temperature property) value pairs
    \endnonUniformTable

    Example for the density of water between 280 and 350K
    \verbatim
    rho
    {
        type    nonUniformTable;

        values
        (
            (280 999.87)
            (300 995.1)
            (350 973.7)
        );
    }
    \endverbatim
2020-04-30 14:08:44 +01:00

14 lines
154 B
Plaintext

values
(
(0 0)
(0.1 0.1)
(0.21 0.21)
(0.33 0.33)
(0.5 0.5)
(0.61 0.61)
(0.73 0.73)
(0.8 0.8)
(0.98 0.98)
(1 1)
);