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

dimensions      [0 0 0 1 0 0 0];

internalField   uniform 3863;

boundaryField {
  wedge_neg
  {
    type            wedge;
  }
  wedge_pos
  {
    type            wedge;
  }

  top
  {
    type            totalTemperature;
    gamma           1.4;
    T0              uniform 3863;
  }
  bottom
  {
    type            inletOutlet;
    value           uniform 3863;
    inletValue      uniform 3863;
  }
  hotFlow_to_demiseMat
  {
    type            compressible::turbulentTemperatureRadCoupledMixed;
    value           uniform 310;
    Tnbr            Ta;
    kappaMethod     fluidThermo;
    QrNbr           Qr;
    Qr              none;
  }

  hotFlow_to_ceramicMat
  {
    type            compressible::turbulentTemperatureRadCoupledMixed;
    value           uniform 310;
    Tnbr            Ta;
    kappaMethod     fluidThermo;
    QrNbr           Qr;
    Qr              none;
  }
  lateral
  {
    type            zeroGradient;
  }


}


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