STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / compressible / rhoPisoFoam / les / pitzDaily / 0 / p
blob30e2f4c259c10c79830a1a9be3bb54bdc5436b0c
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
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 1e5;
21 boundaryField
23     inlet
24     {
25         type            zeroGradient;
26     }
28     outlet
29     {
30         type            waveTransmissive;
31         field           p;
32         phi             phi;
33         rho             rho;
34         psi             psi;
35         gamma           1.3;
36         fieldInf        1e5;
37         lInf            0.3;
38         inletOutlet     off;
39         correctSupercritical off;
40         value           uniform 1e5;
41     }
43     upperWall
44     {
45         type            zeroGradient;
46     }
48     lowerWall
49     {
50         type            zeroGradient;
51     }
53     frontAndBack
54     {
55         type            empty;
56     }
59 // ************************************************************************* //