mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2212 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
object T;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 1 0 0 0];
|
|
|
|
internalField uniform 300;
|
|
|
|
boundaryField
|
|
{
|
|
"floor.*"
|
|
{
|
|
type fixedValue;
|
|
value uniform 700;
|
|
}
|
|
|
|
"ceiling.*"
|
|
{
|
|
type compressible::thermalShell;
|
|
active true;
|
|
T T;
|
|
|
|
thermo
|
|
{
|
|
W 50;
|
|
rho 1000;
|
|
kappa 200;
|
|
Cp 600;
|
|
Hf 0;
|
|
emissivity 0;
|
|
}
|
|
|
|
region ceilingShell;
|
|
thermalShellModel thermalShell;
|
|
|
|
qr qr;
|
|
thickness 1e-3;
|
|
|
|
value uniform 300;
|
|
}
|
|
|
|
"fixedWall.*"
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|