/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2112                                  |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    arch        "LSB;label=32;scalar=64";
    class       volScalarField;
    location    "0/solid";
    object      T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [ 0 0 0 1 0 0 0 ];

internalField   uniform 296;

boundaryField
{
    solidBottom
    {
        type            zeroGradient;
        value           $internalField;
    }
    solidTop
    {
        type            zeroGradient;
        value           $internalField;
    }
    solidWall1
    {
        type            fixedGradient;
        value           uniform 296.15;
        gradient        uniform 2.1097;
    }
    frontAndBack
    {
        type            empty;
        value           uniform 296.15;
    }
    solid_to_fluid
    {
        type            compressible::turbulentTemperatureRadCoupledMixed;
        value           $internalField;
        Tnbr            T;
        kappaMethod     solidThermo;
        qrNbr           qr;
        qr              none;
    }
}


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