/*--------------------------------*- 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;
    object      alphat;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0;

boundaryField
{
    wall1
    {
        type            zeroGradient;     //compressible::alphatWallFunction;
        //value           uniform 0;
    }
    
    wall2
    {
        type            zeroGradient   //compressible::alphatWallFunction;
        //value           uniform 0;
    }
    
    frontAndBack
    {
        type            empty;
        
    }
    
    inlet
    {
        type        zeroGradient;
       /* type           fixedValue; // 
        value          uniform 0;
        */
    }
    
    outlet
    {
       
       type        zeroGradient; // actual working setting
      /*
       type           fixedValue; 
       value          uniform 0;
       */
    }
    
    cylinder
    {
     //   type            zeroGradient;
     // type            fixedValue;     
     // value          uniform 320; 
      type            compressible::alphatWallFunction;
      Prt             0.85;
      value           uniform 1.9e-5;   
     
    }
    
    

    #includeEtc "caseDicts/setConstraintTypes"
}


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