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

faceZoneToFaceZone.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 "faceZoneToFaceZone.H"
00027 #include <OpenFOAM/polyMesh.H>
00028 #include <meshTools/faceZoneSet.H>
00029 
00030 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00031 
00032 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
00033 
00034 namespace Foam
00035 {
00036 
00037 defineTypeNameAndDebug(faceZoneToFaceZone, 0);
00038 
00039 addToRunTimeSelectionTable(topoSetSource, faceZoneToFaceZone, word);
00040 
00041 addToRunTimeSelectionTable(topoSetSource, faceZoneToFaceZone, istream);
00042 
00043 }
00044 
00045 
00046 Foam::topoSetSource::addToUsageTable Foam::faceZoneToFaceZone::usage_
00047 (
00048     faceZoneToFaceZone::typeName,
00049     "\n    Usage: faceZoneToFaceZone <faceZone>\n\n"
00050     "    Select all faces in the faceZone\n\n"
00051 );
00052 
00053 
00054 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
00055 
00056 // Construct from components
00057 Foam::faceZoneToFaceZone::faceZoneToFaceZone
00058 (
00059     const polyMesh& mesh,
00060     const word& setName
00061 )
00062 :
00063     topoSetSource(mesh),
00064     setName_(setName)
00065 {}
00066 
00067 
00068 // Construct from dictionary
00069 Foam::faceZoneToFaceZone::faceZoneToFaceZone
00070 (
00071     const polyMesh& mesh,
00072     const dictionary& dict
00073 )
00074 :
00075     topoSetSource(mesh),
00076     setName_(dict.lookup("zone"))
00077 {}
00078 
00079 
00080 // Construct from Istream
00081 Foam::faceZoneToFaceZone::faceZoneToFaceZone
00082 (
00083     const polyMesh& mesh,
00084     Istream& is
00085 )
00086 :
00087     topoSetSource(mesh),
00088     setName_(checkIs(is))
00089 {}
00090 
00091 
00092 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
00093 
00094 Foam::faceZoneToFaceZone::~faceZoneToFaceZone()
00095 {}
00096 
00097 
00098 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
00099 
00100 void Foam::faceZoneToFaceZone::applyToSet
00101 (
00102     const topoSetSource::setAction action,
00103     topoSet& set
00104 ) const
00105 {
00106     if (!isA<faceZoneSet>(set))
00107     {
00108         WarningIn
00109         (
00110             "faceZoneToFaceZone::applyToSet(const topoSetSource::setAction"
00111             ", topoSet"
00112         )   << "Operation only allowed on a faceZoneSet." << endl;
00113     }
00114     else
00115     {
00116         faceZoneSet& fSet = refCast<faceZoneSet>(set);
00117 
00118         if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
00119         {
00120             Info<< "    Adding all faces from faceZone " << setName_ << " ..."
00121                 << endl;
00122 
00123             // Load the set
00124             faceZoneSet loadedSet(mesh_, setName_);
00125 
00126             DynamicList<label> newAddressing(fSet.addressing());
00127             DynamicList<bool> newFlipMap(fSet.flipMap());
00128 
00129             forAll(loadedSet.addressing(), i)
00130             {
00131                 if (!fSet.found(loadedSet.addressing()[i]))
00132                 {
00133                     newAddressing.append(loadedSet.addressing()[i]);
00134                     newFlipMap.append(loadedSet.flipMap()[i]);
00135                 }
00136             }
00137             fSet.addressing().transfer(newAddressing);
00138             fSet.flipMap().transfer(newFlipMap);
00139             fSet.updateSet();
00140         }
00141         else if (action == topoSetSource::DELETE)
00142         {
00143             Info<< "    Removing all faces from faceZone " << setName_ << " ..."
00144                 << endl;
00145 
00146             // Load the set
00147             faceZoneSet loadedSet(mesh_, setName_);
00148 
00149             DynamicList<label> newAddressing(fSet.addressing().size());
00150             DynamicList<bool> newFlipMap(fSet.flipMap().size());
00151 
00152             forAll(fSet.addressing(), i)
00153             {
00154                 if (!loadedSet.found(fSet.addressing()[i]))
00155                 {
00156                     newAddressing.append(fSet.addressing()[i]);
00157                     newFlipMap.append(fSet.flipMap()[i]);
00158                 }
00159             }
00160             fSet.addressing().transfer(newAddressing);
00161             fSet.flipMap().transfer(newFlipMap);
00162             fSet.updateSet();
00163         }
00164     }
00165 }
00166 
00167 
00168 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines