BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / discreteMethods / dsmcFoam / freeSpacePeriodic / constant / polyMesh / blockMeshDict
blobfda670cd384dacb217bead7ad4d46774736b7d5f
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;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 0.01;
20 vertices
22     (-5 -4 -4)
23     (5 -4 -4)
24     (5 4 -4)
25     (-5 4 -4)
26     (-5 -4 4)
27     (5 -4 4)
28     (5 4 4)
29     (-5 4 4)
32 blocks
34     hex (0 1 2 3 4 5 6 7) (20 16 16) simpleGrading (1 1 1)
37 boundary
39     xPeriodic_half0
40     {
41         type cyclic;
42         faces ((1 2 6 5));
43         neighbourPatch xPeriodic_half1;
44     }
46     xPeriodic_half1
47     {
48         type cyclic;
49         faces ((0 4 7 3));
50         neighbourPatch xPeriodic_half0;
51     }
53     yPeriodic_half0
54     {
55         type cyclic;
56         faces ((2 3 7 6));
57         neighbourPatch yPeriodic_half1;
58     }
60     yPeriodic_half1
61     {
62         type cyclic;
63         faces ((0 1 5 4));
64         neighbourPatch yPeriodic_half0;
65     }
67     zPeriodic_half0
68     {
69         type cyclic;
70         faces ((4 5 6 7));
71         neighbourPatch zPeriodic_half1;
72     }
74     zPeriodic_half1
75     {
76         type cyclic;
77         faces ((0 3 2 1));
78         neighbourPatch zPeriodic_half0;
79     }
82 mergePatchPairs
87 // ************************************************************************* //