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

patchToFace.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 \*---------------------------------------------------------------------------*/
00025 
00026 #include "patchToFace.H"
00027 #include <OpenFOAM/polyMesh.H>
00028 
00029 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00030 
00031 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
00032 
00033 namespace Foam
00034 {
00035 
00036 defineTypeNameAndDebug(patchToFace, 0);
00037 
00038 addToRunTimeSelectionTable(topoSetSource, patchToFace, word);
00039 
00040 addToRunTimeSelectionTable(topoSetSource, patchToFace, istream);
00041 
00042 }
00043 
00044 
00045 Foam::topoSetSource::addToUsageTable Foam::patchToFace::usage_
00046 (
00047     patchToFace::typeName,
00048     "\n    Usage: patchToFace patch\n\n"
00049     "    Select all faces in the patch. Note:accepts wildcards for patch.\n\n"
00050 );
00051 
00052 
00053 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
00054 
00055 void Foam::patchToFace::combine(topoSet& set, const bool add) const
00056 {
00057     bool hasMatched = false;
00058 
00059     forAll(mesh_.boundaryMesh(), patchI)
00060     {
00061         const polyPatch& pp = mesh_.boundaryMesh()[patchI];
00062 
00063         if (patchName_.match(pp.name()))
00064         {
00065             Info<< "    Found matching patch " << pp.name()
00066                 << " with " << pp.size() << " faces." << endl;
00067 
00068             hasMatched = true;
00069 
00070 
00071             for
00072             (
00073                 label faceI = pp.start();
00074                 faceI < pp.start() + pp.size();
00075                 faceI++
00076             )
00077             {
00078                 addOrDelete(set, faceI, add);
00079             }
00080         }
00081     }
00082 
00083     if (!hasMatched)
00084     {
00085         WarningIn("patchToFace::combine(topoSet&, const bool)")
00086             << "Cannot find any patch named " << patchName_ << endl
00087             << "Valid names are " << mesh_.boundaryMesh().names() << endl;
00088     }
00089 }
00090 
00091 
00092 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
00093 
00094 // Construct from components
00095 Foam::patchToFace::patchToFace
00096 (
00097     const polyMesh& mesh,
00098     const word& patchName
00099 )
00100 :
00101     topoSetSource(mesh),
00102     patchName_(patchName)
00103 {}
00104 
00105 
00106 // Construct from dictionary
00107 Foam::patchToFace::patchToFace
00108 (
00109     const polyMesh& mesh,
00110     const dictionary& dict
00111 )
00112 :
00113     topoSetSource(mesh),
00114     patchName_(dict.lookup("name"))
00115 {}
00116 
00117 
00118 // Construct from Istream
00119 Foam::patchToFace::patchToFace
00120 (
00121     const polyMesh& mesh,
00122     Istream& is
00123 )
00124 :
00125     topoSetSource(mesh),
00126     patchName_(checkIs(is))
00127 {}
00128 
00129 
00130 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
00131 
00132 Foam::patchToFace::~patchToFace()
00133 {}
00134 
00135 
00136 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
00137 
00138 void Foam::patchToFace::applyToSet
00139 (
00140     const topoSetSource::setAction action,
00141     topoSet& set
00142 ) const
00143 {
00144     if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
00145     {
00146         Info<< "    Adding all faces of patch " << patchName_ << " ..." << endl;
00147 
00148         combine(set, true);
00149     }
00150     else if (action == topoSetSource::DELETE)
00151     {
00152         Info<< "    Removing all faces of patch " << patchName_ << " ..."
00153             << endl;
00154 
00155         combine(set, false);
00156     }
00157 }
00158 
00159 
00160 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines