faceZoneToFaceZone.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-2018 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"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35  defineTypeNameAndDebug(faceZoneToFaceZone, 0);
36  addToRunTimeSelectionTable(topoSetSource, faceZoneToFaceZone, word);
37  addToRunTimeSelectionTable(topoSetSource, faceZoneToFaceZone, istream);
38 }
39 
40 
41 Foam::topoSetSource::addToUsageTable Foam::faceZoneToFaceZone::usage_
42 (
43  faceZoneToFaceZone::typeName,
44  "\n Usage: faceZoneToFaceZone <faceZone>\n\n"
45  " Select all faces in the faceZone\n\n"
46 );
47 
48 
49 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
50 
52 (
53  const polyMesh& mesh,
54  const word& setName
55 )
56 :
57  topoSetSource(mesh),
58  setName_(setName)
59 {}
60 
61 
63 (
64  const polyMesh& mesh,
65  const dictionary& dict
66 )
67 :
68  topoSetSource(mesh),
69  setName_(dict.lookup("zone"))
70 {}
71 
72 
74 (
75  const polyMesh& mesh,
76  Istream& is
77 )
78 :
79  topoSetSource(mesh),
80  setName_(checkIs(is))
81 {}
82 
83 
84 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
85 
87 {}
88 
89 
90 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
91 
93 (
94  const topoSetSource::setAction action,
95  topoSet& set
96 ) const
97 {
98  if (!isA<faceZoneSet>(set))
99  {
101  << "Operation only allowed on a faceZoneSet." << endl;
102  }
103  else
104  {
105  faceZoneSet& fSet = refCast<faceZoneSet>(set);
106 
107  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
108  {
109  Info<< " Adding all faces from faceZone " << setName_ << " ..."
110  << endl;
111 
112  // Load the set
113  faceZoneSet loadedSet(mesh_, setName_);
114 
115  DynamicList<label> newAddressing(fSet.addressing());
116  DynamicList<bool> newFlipMap(fSet.flipMap());
117 
118  forAll(loadedSet.addressing(), i)
119  {
120  if (!fSet.found(loadedSet.addressing()[i]))
121  {
122  newAddressing.append(loadedSet.addressing()[i]);
123  newFlipMap.append(loadedSet.flipMap()[i]);
124  }
125  }
126  fSet.addressing().transfer(newAddressing);
127  fSet.flipMap().transfer(newFlipMap);
128  fSet.updateSet();
129  }
130  else if (action == topoSetSource::DELETE)
131  {
132  Info<< " Removing all faces from faceZone " << setName_ << " ..."
133  << endl;
134 
135  // Load the set
136  faceZoneSet loadedSet(mesh_, setName_);
137 
138  DynamicList<label> newAddressing(fSet.addressing().size());
139  DynamicList<bool> newFlipMap(fSet.flipMap().size());
140 
141  forAll(fSet.addressing(), i)
142  {
143  if (!loadedSet.found(fSet.addressing()[i]))
144  {
145  newAddressing.append(fSet.addressing()[i]);
146  newFlipMap.append(fSet.flipMap()[i]);
147  }
148  }
149  fSet.addressing().transfer(newAddressing);
150  fSet.flipMap().transfer(newFlipMap);
151  fSet.updateSet();
152  }
153  }
154 }
155 
156 
157 // ************************************************************************* //
const boolList & flipMap() const
Definition: faceZoneSet.H:118
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
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: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
virtual ~faceZoneToFaceZone()
Destructor.
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
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
#define WarningInFunction
Report a warning using Foam::Warning.
Class with constructor to add usage string to table.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
messageStream Info
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
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