Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / coupled / conjugateHeatSimpleFoam / conjugateCavity / constant / solid / polyMesh / blockMeshDict
blobba6c45bd17d2f5047a0d61f655bbd288742bf6d8
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.1;
19 vertices
21     (1 0 0)
22     (2 0 0)
23     (2 1 0)
24     (1 1 0)
25     (1 0 0.1)
26     (2 0 0.1)
27     (2 1 0.1)
28     (1 1 0.1)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (10 10 1) simpleGrading (1 1 1)
36 edges
40 boundary
42     topAndBottom
43     {
44         type patch;
45         faces
46         (
47             (3 7 6 2)
48             (1 5 4 0)
49         );
50     }
52     left
53     {
54         type regionCouple;
56         shadowRegion    region0;
57         shadowPatch     right;
58         attached        off;
59         isWall          on;
60         zone            leftZone;
61         master          off;
62         bridgeOverlap   off;
64         faces
65         (
66             (0 4 7 3)
67         );
68     }
70     right
71     {
72         type patch;
73         faces
74         (
75             (2 6 5 1)
76         );
77     }
79     frontAndBack
80     {
81         type empty;
82         faces
83         (
84             (0 3 2 1)
85             (4 5 6 7)
86         );
87     }
90 mergePatchPairs
94 // ************************************************************************* //