BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleFoam / TJunctionFan / 0 / p
blob3a346c910cc9f5541fcad0ad0ecb3d88618c99ea
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.x                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     location    "0";
14     object      p;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 2 -2 0 0 0 0];
20 internalField   uniform 0;
22 boundaryField
24     inlet
25     {
26         type            timeVaryingTotalPressure;
27         rho             none;
28         psi             none;
29         gamma           1;
30         p0              40;
31         fileName        "$FOAM_CASE/constant/p0vsTime";
32         outOfBounds     clamp;
33         value           uniform 40;
34     }
35     outlet1
36     {
37         type            fixedValue;
38         value           uniform 10;
39     }
40     outlet2
41     {
42         type            fixedValue;
43         value           uniform 0;
44     }
45     baffles
46     {
47         type            zeroGradient;
48     }
49     fan_half0
50     {
51         type            fan;
52         patchType       cyclic;
53         jump            uniform 0;
54         f               2(100 -0.1);
55         value           uniform 0;
56     }
57     fan_half1
58     {
59         type            fan;
60         patchType       cyclic;
61         jump            uniform 0;
62         f               2(100 -0.1);
63         value           uniform 0;
64     }
65     defaultFaces
66     {
67         type            zeroGradient;
68     }
72 // ************************************************************************* //