BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / incompressible / channelFoam / channel395 / constant / polyMesh / blockMeshDict
blob18cafdd720dee816c6813e8bbc84c7a6d490aa96
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 0 0)
23     (0 1 0)
24     (4 1 0)
25     (0 2 0)
26     (4 2 0)
27     (0 0 2)
28     (4 0 2)
29     (0 1 2)
30     (4 1 2)
31     (0 2 2)
32     (4 2 2)
35 blocks          
37     hex (0 1 3 2 6 7 9 8) (40 25 30) simpleGrading (1 10.7028 1)
38     hex (2 3 5 4 8 9 11 10) (40 25 30) simpleGrading (1 0.0984 1)
41 edges           
45 boundary         
47     bottomWall
48     {
49         type            wall;
50         faces           ((0 1 7 6));
51     }
52     topWall
53     {
54         type            wall;
55         faces           ((4 10 11 5));
56     }
58     sides1_half0
59     {
60         type            cyclic;
61         neighbourPatch  sides1_half1;
62         faces           ((0 2 3 1));
63     }
64     sides1_half1
65     {
66         type            cyclic;
67         neighbourPatch  sides1_half0;
68         faces           ((6 7 9 8));
69     }
71     sides2_half0
72     {
73         type            cyclic;
74         neighbourPatch  sides2_half1;
75         faces           ((2 4 5 3));
76     }
77     sides2_half1
78     {
79         type            cyclic;
80         neighbourPatch  sides2_half0;
81         faces           ((8 9 11 10));
82     }
84     inout1_half0
85     {
86         type            cyclic;
87         neighbourPatch  inout1_half1;
88         faces           ((1 3 9 7));
89     }
90     inout1_half1
91     {
92         type            cyclic;
93         neighbourPatch  inout1_half0;
94         faces           ((0 6 8 2));
95     }
97     inout2_half0
98     {
99         type            cyclic;
100         neighbourPatch  inout2_half1;
101         faces           ((3 5 11 9));
102     }
103     inout2_half1
104     {
105         type            cyclic;
106         neighbourPatch  inout2_half0;
107         faces           ((2 8 10 4));
108     }
111 mergePatchPairs
115 // ************************************************************************* //