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

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 0;
#include        "include/jetCoeffs"

boundaryField
{
  // #include      "include/sidesGroundContainerZeroGradient"


  "side.*"
  {
    type        inletOutlet;
    inletValue  uniform 0;
  }
  //
  // side_y_plus
  // {
  //   type inletOutlet;
  //   inletValue uniform 0;
  // }

  ground
  {
    type        fixedValue;
    value       uniform 0;
    //
    // type        zeroGradient;
  }

  container
  {
    type        zeroGradient;
  }

  base
  {
    type        zeroGradient;
  }

  inlet
  {
    type        fixedValue;
    value       $H2Jet;
  }

}

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