FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

surfaceSplitByPatch.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Application
00025     surfaceSplitByPatch
00026 
00027 Description
00028     Writes regions of triSurface to separate files.
00029 
00030 Usage
00031 
00032     - surfaceSplitByPatch [OPTIONS] <input file>
00033 
00034     @param <input file> \n
00035     @todo Detailed description of argument.
00036 
00037     @param -case <dir>\n
00038     Case directory.
00039 
00040     @param -help \n
00041     Display help message.
00042 
00043     @param -doc \n
00044     Display Doxygen API documentation page for this application.
00045 
00046     @param -srcDoc \n
00047     Display Doxygen source documentation page for this application.
00048 
00049 \*---------------------------------------------------------------------------*/
00050 
00051 #include <OpenFOAM/argList.H>
00052 #include <triSurface/triSurface.H>
00053 
00054 using namespace Foam;
00055 
00056 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00057 // Main program:
00058 
00059 int main(int argc, char *argv[])
00060 {
00061     argList::noParallel();
00062     argList::validArgs.clear();
00063     argList::validArgs.append("input file");
00064     argList args(argc, argv);
00065 
00066     fileName surfName(args.additionalArgs()[0]);
00067 
00068     Info<< "Reading surf from " << surfName << " ..." << nl << endl;
00069 
00070     fileName surfBase = surfName.lessExt();
00071 
00072     word extension = surfName.ext();
00073 
00074     triSurface surf(surfName);
00075 
00076     Info<< "Writing regions to separate files ..."
00077         << nl << endl;
00078 
00079 
00080     const geometricSurfacePatchList& patches = surf.patches();
00081 
00082     forAll(patches, patchI)
00083     {
00084         const geometricSurfacePatch& pp = patches[patchI];
00085 
00086         word patchName = pp.name();
00087 
00088         if (patchName.empty())
00089         {
00090             patchName = "patch" + Foam::name(patchI);
00091         }
00092 
00093         fileName outFile(surfBase + '_' + patchName + '.' + extension);
00094 
00095         Info<< "   Writing patch " << patchName << " to file " << outFile
00096             << endl;
00097 
00098 
00099         // Collect faces of region
00100         boolList includeMap(surf.size(), false);
00101 
00102         forAll(surf, faceI)
00103         {
00104             const labelledTri& f = surf[faceI];
00105 
00106             if (f.region() == patchI)
00107             {
00108                 includeMap[faceI] = true;
00109             }
00110         }
00111 
00112         // Subset triSurface
00113         labelList pointMap;
00114         labelList faceMap;
00115 
00116         triSurface subSurf
00117         (
00118             surf.subsetMesh
00119             (
00120                 includeMap,
00121                 pointMap,
00122                 faceMap
00123             )
00124         );
00125 
00126         subSurf.write(outFile);
00127     }
00128 
00129 
00130     Info << "End\n" << endl;
00131 
00132     return 0;
00133 }
00134 
00135 
00136 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines