Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / decomposeParDict
blobdbd9377d83be2e55a40be059d1b37c51ae8c7cd0
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
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 method          scotch;
26 // method          hierarchical;
27 // method          simple;
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 scotchCoeffs
45     //processorWeights
46     //(
47     //    1
48     //    1
49     //    1
50     //    1
51     //);
52     //writeGraph  true;
53     //strategy "b";
56 manualCoeffs
58     dataFile    "decompositionData";
62 //// Is the case distributed
63 //distributed     yes;
64 //// Per slave (so nProcs-1 entries) the directory above the case.
65 //roots
66 //(
67 //    "/tmp"
68 //    "/tmp"
69 //);
72 // ************************************************************************* //