fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / icoDyMFoam / turboPassageRotating / constant / polyMesh / boundary.org
bloba3343f16a929cf42369af769910c0c04ca489832
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       polyBoundaryMesh;
13     location    "constant/polyMesh";
14     object      boundary;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
20     inlet
21     {
22         type            patch;
23         nFaces          200;
24         startFace       28100;
25     }
26     outlet
27     {
28         type            patch;
29         nFaces          200;
30         startFace       28300;
31     }
32     fixedWalls
33     {
34         type            wall;
35         nFaces          1400;
36         startFace       28500;
37     }
38     movingwalls
39     {
40         type            patch;
41         nFaces          1400;
42         startFace       29900;
43     }
44     rotor_cyclic_upper
45     {
46         type            cyclicGgi;
47         nFaces          50;
48         startFace       31300;
49         shadowPatch     rotor_cyclic_lower;
50         zone            rotor_cyclic_upper_faces;
51         bridgeOverlap   false;
52         rotationAxis    (0 0 1);
53         rotationAngle   -30;
54         separationOffset (0 0 0);
55     }
56     rotor_cyclic_lower
57     {
58         type            cyclicGgi;
59         nFaces          50;
60         startFace       31350;
61         shadowPatch     rotor_cyclic_upper;
62         zone            rotor_cyclic_lower_faces;
63         bridgeOverlap   false;
64         rotationAxis    (0 0 1);
65         rotationAngle   30;
66         separationOffset (0 0 0);
67     }
68     stator_cyclics
69     {
70         type            cyclic;
71         nFaces          100;
72         startFace       31400;
73         featureCos      0.9;
74     }
75     interface1
76     {
77         type            overlapGgi;
78         nFaces          200;
79         startFace       31500;
80         rotationAxis    (0 0 1);
81         nCopies         12;
82         shadowPatch     interface2;
83         zone            interface1_faces;
84     }
85     interface2
86     {
87         type            overlapGgi;
88         nFaces          200;
89         startFace       31700;
90         rotationAxis    (0 0 1);
91         nCopies         12;
92         shadowPatch     interface1;
93         zone            interface2_faces;
94     }
97 // ************************************************************************* //