Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / coupled / conjugateHeatFoam / conjugateCavity / constant / polyMesh / blockMeshDict
blobc57ae6ed3488767da62500bfc24e74c4eaa739e4
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     (0 0 0)
22     (1 0 0)
23     (1 1 0)
24     (0 1 0)
25     (0 0 0.1)
26     (1 0 0.1)
27     (1 1 0.1)
28     (0 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     movingWall
43     {
44         type wall;
45         faces
46         (
47             (3 7 6 2)
48         );
49     }
50     left
51     {
52         type wall;
53         faces
54         (
55             (0 4 7 3)
56         );
57     }
58     right
59     {
60         type regionCouple;
62         shadowRegion    solid;
63         shadowPatch     left;
64         attached        off;
65         isWall          on;
67         zone            rightZone;
68         master          on;
69         bridgeOverlap   off;
71         faces
72         (
73             (2 6 5 1)
74         );
75     }
76     bottom
77     {
78         type wall;
79         faces
80         (
81             (1 5 4 0)
82         );
83     }
84     frontAndBack
85     {
86         type empty;
87         faces
88         (
89             (0 3 2 1)
90             (4 5 6 7)
91         );
92     }
95 mergePatchPairs
99 // ************************************************************************* //