ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / discreteMethods / dsmcFoam / freeSpaceStream / constant / polyMesh / blockMeshDict
blob5c038f9248d2f3645fe87add6811235b0b8954f8
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     outlet
40     {
41         type patch;
42         faces
43         (
44             (1 2 6 5)
45         );
46     }
48     inlet
49     {
50         type patch;
51         faces
52         (
53             (0 4 7 3)
54         );
55     }
57     sides
58     {
59         type patch;
60         faces
61         (
62             (2 3 7 6)
63             (0 1 5 4)
64             (4 5 6 7)
65             (0 3 2 1)
66         );
67     }
70 mergePatchPairs
75 // ************************************************************************* //