ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / boundaryFoam / boundaryWallFunctions / constant / polyMesh / boundary
blobb5bfc1bdb3a943023caa71150631809b2baedb2a
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
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     lowerWall
21     {
22         type            wall;
23         nFaces          1;
24         startFace       79;
25     }
26     upperWall
27     {
28         type            wall;
29         nFaces          1;
30         startFace       80;
31     }
32     front
33     {
34         type            cyclic;
35         nFaces          80;
36         startFace       81;
37         matchTolerance  0.0001;
38         neighbourPatch  back;
39     }
40     back
41     {
42         type            cyclic;
43         nFaces          80;
44         startFace       161;
45         matchTolerance  0.0001;
46         neighbourPatch  front;
47     }
48     defaultFaces
49     {
50         type            empty;
51         nFaces          160;
52         startFace       241;
53     }
56 // ************************************************************************* //