BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantSimpleFoam / buoyantCavity / constant / polyMesh / blockMeshDict
blob416f95d93b1f9b6dbf88948cf46de07bf0c5b7d3
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       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 0.001;
19 vertices
21     ( 0     0  -260)
22     (76     0  -260)
23     (76  2180  -260)
24     ( 0  2180  -260)
25     ( 0     0   260)
26     (76     0   260)
27     (76  2180   260)
28     ( 0  2180   260)
31 edges
35 blocks
37     hex (0 1 2 3 4 5 6 7) (35 150 15) simpleGrading (1 1 1)
40 boundary
42     frontAndBack
43     {
44         type wall;
45         faces
46         (
47             (0 1 5 4)
48             (2 3 7 6)
49         );
50     }
52     topAndBottom
53     {
54         type wall;
55         faces
56         (
57             (4 5 6 7)
58             (3 2 1 0)
59         );
60     }
62     hot
63     {
64         type wall;
65         faces
66         (
67             (6 5 1 2)
68         );
69     }
71     cold
72     {
73         type wall;
74         faces
75         (
76             (4 7 3 0)
77         );
78     }
81 mergePatchPairs