Upgrade case file headers
[foam-extend-3.2.git] / applications / utilities / parallelProcessing / decomposePar / decomposeParDict
blobee45cb1c43ec2d550f85e74b058d04f500453214
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     note        "mesh decomposition control dictionary";
14     location    "system";
15     object      decomposeParDict;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 numberOfSubdomains  4;
21 //- Keep owner and neighbour on same processor for faces in zones:
22 // preserveFaceZones (heater solid1 solid3);
24 // Face zones which need to be present on all CPUs in its entirety
25 // globalFaceZones (ggiInside ggiOutside);
27 //- Keep owner and neighbour on same processor for faces in patches:
28 //  (makes sense only for cyclic patches)
29 //preservePatches (cyclic_left_right);
31 method          scotch;
32 // method          hierarchical;
33 // method          simple;
34 // method          metis;
35 // method          manual;
37 simpleCoeffs
39     n           (2 2 1);
40     delta       0.001;
43 hierarchicalCoeffs
45     n           (2 2 1);
46     delta       0.001;
47     order       xyz;
50 metisCoeffs
52  /*
53     processorWeights
54     (
55         1
56         1
57         1
58         1
59     );
60   */
63 scotchCoeffs
65     //processorWeights
66     //(
67     //    1
68     //    1
69     //    1
70     //    1
71     //);
72     //writeGraph  true;
73     //strategy "b";
76 manualCoeffs
78     dataFile    "cellDecomposition";
81 //// Is the case distributed
82 //distributed     yes;
83 //// Per slave (so nProcs-1 entries) the directory above the case.
84 //roots
85 //(
86 //    "/tmp"
87 //    "/tmp"
88 //);
90 // ************************************************************************* //