fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / icoDyMFoam / turboPassageRotating / system / decomposeParDict
blobdb6159e09c5013aa7cc53c36aa3d89423a0a06c6
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.0                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
13     class           dictionary;
14     object          decomposeParDict;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 //- Keep owner and neighbour on same processor for faces in zones:
20 // preserveFaceZones ( interface1_faces interface2_faces );
22 //- Keep owner and neighbour on same processor for faces in patches:
23 // preservePatches ( interface1 interface2 );
25 globalFaceZones
27     interface1_faces
28     interface2_faces
29     rotor_cyclic_upper_faces
30     rotor_cyclic_lower_faces
31 );  // Those are the names of the face zones created previously
33 numberOfSubdomains 4;        // The problem will be decomposed in 4 different processors
35 method          scotch;
36 // method          metis;
38 simpleCoeffs
40      n               (2 2 1);
41      delta           0.001;
44 metisCoeffs
47     processorWeights
48     (
49         1
50         1
51         1
52         1
53     );
57 scotchCoeffs
59     //processorWeights
60     //(
61     //    1
62     //    1
63     //    1
64     //    1
65     //);
66     //writeGraph  true;
67     //strategy "b";
70 distributed     no;
72 roots
77 // ************************************************************************* //