ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleDyMFoam / wingMotion / wingMotion_snappyHexMesh / constant / polyMesh / blockMeshDict
bloba6ced210bb452ef824c6420cf787045e1e73484b
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 1;
20 vertices
22     (-1.2 -2.2 -0.1)
23     ( 5   -2.2 -0.1)
24     ( 5    2.2 -0.1)
25     (-1.2  2.2 -0.1)
26     (-1.2 -2.2  0.1)
27     ( 5   -2.2  0.1)
28     ( 5    2.2  0.1)
29     (-1.2  2.2  0.1)
32 blocks
34     hex (0 1 2 3 4 5 6 7) (36 24 1) simpleGrading (1 1 1)
37 edges
41 boundary
43     topAndBottom
44     {
45         type patch;
46         faces
47         (
48             (3 7 6 2)
49             (1 5 4 0)
50         );
51     }
53     inlet
54     {
55         type patch;
56         faces
57         (
58             (0 4 7 3)
59         );
60     }
62     outlet
63     {
64         type patch;
65         faces
66         (
67             (2 6 5 1)
68         );
69     }
71     front
72     {
73         type empty;
74         faces
75         (
76             (4 5 6 7)
77         );
78     }
80     back
81     {
82         type empty;
83         faces
84         (
85             (0 3 2 1)
86         );
87     }
90 mergePatchPairs
94 // ************************************************************************* //