initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / sonicLiquidFoam / decompressionTank / 0 / p
blob3b2cb8848a5fb74897d92cb7226f4418a07f2601
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
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 0 0];
19 internalField   uniform 1e+07;
21 boundaryField
23     outerWall       
24     {
25         type            zeroGradient;
26     }
28     axis            
29     {
30         type            symmetryPlane;
31     }
33     nozzle          
34     {
35         type            fixedValue;
36         value           uniform 0;
37     }
39     back            
40     {
41         type            empty;
42     }
44     front           
45     {
46         type            empty;
47     }
50 // ************************************************************************* //