BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoCentralFoam / obliqueShock / constant / polyMesh / blockMeshDict
blob8856c564001b5a86fa66d444b4c4c7a701f89661
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 1;
19 vertices
21     (0 0 0)
22     (4.1 0 0)
23     (4.1 1 0)
24     (0 1 0)
25     (0 0 0.1)
26     (4.1 0 0.1)
27     (4.1 1 0.1)
28     (0 1 0.1)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (60 30 1) simpleGrading (1 1 1)
36 edges
40 boundary
42     top
43     {
44         type wall;
45         faces
46         (
47             (3 7 6 2)
48         );
49     }
50     inlet
51     {
52         type patch;
53         faces
54         (
55             (0 4 7 3)
56         );
57     }
58     outlet
59     {
60         type patch;
61         faces
62         (
63             (2 6 5 1)
64         );
65     }
66     bottom
67     {
68         type symmetryPlane;
69         faces
70         (
71             (1 5 4 0)
72         );
73     }
74     frontAndBack
75     {
76         type empty;
77         faces
78         (
79             (0 3 2 1)
80             (4 5 6 7)
81         );
82     }
85 mergePatchPairs
89 // ************************************************************************* //