setToFaceZone.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2020 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 "setToFaceZone.H"
27 #include "polyMesh.H"
28 #include "faceZoneSet.H"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35  defineTypeNameAndDebug(setToFaceZone, 0);
36  addToRunTimeSelectionTable(topoSetSource, setToFaceZone, word);
37  addToRunTimeSelectionTable(topoSetSource, setToFaceZone, istream);
38 }
39 
40 
41 Foam::topoSetSource::addToUsageTable Foam::setToFaceZone::usage_
42 (
43  setToFaceZone::typeName,
44  "\n Usage: setToFaceZone <faceSet>\n\n"
45  " Select all faces in the faceSet."
46  " Sets flipMap.\n\n"
47 );
48 
49 
50 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
51 
53 (
54  const polyMesh& mesh,
55  const word& setName
56 )
57 :
58  topoSetSource(mesh),
59  setName_(setName)
60 {}
61 
62 
64 (
65  const polyMesh& mesh,
66  const dictionary& dict
67 )
68 :
69  topoSetSource(mesh),
70  setName_
71  (
72  dict.found("set")
73  ? dict.lookup("set")
74  : dict.found("faceSet")
75  ? dict.lookup("faceSet")
76  : dict.lookup("set")
77  )
78 {}
79 
80 
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& fzSet = refCast<faceZoneSet>(set);
114 
115  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
116  {
117  Info<< " Adding all faces from faceSet " << setName_
118  << " ..." << endl;
119 
120  // Load the sets
121  faceSet fSet(mesh_, setName_);
122 
123  // Start off from copy
124  DynamicList<label> newAddressing(fzSet.addressing());
125  DynamicList<bool> newFlipMap(fzSet.flipMap());
126 
127  forAllConstIter(faceSet, fSet, iter)
128  {
129  label facei = iter.key();
130 
131  if (!fzSet.found(facei))
132  {
133  newAddressing.append(facei);
134  newFlipMap.append(false);
135  }
136  }
137 
138  fzSet.addressing().transfer(newAddressing);
139  fzSet.flipMap().transfer(newFlipMap);
140  fzSet.updateSet();
141  }
142  else if (action == topoSetSource::DELETE)
143  {
144  Info<< " Removing all faces from faceSet " << setName_
145  << " ..." << endl;
146 
147  // Load the set
148  faceSet loadedSet(mesh_, setName_);
149 
150  // Start off empty
151  DynamicList<label> newAddressing(fzSet.addressing().size());
152  DynamicList<bool> newFlipMap(fzSet.flipMap().size());
153 
154  forAll(fzSet.addressing(), i)
155  {
156  if (!loadedSet.found(fzSet.addressing()[i]))
157  {
158  newAddressing.append(fzSet.addressing()[i]);
159  newFlipMap.append(fzSet.flipMap()[i]);
160  }
161  }
162  fzSet.addressing().transfer(newAddressing);
163  fzSet.flipMap().transfer(newFlipMap);
164  fzSet.updateSet();
165  }
166  }
167 }
168 
169 
170 // ************************************************************************* //
const boolList & flipMap() const
Definition: faceZoneSet.H:118
bool found(const word &, bool recursive=false, bool patternMatch=true) const
Search dictionary for given keyword.
Definition: dictionary.C:667
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
A list of face labels.
Definition: faceSet.H:48
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
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:164
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Macros for easy insertion into run-time selection tables.
Base class of a source for a topoSet.
Definition: topoSetSource.H:63
bool found(const Key &) const
Return true if hashedEntry is found in table.
Definition: HashTable.C:113
A class for handling words, derived from string.
Definition: word.H:59
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:82
forAllConstIter(PtrDictionary< phaseModel >, mixture.phases(), phase)
Definition: pEqn.H:29
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
setToFaceZone(const polyMesh &mesh, const word &setName)
Construct from components.
Definition: setToFaceZone.C:53
void updateSet()
Sort addressing and make faceSet part consistent with addressing.
Definition: faceZoneSet.C:51
Like faceSet but -reads data from faceZone -updates faceZone when writing.
Definition: faceZoneSet.H:49
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:61
virtual ~setToFaceZone()
Destructor.
Definition: setToFaceZone.C:94
#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
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
const labelList & addressing() const
Definition: faceZoneSet.H:107
void transfer(List< T > &)
Transfer the contents of the argument List into this list.
Definition: List.C:342
Namespace for OpenFOAM.
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:812