ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoCentralFoam / LadenburgJet60psi / 0.org / p
blobc18914d453158d0d51837595305c01091f9b9825
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.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     inlet
24     {
25         type            fixedValue;
26         value           uniform 271724;
27     }
29     outlet
30     {
31         type            waveTransmissive;
32         field           p;
33         phi             phi;
34         rho             rho;
35         psi             psi;
36         fieldInf        101325;
37         gamma           1.4;
38         lInf            0.025;
39         value           uniform 101325;
40     }
42     freestream
43     {
44         type            totalPressure;
45         value           uniform 101325;
46         p0              uniform 101325;
47         U               U;
48         phi             phi;
49         rho             none;
50         psi             psi;
51         gamma           1.4;
52     }
54     freestreamInlet
55     {
56         type            zeroGradient;
57     }
59     wedge1 {type wedge;}
60     wedge2 {type wedge;}
63 // ************************************************************************* //