faceZoneToFaceZone.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "faceZoneToFaceZone.H"
27 #include "polyMesh.H"
28 #include "faceZoneSet.H"
29 
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 
37 defineTypeNameAndDebug(faceZoneToFaceZone, 0);
38 
39 addToRunTimeSelectionTable(topoSetSource, faceZoneToFaceZone, word);
40 
41 addToRunTimeSelectionTable(topoSetSource, faceZoneToFaceZone, istream);
42 
43 }
44 
45 
46 Foam::topoSetSource::addToUsageTable Foam::faceZoneToFaceZone::usage_
47 (
48  faceZoneToFaceZone::typeName,
49  "\n Usage: faceZoneToFaceZone <faceZone>\n\n"
50  " Select all faces in the faceZone\n\n"
51 );
52 
53 
54 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
55 
56 // Construct from components
58 (
59  const polyMesh& mesh,
60  const word& setName
61 )
62 :
63  topoSetSource(mesh),
64  setName_(setName)
65 {}
66 
67 
68 // Construct from dictionary
70 (
71  const polyMesh& mesh,
72  const dictionary& dict
73 )
74 :
75  topoSetSource(mesh),
76  setName_(dict.lookup("zone"))
77 {}
78 
79 
80 // Construct from Istream
82 (
83  const polyMesh& mesh,
84  Istream& is
85 )
86 :
87  topoSetSource(mesh),
88  setName_(checkIs(is))
89 {}
90 
91 
92 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
93 
95 {}
96 
97 
98 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
99 
101 (
102  const topoSetSource::setAction action,
103  topoSet& set
104 ) const
105 {
106  if (!isA<faceZoneSet>(set))
107  {
109  << "Operation only allowed on a faceZoneSet." << endl;
110  }
111  else
112  {
113  faceZoneSet& fSet = refCast<faceZoneSet>(set);
114 
115  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
116  {
117  Info<< " Adding all faces from faceZone " << setName_ << " ..."
118  << endl;
119 
120  // Load the set
121  faceZoneSet loadedSet(mesh_, setName_);
122 
123  DynamicList<label> newAddressing(fSet.addressing());
124  DynamicList<bool> newFlipMap(fSet.flipMap());
125 
126  forAll(loadedSet.addressing(), i)
127  {
128  if (!fSet.found(loadedSet.addressing()[i]))
129  {
130  newAddressing.append(loadedSet.addressing()[i]);
131  newFlipMap.append(loadedSet.flipMap()[i]);
132  }
133  }
134  fSet.addressing().transfer(newAddressing);
135  fSet.flipMap().transfer(newFlipMap);
136  fSet.updateSet();
137  }
138  else if (action == topoSetSource::DELETE)
139  {
140  Info<< " Removing all faces from faceZone " << setName_ << " ..."
141  << endl;
142 
143  // Load the set
144  faceZoneSet loadedSet(mesh_, setName_);
145 
146  DynamicList<label> newAddressing(fSet.addressing().size());
147  DynamicList<bool> newFlipMap(fSet.flipMap().size());
148 
149  forAll(fSet.addressing(), i)
150  {
151  if (!loadedSet.found(fSet.addressing()[i]))
152  {
153  newAddressing.append(fSet.addressing()[i]);
154  newFlipMap.append(fSet.flipMap()[i]);
155  }
156  }
157  fSet.addressing().transfer(newAddressing);
158  fSet.flipMap().transfer(newFlipMap);
159  fSet.updateSet();
160  }
161  }
162 }
163 
164 
165 // ************************************************************************* //
const labelList & addressing() const
Definition: faceZoneSet.H:107
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
faceZoneToFaceZone(const polyMesh &mesh, const word &setName)
Construct from components.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
void size(const label)
Override size to be inconsistent with allocated storage.
Definition: ListI.H:76
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
const boolList & flipMap() const
Definition: faceZoneSet.H:118
Macros for easy insertion into run-time selection tables.
Base class of a source for a topoSet.
Definition: topoSetSource.H:63
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
A class for handling words, derived from string.
Definition: word.H:59
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:82
virtual ~faceZoneToFaceZone()
Destructor.
bool found(const Key &) const
Return true if hashedEntry is found in table.
Definition: HashTable.C:109
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
void updateSet()
Sort addressing and make faceSet part consistent with addressing.
Definition: faceZoneSet.C:48
Like faceSet but updates faceZone when writing.
Definition: faceZoneSet.H:49
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:61
#define WarningInFunction
Report a warning using Foam::Warning.
Class with constructor to add usage string to table.
messageStream Info
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
void transfer(List< T > &)
Transfer the contents of the argument List into this list.
Definition: List.C:365
Namespace for OpenFOAM.
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:451