/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2312                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      turbulenceProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

simulationType laminar;

RAS
{
    RASModel    kEpsilon;

    turbulence      on;

    printCoeffs     on;
    //kMin            1e-6;  // Lower bound for k
    //epsilonMin      1e-6;

    kMin            1e-10;    // Prevent k ≤ 0
    epsilonMin      1e-10;    // Prevent ε ≤ 0
    nutMin          1e-12;    // Prevent νₜ ≤ 0
}

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