/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  5                                     |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      AIR;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 1;
#include        "include/jetCoeffs"

boundaryField
{

  // #include        "include/sidesGroundContainerZeroGradient"

  "side.*"
  {
    type        inletOutlet;
    inletValue  uniform 1;
  }

  ground
  {
    type        fixedValue;
    value       uniform 1;
  }

  container
  {
    type        zeroGradient;
  }

  base
  {
    type        zeroGradient;
  }

  inlet
  {
    type        fixedValue;
    value       $AIRJet;
  }

}
// ************************************************************************* //
