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

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

internalField   uniform (0 0 0);
//rho 0;
boundaryField
{
    Outlet
    {
        type            uniformFixedValue;
        rho		 rho;
        rhoInlet	 1000;
        uniformValue table	 
        (
        (0 (-2 0 0)) 
         (2.5 (-2 0 0)) 
         (5 (-4 0 0)) 
         (7.5 (-4 0 0)) 
         (8.75 (-6 0 0)) 
         (12.5 (-6 0 0))
         );
        
    }

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

    FrontAndBack
    {
        type            empty;
    }
}

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