Upgrade case file headers
[foam-extend-3.2.git] / tutorials / viscoelastic / viscoelasticFluidFoam / FENE-CR / constant / polyMesh / blockMeshDict
blob9941af7ef642e71f84be7657757e52f8a797805d
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.001;
19 vertices
21     (0 0 0)
22     (1 0 0)
23     (0 1 0)
24     (0 0 50)         //block one
25     (1 0 50)
26     (0 1 50)
28     (3 0 50)         //block two
29     (0 3 50)
30     (5 0 50)
31     (0 5 50)
33     (0 0 120)
34     (1 0 120)        //block three
35     (0 1 120)
37     (3 0 120)         //block four
38     (0 3 120)
39     (5 0 120)
40     (0 5 120)
44 blocks
47     hex (0 1 2 0 3 4 5 3) (10 10 50) simpleGrading (0.3 1 0.05)
48     hex (3 4 5 3 10 11 12 10) (10 10 60) simpleGrading (0.3 1 20)
49     hex (4 6 7 5 11 13 14 12) (20 10 60) simpleGrading (3 1 20)
50     hex (6 8 9 7 13 15 16 14) (20 10 60) simpleGrading (0.3 1 20)
54 edges
56     arc 1 2 (0.9396926 0.342020 0)
57     arc 4 5 (0.9396926 0.342020 50)
58     arc 6 7 (2.8190779 1.026060 50)
59     arc 8 9 (4.698463 1.7101007 50)
60     arc 11 12 (0.9396926 0.342020 120)
61     arc 13 14 (2.8190779 1.026060 120)
62     arc 15 16 (4.698463 1.7101007 120)
65 boundary
67     inlet
68     {
69         type patch;
70         faces
71         (
72             (10 12 11 10)
73             (12 14 13 11)
74             (14 16 15 13)
75         );
76     }
77     fixedWalls
78     {
79         type wall;
80         faces
81         (
82             (1 4 5 2)
83             (4 6 7 5)
84             (6 8 9 7)
85             (8 15 16 9)
86         );
87     }
88     outlet
89     {
90         type patch;
91         faces
92         (
93             (0 1 2 0)
94         );
95     }
96     simetry
97     {
98         type symmetryPlane;
99         faces
100         (
101             (0 3 4 1)
102             (0 2 5 3)
103             (3 10 11 4)
104             (4 11 13 6)
106             (6 13 15 8)
107             (3 5 12 10)
108             (5 7 14 12)
109             (7 9 16 14)
110         );
111     }
114 mergePatchPairs
118 // ************************************************************************* //