/*--------------------------------*- C++ -*----------------------------------*\
  ==  == ====== ====   ====    |
                    \\     ||  | Multiphase Code Repository by HZDR
  ======   //   ||  || ===//   | Website: https://doi.org/10.14278/rodare.767
  ||  ||  //    ||  // || \\   | License: GPL-3.0-or-later
  ==  == ====== ====   ==  ==  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvConstraints;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

limitp
{
    type       limitPressure;
    min        8e4;
    max        1.2e5;
}

limitTgas
{
    type       limitTemperature;
    cellZone   all;
    min        300;
    max        453;
    phase      gas;
}

limitTliquid
{
    type       limitTemperature;
    cellZone   all;
    min        300;
    max        453;
    phase      liquid;
}

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