initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / cavitatingFoam / les / throttle / 0 / p
blob43b40be486474f36e5f4a1f3ec994b4cf8ca0711
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://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];
19 internalField   uniform 300e5;
21 boundaryField
23     inlet
24     {
25         type            totalPressure;
26         U               U;
27         phi             phiv;
28         rho             rho;
29         psi             none;
30         gamma           1;
31         p0              uniform 300e5;
32     }
34     outlet
35     {
36         type            fixedValue;
37         value           uniform 100e5;
38     }
40     walls
41     {
42         type            zeroGradient;
43     }
45     frontBack
46     {
47         type            empty;
48     }
51 // ************************************************************************* //