Upgrade case file headers
[foam-extend-3.2.git] / tutorials / multiphase / barotropicCavitatingFoam / nozzle / constant / polyMesh / blockMeshDict
blobbe0f03e5ef7e3cff6dc48fd3fb20c7c31b8f8653
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.0001;
19 vertices
21     ( -10   0   0)
22     (   0   0   0)
23     (  10   0   0)
24     (  30   0   0)
26     ( -10   1   0)
27     (   0   1   0)
28     (  10   1   0)
29     (  30   1   0)
31     ( -10   5   0)
32     (   0   5   0)
33     (  10   5   0)
34     (  30   5   0)
36     ( -10   0   0.1)
37     (   0   0   0.1)
38     (  10   0   0.1)
39     (  30   0   0.1)
41     ( -10   1   0.1)
42     (   0   1   0.1)
43     (  10   1   0.1)
44     (  30   1   0.1)
46     ( -10   5   0.1)
47     (   0   5   0.1)
48     (  10   5   0.1)
49     (  30   5   0.1)
52 edges
53 ();
55 blocks
57     hex (0 1 5 4 12 13 17 16) (10 20 1) simpleGrading (0.2 1 1)
58     hex (1 2 6 5 13 14 18 17) (50 20 1) simpleGrading (1 1 1)
59     hex (2 3 7 6 14 15 19 18) (30 20 1) simpleGrading (5 1 1)
60     hex (4 5 9 8 16 17 21 20) (10 30 1) simpleGrading (0.2 5 1)
61     hex (6 7 11 10 18 19 23 22) (30 30 1) simpleGrading (5 5 1)
64 boundary
66     in
67     {
68         type patch;
69         faces
70         (
71         (0 12 16 4)
72         (4 16 20 8)
73         );
74     }
76     out
77     {
78         type patch;
79         faces
80         (
81         (3 7 19 15)
82         (7 11 23 19)
83         );
84     }
86     bottom
87     {
88         type symmetryPlane;
89         faces
90         (
91         (0 1 13 12)
92         (1 2 14 13)
93         (2 3 15 14)
94         );
95     }
97     topWall
98     {
99         type wall;
100         faces
101         (
102         (8 20 21 9)
103         (9 21 17 5)
104         (5 17 18 6)
105         (6 18 22 10)
106         (10 22 23 11)
107         );
108     }
111 // ************************************************************************* /