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

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 0;
//rho 0;

boundaryField
{
    Outlet
    {
        type            fixedValue;
        value	 uniform 1.0;
        //rho		 rho;
        //rhoInlet	 1000;
    }

    Inlet
    {
        type            zeroGradient;
        
    }
    
    Walls
    {
    	type		zeroGradient;
  
    }

    FrontAndBack
    {
        type            empty;
    }
}

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