openfoam/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/0.orig/ice/p
2016-09-23 16:52:46 +01:00

47 lines
1.3 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/ice";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 100000;
boundaryField
{
symmetry
{
type symmetryPlane;
}
walls
{
type calculated;
value uniform 100000;
}
ice_to_cabin
{
type calculated;
value uniform 100000;
}
ice_to_exterior
{
type calculated;
value uniform 100000;
}
}
// ************************************************************************* //