Forward compatibility: flex
[foam-extend-3.2.git] / applications / utilities / mesh / generation / cfMesh / patchesToSubsets / patchesToSubsets.C
blob8ed06b1e4b4febfd8f61104981326511d6b09709
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Description
25     Converts specified patches into subsets
27 \*---------------------------------------------------------------------------*/
29 #include "argList.H"
30 #include "objectRegistry.H"
31 #include "foamTime.H"
32 #include "triSurf.H"
33 #include "triFaceList.H"
34 #include "labelLongList.H"
35 #include "IFstream.H"
36 #include "OFstream.H"
38 using namespace Foam;
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 int main(int argc, char *argv[])
44     argList::noParallel();
45     argList::validArgs.clear();
47     argList::validArgs.append("input surface file");
48     argList::validArgs.append("output surface file");
49     argList args(argc, argv);
51     fileName inFileName(args.args()[1]);
52     fileName outFileName(args.args()[2]);
54     if( outFileName.ext() != "fms" )
55         Warning << "The subsets cann only be saved in the .fms format" << endl;
57     triSurf origSurf(inFileName);
59     wordList patchNames(origSurf.patches().size());
60     forAll(origSurf.patches(), patchI)
61         patchNames[patchI] = origSurf.patches()[patchI].name();
63     forAll(patchNames, patchI)
64     {
65         labelLongList subsetFacets;
66         forAll(origSurf, triI)
67         {
68             if( origSurf[triI].region() == patchI )
69                 subsetFacets.append(triI);
70         }
72         const label subsetId = origSurf.addFacetSubset(patchNames[patchI]);
74         forAll(subsetFacets, i)
75             origSurf.addFacetToSubset(subsetId, subsetFacets[i]);
76     }
78     origSurf.writeSurface(outFileName);
80     Info << "End\n" << endl;
82     return 0;
85 // ************************************************************************* //