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

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

internalField   uniform 1;

boundaryField
{
    bottom
    {
        type fixedValue; 
      value uniform 0;
    }
    top
    {
           type fixedValue; 
      value uniform 0;
    }
    left
    {
         type fixedValue; 
      value uniform 0;
    }
    right
    {
              type fixedValue; 
      value uniform 0;
    } 
	
    updown
    {
   
	    type         empty;
    }
}

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