/*--------------------------------*- C++ -*----------------------------------*\
Volume-averaged temperature of the ablative material (gas + solid).
\*---------------------------------------------------------------------------*/
FoamFile {
  version     2.0;
  format      ascii;
  class       volScalarField;
  object      Ta;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 1 0 0 0];

internalField   uniform 300;

boundaryField {
  top
  {
    type             uniformFixedValue;
    uniformValue table
    (
        (0 300)
        (375.2763441 1463.3567)
    );
  }


  sides
  {
    type            zeroGradient;
  }

  bottom
  {
    type            zeroGradient;
  }

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