/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1906                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

 // Solid thermo
thermoType
{
    type            heSolidThermo;
    mixture         pureMixture;
    transport       constIso;
    thermo          hConst;
    equationOfState rhoConst;
    specie          specie;
    energy          sensibleEnthalpy;
}

mixture
{
    specie
    {
        molWeight       20;
    }
    transport
    {
        kappa           ${Kappa};
    }
    thermodynamics
    {
        Hf              0;
        Cp              ${Cp};
    }
    equationOfState
    {
        rho             ${rho};
    }
}

radiation
{
    radiationModel          opaqueSolid;
    absorptionEmissionModel none;
    scatterModel            none;
    transmissivityModel     none;
}

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