BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / manipulation / mergeMeshes / mergeMeshes.C
blob99631e1e49adf47f741be5f74a352f7f1800636a
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
25     Merge two meshes.
27 \*---------------------------------------------------------------------------*/
29 #include "argList.H"
30 #include "Time.H"
31 #include "mergePolyMesh.H"
33 using namespace Foam;
35 void getRootCase(fileName& casePath)
37     casePath.clean();
39     if (casePath.empty() || casePath == ".")
40     {
41         // handle degenerate form and '.'
42         casePath = cwd();
43     }
44     else if (casePath[0] != '/' && casePath.name() == "..")
45     {
46         // avoid relative cases ending in '..' - makes for very ugly names
47         casePath = cwd()/casePath;
48         casePath.clean();
49     }
53 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54 // Main program:
56 int main(int argc, char *argv[])
58     argList::addNote
59     (
60         "merge two meshes"
61     );
63     argList::noParallel();
64     argList::validArgs.append("masterCase");
65     argList::addOption
66     (
67         "masterRegion",
68         "name",
69         "specify alternative mesh region for the master mesh"
70     );
72     argList::validArgs.append("addCase");
73     argList::addOption
74     (
75         "addRegion",
76         "name",
77         "specify alternative mesh region for the additional mesh"
78     );
80     argList args(argc, argv);
81     if (!args.check())
82     {
83          FatalError.exit();
84     }
86     fileName masterCase = args[1];
87     word masterRegion = polyMesh::defaultRegion;
88     args.optionReadIfPresent("masterRegion", masterRegion);
90     fileName addCase = args[2];
91     word addRegion = polyMesh::defaultRegion;
92     args.optionReadIfPresent("addRegion", addRegion);
94     getRootCase(masterCase);
95     getRootCase(addCase);
97     Info<< "Master:      " << masterCase << "  region " << masterRegion << nl
98         << "mesh to add: " << addCase    << "  region " << addRegion << endl;
100     #include "createTimes.H"
102     Info<< "Reading master mesh for time = " << runTimeMaster.timeName() << nl;
104     Info<< "Create mesh\n" << endl;
105     mergePolyMesh masterMesh
106     (
107         IOobject
108         (
109             masterRegion,
110             runTimeMaster.timeName(),
111             runTimeMaster
112         )
113     );
116     Info<< "Reading mesh to add for time = " << runTimeToAdd.timeName() << nl;
118     Info<< "Create mesh\n" << endl;
119     polyMesh meshToAdd
120     (
121         IOobject
122         (
123             addRegion,
124             runTimeToAdd.timeName(),
125             runTimeToAdd
126         )
127     );
129     runTimeMaster++;
131     Info<< "Writing combined mesh to " << runTimeMaster.timeName() << endl;
133     masterMesh.addMesh(meshToAdd);
134     masterMesh.merge();
135     masterMesh.polyMesh::write();
137     Info<< "\nEnd\n" << endl;
139     return 0;
143 // ************************************************************************* //