openfoam/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/cabin/T
Kutalmis Bercin c47eb2fe80 TUT: replace turbulentTemperatureCoupledBaffleMixed boundary condition
The turbulentTemperatureCoupledBaffleMixed boundary condition
has been superseded by the turbulentTemperatureRadCoupledMixed condition

TUT: injectorPipe: remove an unused entry

TUT: waveMakerFlap: remove uncompressed entry
2021-12-15 10:17:04 +00:00

67 lines
1.6 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2106 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
class volScalarField;
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 260;
boundaryField
{
inlet
{
type uniformFixedValue;
uniformValue table
(
(0 260)
(10 293)
(1000 293)
);
}
outlet
{
type inletOutlet;
inletValue uniform 260;
value uniform 260;
}
symmetry
{
type symmetryPlane;
}
walls
{
type zeroGradient;
}
cabin_to_ice
{
type compressible::turbulentTemperatureRadCoupledMixed;
value uniform 260;
Tnbr T;
kappaMethod fluidThermo;
kappa none;
// windshield 3 mm
thicknessLayers (0.003);
kappaLayers (0.9);
}
}
// ************************************************************************* //