Files
openfoam/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/0.org/cabin/H2O
2015-11-03 14:42:08 -08:00

59 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object H2O;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField uniform 0.01;
boundaryField
{
".*"
{
type zeroGradient;
value uniform 0.01;
}
cabin_to_windshield
{
type fixedGradient;
gradient uniform 0.0;
}
inlet
{
type uniformFixedValue;
uniformValue table
(
(0 0.01)
(60 0.01)
(61 0.00)
(100 0.00)
);
}
outlet
{
type inletOutlet;
value uniform 0.01;
inletValue uniform 0.01;
}
symmetry
{
type symmetryPlane;
}
}
// ************************************************************************* //