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

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


internalField   uniform 1;

boundaryField
{
    bottom
    {
	type fixedValue; 
	value uniform 0;
      // type my_fixedGradient;
	//gamma 0.0555555555556;
    }
    top
    {
	
		type fixedValue; 
	value uniform 0;
       //type my_fixedGradient;
	//gamma 0.0555555555556;
    }
    right
    {	type fixedValue; 
	value uniform 0;
    // type my_fixedGradient;
	//gamma 0.0555555555556;
    }
    left
    {
    type fixedValue; 
	value uniform 0;
    // type my_fixedGradient;
	//gamma 0.0555555555556;
    }
    updown
    {
        type            empty;
    }
}


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