openfoam/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/steady/0.orig/T

72 lines
1.8 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2011 |
| \\ / 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 293;
boundaryField
{
"(roof|floor|sideWall)"
{
type zeroGradient;
}
humanBody
{
type externalWallHeatFluxTemperature;
mode flux;
q uniform 58; // W/m^2
value uniform 310;
kappaMethod fluidThermo;
kappa none;
Qr none;
}
inlet
{
type fixedValue;
value uniform 293;
}
mouth
{
type fixedValue;
value uniform 310;
}
outlet
{
type inletOutlet;
value $internalField;
inletValue $internalField;
}
"(intake1|intake2|intake3|intake4)"
{
type zeroGradient;
}
"(exhaust_maxX|exhaust_minX|exhaust_maxY|exhaust_minY)"
{
type fixedValue;
value uniform 293;
}
}
// ************************************************************************* //