Upgrade case file headers
[foam-extend-3.2.git] / tutorials / discreteMethods / dsmcFoam / freeSpaceStream / constant / polyMesh / blockMeshDict
blob26ba3e41b5537b1454cdbae0430c2750aeafc768
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 0.01;
19 vertices
21     (-5 -4 -4)
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)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (20 16 16) simpleGrading (1 1 1)
36 boundary
38     outlet
39     {
40         type patch;
41         faces
42         (
43             (1 2 6 5)
44         );
45     }
47     inlet
48     {
49         type patch;
50         faces
51         (
52             (0 4 7 3)
53         );
54     }
56     sides
57     {
58         type patch;
59         faces
60         (
61             (2 3 7 6)
62             (0 1 5 4)
63             (4 5 6 7)
64             (0 3 2 1)
65         );
66     }
69 mergePatchPairs
73 // ************************************************************************* //