openfoam/tutorials/combustion/fireFoam/LES/compartmentFire/0/panelRegion/T
2019-12-23 09:49:23 +00:00

58 lines
1.6 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 294.75;
boundaryField
{
wallPanel_top
{
type externalWallHeatFluxTemperature;
mode coefficient;
Ta uniform 294.75;
h uniform 10;
kappaMethod solidThermo;
value uniform 294.75;
}
wallPanel_side
{
type empty;
}
internalWallPanel_side
{
type empty;
}
"region0_to_.*"
{
type compressible::turbulentTemperatureRadCoupledMixed;
neighbourField T;
kappaMethod solidThermo;
qrNbr qr;
qr none;
value $internalField;
}
}
// ************************************************************************* //