Files
openfoam/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.org/cabin/T

64 lines
1.7 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 binary;
class volScalarField;
location "0.0001/cabin";
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::turbulentTemperatureCoupledBaffleMixed;
value uniform 260;
Tnbr T;
kappa fluidThermo;
kappaName none;
// windshield 3 mm
thicknessLayers (0.003);
kappaLayers (0.9);
}
}
// ************************************************************************* //