BUGFIX: Illegal use of uninitialised value (backport)
[foam-extend-3.2.git] / applications / utilities / parallelProcessing / decomposePar / decomposeParDict
blob6b8391078b1b622417f1cb221f4bfdf656ef7996
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       dictionary;
13     note        "mesh decomposition control dictionary";
14     location    "system";
15     object      decomposeParDict;
18 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
20 numberOfSubdomains  4;
22 //- Keep owner and neighbour on same processor for faces in zones:
23 // preserveFaceZones (heater solid1 solid3);
25 // Face zones which need to be present on all CPUs in its entirety
26 // globalFaceZones (ggiInside ggiOutside);
28 //- Keep owner and neighbour on same processor for faces in patches:
29 //  (makes sense only for cyclic patches)
30 //preservePatches (cyclic_left_right);
33 method          scotch;
34 // method          hierarchical;
35 // method          simple;
36 // method          metis;
37 // method          manual;
39 simpleCoeffs
41     n           (2 2 1);
42     delta       0.001;
45 hierarchicalCoeffs
47     n           (2 2 1);
48     delta       0.001;
49     order       xyz;
52 metisCoeffs
54  /*
55     processorWeights
56     (
57         1
58         1
59         1
60         1
61     );
62   */
65 scotchCoeffs
67     //processorWeights
68     //(
69     //    1
70     //    1
71     //    1
72     //    1
73     //);
74     //writeGraph  true;
75     //strategy "b";
78 manualCoeffs
80     dataFile    "cellDecomposition";
84 //// Is the case distributed
85 //distributed     yes;
86 //// Per slave (so nProcs-1 entries) the directory above the case.
87 //roots
88 //(
89 //    "/tmp"
90 //    "/tmp"
91 //);
94 // ************************************************************************* //