/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
/*   Windows 32 and 64 bit porting by blueCAPE: http://www.bluecape.com.pt   *\
|  Based on Windows porting (2.0.x v4) by Symscape: http://www.symscape.com   |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      fmm;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //


dimensions [0 4 -4 0 0 0 0];

internalField uniform 1;



boundaryField
{
    top
    {
        type zeroGradient;
    }
    sides
    {
        type zeroGradient;
    }
    outlet
    {
        type zeroGradient;
    }

    inlet
    {
        type fixedValue;
        value uniform 1;
    }

    ground
    {
        type zeroGradient;

    }

    "proc.*"
    {
        type            processor;
    }


}


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