54 lines
1.3 KiB
Text
Executable file
54 lines
1.3 KiB
Text
Executable file
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | foam-extend: Open Source CFD
|
|
\\ / O peration | Version: 4.0
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
\\/ M anipulation | For copyright notice see file Copyright
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0";
|
|
object p;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [1 -1 -2 0 0 0 0];
|
|
|
|
internalField uniform 80e5;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type totalPressure;
|
|
rho rho;
|
|
psi none;
|
|
gamma 1.4;
|
|
p0 uniform 80.01e5;
|
|
value uniform 80.01e5;
|
|
}
|
|
outlet
|
|
{
|
|
type fixedValue;
|
|
value uniform 8e+06;
|
|
}
|
|
|
|
upperWall
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
lowerWall
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
frontAndBack
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|