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

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


internalField   uniform 1;

boundaryField
{
    bottom
    {
       // type            my_fixedGradient;
        // gamma           0.625;

      type fixedValue; 
      value uniform 0;

    }
    top
    {
      //  type            my_fixedGradient;
       // gamma           0.625;

      type fixedValue; 
      value uniform 0;
    }
    right
    {
       // type            my_fixedGradient;
      // gamma           0.625;

      type fixedValue; 
     value uniform 0;
    }
    left
    {
       // type            my_fixedGradient;
      //  gamma           0.625;
      type fixedValue; 
      value uniform 0;
    }
    updown
    {
        type            empty;
    }
}


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