Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / simpleSilencerLaminarIcoIbFoam / save / blockMeshDict
blob273652e10efc4f1547fc4b4c434c32e867700a48
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 1;
19 vertices
21     (-0.8 -0.5 -0.5)     //0
22     (1.2 -0.5 -0.5)      //1
23     (1.2 0.5 -0.5)       //2
24     (-0.8 0.5 -0.5)      //3
26     (-0.8 -0.5 0.5)  //4
27     (1.2 -0.5 0.5)   //5
28     (1.2 0.5 0.5)    //6
29     (-0.8 0.5 0.5)   //7
32 blocks
34     hex (0 1 2 3 4 5 6 7) (80 40 40) simpleGrading (1 1 1)
37 edges
41 patches
43     wall top
44     (
45         (3 7 6 2)
46     )
47     patch inlet
48     (
49         (0 4 7 3)
50     )
51     patch outlet
52     (
53         (2 6 5 1)
54     )
55     wall bottom
56     (
57         (1 5 4 0)
58     )
59     wall back
60     (
61         (0 3 2 1)
62     )
63     wall front
64     (
65         (4 5 6 7)
66     )
69 mergePatchPairs
73 // ************************************************************************* //