Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / sonicFoam / ras / nacaAirfoil / 0 / p
blob1320b2ad43ec8c8ae9de5498f4e089cc455c31de
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 100000;
21 boundaryField
23     INLE1
24     {
25         type            zeroGradient;
26     }
28     OUTL2
29     {
30         type            waveTransmissive;
31         field           p;
32         phi             phi;
33         rho             rho;
34         psi             psi;
35         gamma           1.3;
36         fieldInf        100000;
37         lInf            1;
38         inletOutlet     off;
39         correctSupercritical off;
40         value           uniform 100000;
41     }
43     SYMP3
44     {
45         type            empty;
46     }
48     WALL10
49     {
50         type            zeroGradient;
51     }
54 // ************************************************************************* //