mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
80 lines
2.2 KiB
C++
80 lines
2.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: plus |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0/air";
|
|
object T;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 0 0 0 1 0 0 0 ];
|
|
|
|
internalField uniform 300;
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type inletOutlet;
|
|
value uniform 300;
|
|
inletValue uniform 300;
|
|
}
|
|
minX
|
|
{
|
|
type inletOutlet;
|
|
value uniform 300;
|
|
inletValue uniform 300;
|
|
}
|
|
maxX
|
|
{
|
|
type inletOutlet;
|
|
value uniform 300;
|
|
inletValue uniform 300;
|
|
}
|
|
minY
|
|
{
|
|
type inletOutlet;
|
|
value uniform 300;
|
|
inletValue uniform 300;
|
|
}
|
|
maxZ
|
|
{
|
|
type inletOutlet;
|
|
value uniform 300;
|
|
inletValue uniform 300;
|
|
}
|
|
air_to_floor
|
|
{
|
|
type compressible::turbulentTemperatureRadCoupledMixed;
|
|
value uniform 300;
|
|
inletValue uniform 300;
|
|
Tnbr T;
|
|
kappaMethod fluidThermo;
|
|
QrNbr none;
|
|
Qr Qr;
|
|
kappa none;
|
|
}
|
|
air_to_solid
|
|
{
|
|
type compressible::turbulentTemperatureRadCoupledMixed;
|
|
value uniform 300;
|
|
inletValue uniform 300;
|
|
Tnbr T;
|
|
kappaMethod fluidThermo;
|
|
QrNbr none;
|
|
Qr Qr;
|
|
kappa none;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|