53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 3.2 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
object p;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [1 -1 -2 0 0 0 0];
|
|
|
|
internalField uniform 101325;
|
|
|
|
boundaryField
|
|
{
|
|
INLE1
|
|
{
|
|
type isentropicTotalPressure;
|
|
U U;
|
|
p0 uniform 137491.986;
|
|
value uniform 101325;
|
|
}
|
|
|
|
PRES2
|
|
{
|
|
type fixedValue;
|
|
value uniform 101325;
|
|
}
|
|
|
|
WALL3
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
WALL4
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|