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

dimensions      [0 0 0 1 0 0 0];

internalField   uniform 300;

boundaryField {
  outlet
  {
    type            zeroGradient;
  }
  bottom
  {
    type            symmetryPlane;
  }
  front
  {
    type            empty;
  }
  back
  {
    type            empty;
  }

  porousMat_to_hotFlow
  {
    type            compressible::turbulentTemperatureCoupledBaffleMixed;
    value           uniform 300;
    Tnbr 		T;
    kappaMethod     lookup;
    kappa		k_abl_sym;
  }
}


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