mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev-OpenCFD |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0/air";
|
|
object p;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 1 -1 -2 0 0 0 0 ];
|
|
|
|
internalField uniform 100000;
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type calculated;
|
|
value uniform 100000;
|
|
}
|
|
minX
|
|
{
|
|
type calculated;
|
|
value uniform 100000;
|
|
}
|
|
maxX
|
|
{
|
|
type calculated;
|
|
value uniform 100000;
|
|
}
|
|
minY
|
|
{
|
|
type calculated;
|
|
value uniform 100000;
|
|
}
|
|
maxZ
|
|
{
|
|
type calculated;
|
|
value uniform 100000;
|
|
}
|
|
air_to_floor
|
|
{
|
|
type calculated;
|
|
value uniform 100000;
|
|
}
|
|
air_to_solid
|
|
{
|
|
type calculated;
|
|
value uniform 100000;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|