BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / reactingParcelFilmFoam / rivuletPanel / constant / polyMesh / blockMeshDict
blobc24179275149f1b35d7486a632158b2a4b3f8d2d
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     location    "constant/polyMesh";
14     object      blockMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 1;
20 vertices
22     // front
23     (     0  0  1)
24     ( 0.125  0  1)
25     ( 0.625  0  1)
26     ( 0.750  0  1)
27     (     0  1  1)
28     ( 0.125  1  1)
29     ( 0.625  1  1)
30     ( 0.750  1  1)
32     // back
33     (     0  0  0)
34     ( 0.125  0  0)
35     ( 0.625  0  0)
36     ( 0.750  0  0)
37     (     0  1  0)
38     ( 0.125  1  0)
39     ( 0.625  1  0)
40     ( 0.750  1  0)
43 blocks
45     hex (0 1 9 8 4 5 13 12) (30 1 240) simpleGrading (1 1 1)
46     hex (1 2 10 9 5 6 14 13) (120 1 240) simpleGrading (1 1 1)
47     hex (2 3 11 10 6 7 15 14) (30 1 240) simpleGrading (1 1 1)
50 edges
54 boundary
56     inlet
57     {
58         type patch;
59         faces
60         (
61             (5 6 14 13)
62         );
63     }
65     outlet
66     {
67         type patch;
68         faces
69         (
70             (0 1 9 8)
71             (1 2 10 9)
72             (2 3 11 10)
73         );
74     }
76     sides
77     {
78         type patch;
79         faces
80         (
81             (8 0 4 12)
82             (15 7 3 11)
83             (13 5 4 12)
84             (15 7 6 14)
85             (8 12 13 9)
86             (9 13 14 10)
87             (10 14 15 11)
88         );
89     }
91     filmWalls
92     {
93         type wall;
94         faces
95         (
96             (0 1 5 4)
97             (1 2 6 5)
98             (2 3 7 6)
99         );
100     }
103 mergePatchPairs
107 // ************************************************************************* //