Upgrade case file headers
[foam-extend-3.2.git] / tutorials / basic / scalarTransportFoam / swirlTest / constant / polyMesh / blockMeshDict
blob9a2112aee5251fd2454f1bf36be1a909d22b3267
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 1;
19 vertices
21     (0 0 0)
22     (1 0 0)
23     (2 0 0)
24     (0 1 0)
25     (1 1 0)
26     (2 1 0)
27     (0 0 0.1)
28     (1 0 0.1)
29     (2 0 0.1)
30     (0 1 0.1)
31     (1 1 0.1)
32     (2 1 0.1)
35 blocks
37     hex (0 1 4 3 6 7 10 9) (20 20 1) simpleGrading (1 1 1)
38     hex (1 2 5 4 7 8 11 10) (20 20 1) simpleGrading (1 1 1)
41 edges
45 boundary
47     inlet
48     {
49         type patch;
50         faces
51         (
52             (4 10 11 5)
53         );
54     }
55     outlet
56     {
57         type patch;
58         faces
59         (
60             (3 9 10 4)
61         );
62     }
63     fixedWalls
64     {
65         type wall;
66         faces
67         (
68             (3 0 6 9)
69             (0 1 7 6)
70             (1 2 8 7)
71             (2 5 11 8)
72         );
73     }
76 // ************************************************************************* //