Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / viscoelastic / viscoelasticFluidFoam / Giesekus / constant / polyMesh / blockMeshDict
blob5ade1aac4024812821c218c8b4b6f58b2c14abd5
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.0032;
19 vertices
21     (0 0 0)
22     (80 0 0)
23     (0 1 0)
24     (80 1 0)
25     (0 2.5 0)
26     (80 2.5 0)
27     (0 4 0)
28     (80 4 0)
29     (130 0 0)
30     (130 1 0)
31     (0 0 0.1)
32     (80 0 0.1)
33     (0 1 0.1)
34     (80 1 0.1)
35     (0 2.5 0.1)
36     (80 2.5 0.1)
37     (0 4 0.1)
38     (80 4 0.1)
39     (130 0 0.1)
40     (130 1 0.1)
43 blocks
46     hex (0 1 3 2 10 11 13 12) (150 30 1) simpleGrading (0.002 0.3 1)
47     hex (2 3 5 4 12 13 15 14) (150 45 1) simpleGrading (0.002 3.333 1)
48     hex (4 5 7 6 14 15 17 16) (150 45 1) simpleGrading (0.002 0.3 1)
49     hex (1 8 9 3 11 18 19 13) (90 30 1) simpleGrading (500 0.3 1)
53 edges
57 boundary
59     inlet
60     {
61         type patch;
62         faces
63         (
64             (0 10 12 2)
65             (2 12 14 4)
66             (4 14 16 6)
67         );
68     }
69     fixedWalls
70     {
71         type wall;
72         faces
73         (
74             (6 16 17 7)
75             (5 7 17 15)
76             (3 5 15 13)
77             (3 13 19 9)
78         );
79     }
80     outlet
81     {
82         type patch;
83         faces
84         (
85             (8 9 19 18)
86         );
87     }
88     simetry
89     {
90         type symmetryPlane;
91         faces
92         (
93             (0 1 11 10)
94             (1 8 18 11)
95         );
96     }
97     frontAndBack
98     {
99         type empty;
100         faces
101         (
102             (0 2 3 1)
103             (2 4 5 3)
104             (4 6 7 5)
105             (1 3 9 8)
106             (10 11 13 12)
107             (12 13 15 14)
108             (14 15 17 16)
109             (11 18 19 13)
110         );
111     }
114 mergePatchPairs
118 // ************************************************************************* //