Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / meshTools / sets / cellSources / zoneToCell / zoneToCell.C
blob1da1a5dee39e770f5cb1fcdcc059a0ae6f5c1251
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "zoneToCell.H"
27 #include "polyMesh.H"
29 #include "addToRunTimeSelectionTable.H"
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 namespace Foam
36 defineTypeNameAndDebug(zoneToCell, 0);
38 addToRunTimeSelectionTable(topoSetSource, zoneToCell, word);
40 addToRunTimeSelectionTable(topoSetSource, zoneToCell, istream);
45 Foam::topoSetSource::addToUsageTable Foam::zoneToCell::usage_
47     zoneToCell::typeName,
48     "\n    Usage: zoneToCell zone\n\n"
49     "    Select all cells in the cellZone."
50     " Note:accepts wildcards for zone.\n\n"
54 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
56 void Foam::zoneToCell::combine(topoSet& set, const bool add) const
58     bool hasMatched = false;
60     forAll(mesh_.cellZones(), i)
61     {
62         const cellZone& zone = mesh_.cellZones()[i];
64         if (zoneName_.match(zone.name()))
65         {
66             const labelList& cellLabels = mesh_.cellZones()[i];
68             Info<< "    Found matching zone " << zone.name()
69                 << " with " << cellLabels.size() << " cells." << endl;
71             hasMatched = true;
73             forAll(cellLabels, i)
74             {
75                 // Only do active cells
76                 if (cellLabels[i] < mesh_.nCells())
77                 {
78                     addOrDelete(set, cellLabels[i], add);
79                 }
80             }
81         }
82     }
84     if (!hasMatched)
85     {
86         WarningIn("zoneToCell::combine(topoSet&, const bool)")
87             << "Cannot find any cellZone named " << zoneName_ << endl
88             << "Valid names are " << mesh_.cellZones().names() << endl;
89     }
93 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
95 // Construct from components
96 Foam::zoneToCell::zoneToCell
98     const polyMesh& mesh,
99     const word& zoneName
102     topoSetSource(mesh),
103     zoneName_(zoneName)
107 // Construct from dictionary
108 Foam::zoneToCell::zoneToCell
110     const polyMesh& mesh,
111     const dictionary& dict
114     topoSetSource(mesh),
115     zoneName_(dict.lookup("name"))
119 // Construct from Istream
120 Foam::zoneToCell::zoneToCell
122     const polyMesh& mesh,
123     Istream& is
126     topoSetSource(mesh),
127     zoneName_(checkIs(is))
131 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
133 Foam::zoneToCell::~zoneToCell()
137 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
139 void Foam::zoneToCell::applyToSet
141     const topoSetSource::setAction action,
142     topoSet& set
143 ) const
145     if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
146     {
147         Info<< "    Adding all cells of cellZone " << zoneName_ << " ..."
148             << endl;
150         combine(set, true);
151     }
152     else if (action == topoSetSource::DELETE)
153     {
154         Info<< "    Removing all cells of cellZone " << zoneName_ << " ..."
155             << endl;
157         combine(set, false);
158     }
162 // ************************************************************************* //