Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / pimpleDyMFoam / wingMotion / wingMotion2D_simpleFoam / system / createPatchDict
blob752ea409ebd1759933b835bba30a761cee2f0044
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      createPatchDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Tolerance used in matching faces. Absolute tolerance is span of
18 // face times this factor. To load incorrectly matches meshes set this
19 // to a higher value.
20 matchTolerance 1E-3;
22 // Do a synchronisation of coupled points after creation of any patches.
23 // Note: this does not work with points that are on multiple coupled patches
24 //       with transformations.
25 pointSync true;
27 // Patches to create.
28 patchInfo
30     {
31         name topAndBottom;
32         dictionary
33         {
34             type patch;
35         }
36         constructFrom patches;
37         patches ( auto0 auto2 );
38     }
40     {
41         name inlet;
42         dictionary
43         {
44             type patch;
45         }
46         constructFrom patches;
47         patches ( auto1 );
48     }
50     {
51         name outlet;
52         dictionary
53         {
54             type patch;
55         }
56         constructFrom patches;
57         patches ( auto3 );
58     }
60     {
61         name wing;
62         dictionary
63         {
64             type wall;
65         }
66         constructFrom patches;
67         patches ( auto4 );
68     }
70     {
71         name symBack;
72         dictionary
73         {
74             type empty;
75         }
76         constructFrom patches;
77         patches ( auto5 );
78     }
80     {
81         name symFront;
82         dictionary
83         {
84             type empty;
85         }
86         constructFrom patches;
87         patches ( auto6 );
88     }