BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoCentralFoam / biconic25-55Run35 / constant / polyMesh / blockMeshDict
blobebb187ef7b7c42fa92996b076264583969c1d657
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.1;
19 vertices        
21     (0 0 0)
22     (1 0 0)
23     (1 1 0)
24     (0 1 0)
25     (0 0 0.1)
26     (1 0 0.1)
27     (1 1 0.1)
28     (0 1 0.1)
31 blocks          
33     hex (0 1 2 3 4 5 6 7) (255 127  1) simpleGrading (1 1 1)
36 edges
40 boundary
42     cone
43     {
44         type patch;
45         faces
46         (
47             (1 5 4 0)
48         );
49     }
51     outlet
52     {
53         type patch;
54         faces
55         (
56             (2 6 5 1)
57         );
58     }
60     freestream
61     {
62         type patch;
63         faces
64         (
65             (3 7 6 2)
66         );
67     }
69     centreLeft
70     {
71         type symmetryPlane;
72         faces
73         (
74             (0 4 7 3)
75         );
76     }
78     wedge1
79     {
80         type patch;
81         faces
82         (
83             (0 3 2 1)
84         );
85     }
87     wedge2
88     {
89         type patch;
90         faces
91         (
92             (4 5 6 7)
93         );
94     }
97 mergePatchPairs 
101 // ************************************************************************* //