initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / topAir / decomposeParDict
blobaad15ee459b6e01cdf6fabba08eb2fa5b8c2a4dd
1 /*-------------------------------*- C++ -*---------------------------------*\
2 |    =========                                                              |
3 |    \\      /     OpenFOAM                                                 |
4 |     \\    /                                                               |
5 |      \\  /       The Open Source CFD Toolbox                              |
6 |       \\/                                        http://www.OpenFOAM.org  |
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 method          scotch;
26 // method          hierarchical;
27 // method          simple;
28 // method          metis;
29 // method          manual;
31 simpleCoeffs
33     n           (2 2 1);
34     delta       0.001;
37 hierarchicalCoeffs
39     n           (2 2 1);
40     delta       0.001;
41     order       xyz;
44 metisCoeffs
46  /*
47     processorWeights
48     (
49         1
50         1
51         1
52         1
53     );
54   */
57 scotchCoeffs
59     //processorWeights
60     //(
61     //    1
62     //    1
63     //    1
64     //    1
65     //);
66     //writeGraph  true;
67     //strategy "b";
70 manualCoeffs
72     dataFile    "decompositionData";
76 //// Is the case distributed
77 //distributed     yes;
78 //// Per slave (so nProcs-1 entries) the directory above the case.
79 //roots           
80 //(
81 //    "/tmp"
82 //    "/tmp"
83 //);
86 // ************************************************************************* //