/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  Field         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   Operation     | Version:  v2412                                 |
|   \\  /    And           |                                                 |
|    \\/     Manipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      transportProperties;
}

transportModel  Newtonian;

// Kinematic viscosity at ~20°C
nu              [0 2 -1 0 0 0 0] 1.5e-05;

// Thermal expansion coefficient (1/Tamb)
beta            [0 0 0 -1 0 0 0] 0.0034;

// Reference temperature (Room Ambient Temperature)
TRef            [0 0 0 1 0 0 0] 294.15;

// Laminar Prandtl number for air
Pr              [0 0 0 0 0 0 0] 0.71;

// Turbulent Prandtl number - Increased to sustain jet attachment
Prt             [0 0 0 0 0 0 0] 1.0;

// ************************************************************************* //