BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / test / router / Test-processorRouter.C
blob31a396d9c87a62237c20ff2c643c30c5bd26d0c2
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Description
26 \*---------------------------------------------------------------------------*/
28 #include "argList.H"
29 #include "label.H"
30 #include "labelList.H"
31 #include "OStringStream.H"
32 #include "IStringStream.H"
33 #include "OFstream.H"
34 #include "IFstream.H"
35 #include "point.H"
36 #include "Time.H"
37 #include "fvMesh.H"
38 #include "router.H"
39 #include "processorPolyPatch.H"
40 #include "typeInfo.H"
41 #include "Gather.H"
44 using namespace Foam;
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 // Get list of my processor neighbours
49 labelList procNeighbours(const polyMesh& mesh)
51     word procLabel = '[' + word(name(Pstream::myProcNo())) + "]-";
53     label nNeighbours = 0;
55     forAll(mesh.boundaryMesh(), patchI)
56     {
57         if (isA<processorPolyPatch>(mesh.boundaryMesh()[patchI]))
58         {
59             nNeighbours++;
60         }
61     }
63     labelList neighbours(nNeighbours);
65     nNeighbours = 0;
67     forAll(mesh.boundaryMesh(), patchI)
68     {
69         if (isA<processorPolyPatch>(mesh.boundaryMesh()[patchI]))
70         {
71             const polyPatch& patch = mesh.boundaryMesh()[patchI];
73             const processorPolyPatch& procPatch =
74                 refCast<const processorPolyPatch>(patch);
76             label procId = procPatch.neighbProcNo() - Pstream::firstSlave() + 1;
78             neighbours[nNeighbours++] = procId;
79         }
80     }
82     return neighbours;
86 // Calculate some average position for mesh.
87 point meshCentre(const polyMesh& mesh)
89     return average(mesh.points());
93 // Main program:
96 int main(int argc, char *argv[])
98 #   include "setRootCase.H"
99 #   include "createTime.H"
100 #   include "createMesh.H"
102     word procLabel = '[' + word(name(Pstream::myProcNo())) + "]-";
104     if (!Pstream::parRun())
105     {
106         FatalErrorIn(args.executable())
107             << "Please run in parallel" << exit(FatalError);
108     }
110     // 'Gather' processor-processor topology
111     Gather<labelList> connections
112     (
113         static_cast<const labelList&>(procNeighbours(mesh))
114     );
116     // Collect centres of individual meshes (for visualization only)
117     Gather<point> meshCentres(meshCentre(mesh));
119     if (!Pstream::master())
120     {
121         return 0;
122     }
125     //
126     // At this point we have the connections between processors and the
127     // processor-mesh centres.
128     //
130     Info<< "connections:" << connections << endl;
131     Info<< "meshCentres:" << meshCentres << endl;
134     //
135     // Dump connections and meshCentres to OBJ file
136     //
138     fileName fName("decomposition.obj");
140     Info<< "Writing decomposition to " << fName << endl;
142     OFstream objFile(fName);
144     // Write processors as single vertex in centre of mesh
145     forAll(meshCentres, procI)
146     {
147         const point& pt = meshCentres[procI];
149         objFile << "v " << pt.x() << ' ' << pt.y() << ' ' << pt.z() << endl;
150     }
151     // Write connections as lines between processors (duplicated)
152     forAll(connections, procI)
153     {
154         const labelList& nbs = connections[procI];
156         forAll(nbs, nbI)
157         {
158             objFile << "l " << procI + 1 << ' ' << nbs[nbI] + 1 << endl;
159         }
160     }
163     //
164     // Read paths to route from dictionary
165     //
167     IFstream dictFile("routerDict");
169     dictionary routeDict(dictFile);
171     labelListList paths(routeDict.lookup("paths"));
175     //
176     // Iterate over routing. Route as much as possible during each iteration
177     // and stop if all paths have been routed. No special ordering to maximize
178     // routing during one iteration.
179     //
181     boolList routeOk(paths.size(), false);
182     label nOk = 0;
184     label iter = 0;
186     while (nOk < paths.size())
187     {
188         Info<< "Iteration:" << iter << endl;
189         Info<< "---------------" << endl;
192         // Dump to OBJ file
194         fileName fName("route_" + name(iter) + ".obj");
195         Info<< "Writing route to " << fName << endl;
197         OFstream objFile(fName);
199         forAll(meshCentres, procI)
200         {
201             const point& pt = meshCentres[procI];
203             objFile << "v " << pt.x() << ' ' << pt.y() << ' ' << pt.z()
204                     << endl;
205         }
208         // Router
209         router cellRouter(connections, meshCentres);
211         // Try to route as many paths possible during this iteration.
212         forAll(paths, pathI)
213         {
214             if (!routeOk[pathI])
215             {
216                 const labelList& path = paths[pathI];
218                 Info<< "Trying to route path " << pathI
219                     << " nodes " << path << endl;
221                 routeOk[pathI] = cellRouter.route(path, -(pathI + 1));
223                 Info<< "Result of routing:" << routeOk[pathI] << endl;
225                 if (routeOk[pathI])
226                 {
227                     nOk++;
229                     // Dump route as lines.
230                     labelList route(cellRouter.getRoute(-(pathI + 1)));
232                     for (label elemI = 1; elemI < route.size(); elemI++)
233                     {
234                         objFile
235                             << "l " << route[elemI-1]+1 << ' '
236                             << route[elemI]+1 << endl;
237                     }
238                     Info<< "route:" << route << endl;
239                 }
240             }
241         }
242         Info<< endl;
244         iter++;
245     }
247     Info<< "End\n" << endl;
249     return 0;
253 // ************************************************************************* //