/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -1 -2 0 0]; internalField uniform 1e5; boundaryField { frontback { type empty; } inlet { type uniformTotalPressure; p0 3410000; // only used for restarts U U; phi phi; rho none; psi none; gamma 1; // value uniform 40; pressure tableFile; tableFileCoeffs { fileName "$FOAM_CASE/constant/pinlet" outOfBounds clamp; } } outlet { type fixedValue; value uniform 1e5; } nozzleWall { type zeroGradient; } fixedWall { type zeroGradient; } } // ************************************************************************* //