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

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 0;
//rho 0;

boundaryField
{
    Inlet
    {
        type            uniformFixedValue;
        //value	 uniform 1.0;
        //rho		 rho;
        //rhoInlet	 1000;
        uniformValue
        {
          type 	scale;
          scale 	squarePulse;
          start	7.5;
          duration	2.5;
          value	1;
        }	 
       
    }

    Outlet
    {
        type            zeroGradient;
        
    }
    
    Walls
    {
    	type		zeroGradient;
  
    }

    FrontAndBack
    {
        type            empty;
    }
}

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