Upgrade case file headers
[foam-extend-3.2.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / bottomAir / decomposeParDict
blob911f42e7faf43fa58ccb26c9d7b09a808aa20afc
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 method          scotch;
25 // method          hierarchical;
26 // method          simple;
27 // method          metis;
28 // method          manual;
30 simpleCoeffs
32     n           (2 2 1);
33     delta       0.001;
36 hierarchicalCoeffs
38     n           (2 2 1);
39     delta       0.001;
40     order       xyz;
43 metisCoeffs
45  /*
46     processorWeights
47     (
48         1
49         1
50         1
51         1
52     );
53   */
56 scotchCoeffs
58     //processorWeights
59     //(
60     //    1
61     //    1
62     //    1
63     //    1
64     //);
65     //writeGraph  true;
66     //strategy "b";
69 manualCoeffs
71     dataFile    "decompositionData";
74 //// Is the case distributed
75 //distributed     yes;
76 //// Per slave (so nProcs-1 entries) the directory above the case.
77 //roots
78 //(
79 //    "/tmp"
80 //    "/tmp"
81 //);
83 // ************************************************************************* //