BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / multiphase / twoLiquidMixingFoam / lockExchange / constant / polyMesh / blockMeshDict
blobd567bcc25f7a2e167239403fe27d6d3bc8c6e3fc
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       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 1;
19 vertices
21     (0 0 0)
22     (10 0 0)
23     (10 2 0)
24     (0 2 0)
25     (0 0 2)
26     (10 0 2)
27     (10 2 2)
28     (0 2 2));
30 blocks
32     hex (0 1 2 3 4 5 6 7) (200 40 1) simpleGrading (1 1 1)
35 edges
39 boundary
41     left
42     {
43         type wall;
44         faces
45         (
46             (0 4 7 3)
47         );
48     }
49     right
50     {
51         type wall;
52         faces
53         (
54             (1 5 6 2)
55         );
56     }
57     bottom
58     {
59         type wall;
60         faces
61         (
62             (0 1 5 4)
63         );
64     }
65     top
66     {
67         type wall;
68         faces
69         (
70             (3 2 6 7)
71         );
72     }
73     frontBack
74     {
75         type empty;
76         faces
77         (
78             (0 1 2 3)
79             (4 5 6 7)
80         );
81     }
84 mergePatchPairs
88 // ************************************************************************* //