fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / coupled / conjugateHeatFoam / heatedBlock / constant / polyMesh / blockMeshDict
blob355287c9de179b89f36b6ae8d00f5f794b4820d8
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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 patches
42     patch topAndBottom
43     (
44         (3 7 6 2)
45         (1 5 4 0)
46     )
47     patch left
48     (
49         (0 4 7 3)
50     )
51     patch right
52     (
53         (2 6 5 1)
54     )
55     empty frontAndBack
56     (
57         (0 3 2 1)
58         (4 5 6 7)
59     )
62 mergePatchPairs
66 // ************************************************************************* //