initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / manipulation / mergeMeshes / mergeMeshes.C
blob28955c4d6f7831cf7ab0d9b20a82d522c931f36d
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Description
26     Merge two meshes.
28 \*---------------------------------------------------------------------------*/
30 #include "argList.H"
31 #include "Time.H"
32 #include "mergePolyMesh.H"
34 using namespace Foam;
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
37 // Main program:
39 int main(int argc, char *argv[])
41     argList::noParallel();
42 #   include "setRoots.H"
43 #   include "createTimes.H"
45     Info<< "Reading master mesh for time = " << runTimeMaster.timeName() << endl;
47     Info<< "Create mesh\n" << endl;
48     mergePolyMesh masterMesh
49     (
50         IOobject
51         (
52             mergePolyMesh::defaultRegion,
53             runTimeMaster.timeName(),
54             runTimeMaster
55         )
56     );
59     Info<< "Reading mesh to add for time = " << runTimeToAdd.timeName() << endl;
61     Info<< "Create mesh\n" << endl;
62     polyMesh meshToAdd
63     (
64         IOobject
65         (
66             mergePolyMesh::defaultRegion,
67             runTimeToAdd.timeName(),
68             runTimeToAdd
69         )
70     );
72     runTimeMaster++;
74     Info<< "Writing combined mesh to " << runTimeMaster.timeName() << endl;
76     masterMesh.addMesh(meshToAdd);
77     masterMesh.merge();
78     masterMesh.polyMesh::write();
80     Info << nl << "End" << endl;
82     return 0;
86 // ************************************************************************* //