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

dimensions      [ 0 0 0 1 0 0 0 ];

internalField   uniform 300;

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

    tptWalls
    {
        type            zeroGradient;
    }
    tpt_to_si
    {
        type            compressible::turbulentTemperatureCoupledBaffleMixed;
        value           $internalField;
        Tnbr            T;
    }
    tpt_to_copper
    {
        type            compressible::turbulentTemperatureCoupledBaffleMixed;
        value           $internalField;
        Tnbr            T;
    }
	tptInlet
	{
		type	externalWallHeatFluxTemperature;
		mode	coefficient;
		Ta	uniform 300;
		h	uniform 6.6;
		value	$internalField;
	}
	tptOutlet
	{
		type	externalWallHeatFluxTemperature;
		mode	coefficient;
		Ta	uniform 300;
		h	uniform 6.6;
		value	$internalField;
	}
}

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