Forward compatibility: flex
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleFoam / transonicBump / 0 / p
blob1c98a8877e27a9b70c141ebd7ebae1e579ae4fa3
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      p;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [1 -1 -2 0 0 0 0];
19 internalField   uniform 101325;
21 boundaryField
23     INLE1
24     {
25         type            isentropicTotalPressure;
26         U               U;
27         p0              uniform 137491.986;
28         value           uniform 101325;
29     }
31     PRES2
32     {
33         type            fixedValue;
34         value           uniform 101325;
35     }
37     WALL3
38     {
39         type            zeroGradient;
40     }
42     WALL4
43     {
44         type            zeroGradient;
45     }
47     defaultFaces
48     {
49         type            empty;
50     }
53 // ************************************************************************* //