STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / incompressible / icoDyMFoam / turboPassageRotating / system / decomposeParDict
blob996dac2d9187b558a9e8afb9d199beabd22c123b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      decomposeParDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 //- Keep owner and neighbour on same processor for faces in zones:
18 // preserveFaceZones ( interface1_faces interface2_faces );
20 //- Keep owner and neighbour on same processor for faces in patches:
21 // preservePatches ( interface1 interface2 );
23 globalFaceZones
25     interface1_faces
26     interface2_faces
27     rotor_cyclic_upper_faces
28     rotor_cyclic_lower_faces
29 );  // Those are the names of the face zones created previously
31 numberOfSubdomains 4;        // The problem will be decomposed in 4 different processors
33 method          scotch;
34 // method          metis;
36 simpleCoeffs
38      n               (2 2 1);
39      delta           0.001;
42 metisCoeffs
45     processorWeights
46     (
47         1
48         1
49         1
50         1
51     );
55 scotchCoeffs
57     //processorWeights
58     //(
59     //    1
60     //    1
61     //    1
62     //    1
63     //);
64     //writeGraph  true;
65     //strategy "b";
68 distributed     no;
70 roots
74 // ************************************************************************* //