fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / compressible / rhoPorousSimpleFoam / beaverJoseph / constant / polyMesh / blockMeshDict
blob7e2d5f92a4bd70b6b4273811564a905619304586
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     (0 0 -0.1)
22     (8 0 -0.1)
23     (8 1 -0.1)
24     (0 1 -0.1)
25     (0 0 0.1)
26     (8 0 0.1)
27     (8 1 0.1)
28     (0 1 0.1)
29     (0 2 -0.1)
30     (8 2 -0.1)
31     (0 2 0.1)
32     (8 2 0.1)
35 blocks
37     hex (0 1 2 3 4 5 6 7) poro (100 20 1) simpleGrading (1 1 1)
38     hex (3 2 9 8 7 6 11 10) air (100 20 1) simpleGrading (1 1 1)
41 edges
45 patches
47     patch inlet
48     (
49         (0 4 7 3)
50         (3 7 10 8)
51     )
52     patch outlet
53     (
54         (2 6 5 1)
55         (6 2 9 11)
56     )
57     wall upperWall
58     (
59         (8 9 11 10)
60     )
61     wall lowerWall
62     (
63         (1 5 4 0)
64     )
65     empty frontAndBack
66     (
67         (2 3 8 9)
68         (6 7 10 11)
69         (0 3 2 1)
70         (4 5 6 7)
71     )
74 mergePatchPairs
78 // ************************************************************************* //