/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  9
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       volScalarField;
    location    "0";
    object      nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 2 -1 0 0 0 0];

internalField   uniform 8.74e-04;

boundaryField
{
    "(airConditioner1|airConditioner2)"
    {
        type            calculated;
        value           uniform 6.86e-03;
    }
    
    ceil_AC
    {
        type            calculated;
        value           uniform 9.97e-3;
    }

    "(ceiling|floor|walls)"
    {
        type            nutkWallFunction;
        value           $internalField;
    }

    door
    {
        type            calculated;
        value           $internalField;
    }

    "(fixedPositionExhaustFan|multiPositionExhaustFan)"
    {
        type            calculated;
        value           uniform 3.43e-03;
    }
}

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