Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / porousBumpChannelIb / save / blockMeshDict
blob7756d88e862b91386c6af365ca29480529154eec
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 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16 // block definition for a porosity with an angled inlet/outlet
17 // the porosity is not aligned with the main axes
20 convertToMeters 0.01;
22 vertices
24     // Back plane
25     ( -4.99 -2 -0.1)
26     (  4.99 -2 -0.1)
27     (  4.99  2 -0.1)
28     ( -4.99  2 -0.1)
30     // Front plane
31     ( -4.99 -2  0.1)
32     (  4.99 -2  0.1)
33     (  4.99  2  0.1)
34     ( -4.99  2  0.1)
37 blocks
39     hex (0 1 2 3 4 5 6 7) (200 65 1) simpleGrading (1 1 1)
42 edges
46 patches
48     wall topAndBottom
49     (
50         (0 1 5 4)
51         (2 3 7 6)
52     )
54     patch inlet
55     (
56         (0 4 7 3)
57     )
59     patch outlet
60     (
61         (1 2 6 5)
62     )
65 mergePatchPairs
69 // ************************************************************************* //