BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoSimplecFoam / squareBend / 0 / p
blobd15f5aa590a94330666cde00fb1ef708bc9f5325
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 110000;
21 boundaryField
23     Default_Boundary_Region
24     {
25         type            zeroGradient;
26     }
27     inlet
28     {
29         //type            zeroGradient;
30         type            mixed;
31         refValue        uniform 110000;
32         refGradient     uniform 0;
33         valueFraction   uniform 0.3;
34     }
35     outlet
36     {
37         type            fixedValue;
38         value           uniform 110000;
40         //type            mixed;
41         //refValue        uniform 110000;
42         //refGradient     uniform 0;
43         //valueFraction   uniform 1;
44         //type            transonicOutletPressure;
45         //U               U;
46         //phi             phi;
47         //gamma           1.4;
48         //psi             psi;
49         //pInf            uniform 110000;
50     }
54 // ************************************************************************* //