Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / mesh / cfMesh / pMesh / multipleOrifices / system / meshDict
blobd38988a781414f397a01cf0620059219c32e832d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                |
3 | \\      /  F ield         | cfMesh: A library for mesh generation          |
4 |  \\    /   O peration     |                                                |
5 |   \\  /    A nd           | Author: Franjo Juretic                         |
6 |    \\/     M anipulation  | E-mail: franjo.juretic@c-fields.com            |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version   2.0;
12     format    ascii;
13     class     dictionary;
14     location  "system";
15     object    meshDict;
18 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
20 surfaceFile "multipleOrifices.stl";
22 maxCellSize 5.0;
24 //boundaryCellSize 2.0;
26 localRefinement
28     "orifice01.*"
29     {
30         cellSize 0.1;
31     }
33     "orifice02.*"
34     {
35         cellSize 0.2;
36     }
38     "orifice0[3-6].*"
39     {
40         cellSize 0.3;
41     }
43     "tubes.*"
44     {
45         cellSize 0.4;
46     }
49 boundaryLayers
51     nLayers 1;
54 renameBoundary
56     defaultName        fixedWalls;
57     defaultType        wall;
59     newPatchNames
60     {
61         "inlet.*"
62         {
63             newName     inlet;
64             newType     patch;
65         }
67         "outlet.*"
68         {
69             newName     outlet;
70             newType     patch;
71         }
72     }
76 workflowControls
78 //stopAfter templateGeneration;
79 //stopAfter surfaceTopology;
80 //stopAfter surfaceProjection;
81 //stopAfter patchAssignment;
82 //stopAfter edgeExtraction;
83 //stopAfter boundaryLayerGeneration;
84 //stopAfter meshOptimisation;
85 //stopAfter boundaryLayerRefinement;
87 //restartFromLatestStep 1;
91 // ************************************************************************* //