/*--------------------------------*- 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             fixedValue;
    value uniform 300;
  }


  sides
  {
    type            zeroGradient;
  }

  bottom
  {
    type            zeroGradient;
  }

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