BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / reactingParcelFilmFoam / splashPanel / constant / polyMesh / blockMeshDict
blobcc003dd08e30e72d22d5d7816d028ed9d4af8ac3
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     location    "constant/polyMesh";
14     object      blockMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 0.1;
20 vertices
22     //back
23     ( 0   0   0)
24     ( 1   0   0)
25     ( 0  0.5  0)
26     ( 1  0.5  0)
28     // front
29     ( 0   0   1)
30     ( 1   0   1)
31     ( 0  0.5  1)
32     ( 1  0.5  1)
35 blocks
37     hex (0 1 3 2 4 5 7 6 ) (20 10 20) simpleGrading (1 1 1)
40 edges
44 boundary
46     sides
47     {
48         type patch;
49         faces
50         (
51             (1 5 7 3)
52             (4 5 7 6)
53             (4 0 2 6)
54             (7 3 2 6)
55             (0 4 5 1)
56         );
57     }
58     filmWalls
59     {
60         type wall;
61         faces
62         (
63             (0 1 3 2)
64         );
65     }
68 mergePatchPairs
72 // ************************************************************************* //