BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / compressible / sonicLiquidFoam / decompressionTank / 0 / p
blob7d1d05e75f5fd893e58e27b2d2805f8b30c3d6c6
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 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 // ************************************************************************* //