Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / multiphase / cavitatingFoam / les / throttle3D / 0.org / p
blob1a28a8e04d3676fb4b5e71501c8a66117eba8967
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.com                      |
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            zeroGradient;
48     }
51 // ************************************************************************* //