setsToFaceZone.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-2021 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 "setsToFaceZone.H"
27 #include "polyMesh.H"
28 #include "faceZoneSet.H"
29 #include "cellSet.H"
30 
32 
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34 
35 namespace Foam
36 {
39 }
40 
41 
42 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
43 
45 (
46  const polyMesh& mesh,
47  const word& faceSetName,
48  const word& cellSetName,
49  const Switch& flip
50 )
51 :
52  topoSetSource(mesh),
53  faceSetName_(faceSetName),
54  cellSetName_(cellSetName),
55  flip_(flip)
56 {}
57 
58 
60 (
61  const polyMesh& mesh,
62  const dictionary& dict
63 )
64 :
65  topoSetSource(mesh),
66  faceSetName_(dict.lookup("faceSet")),
67  cellSetName_(dict.lookup("cellSet")),
68  flip_(dict.lookupOrDefault("flip", false))
69 {}
70 
71 
72 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
73 
75 {}
76 
77 
78 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
79 
81 (
82  const topoSetSource::setAction action,
83  topoSet& set
84 ) const
85 {
86  if (!isA<faceZoneSet>(set))
87  {
89  << "Operation only allowed on a faceZoneSet." << endl;
90  }
91  else
92  {
93  faceZoneSet& fzSet = refCast<faceZoneSet>(set);
94 
95  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
96  {
97  Info<< " Adding all faces from faceSet " << faceSetName_
98  << " ..." << endl;
99 
100  // Load the sets
101  faceSet fSet(mesh_, faceSetName_);
102  cellSet cSet(mesh_, cellSetName_);
103 
104  // Start off from copy
105  DynamicList<label> newAddressing(fzSet.addressing());
106  DynamicList<bool> newFlipMap(fzSet.flipMap());
107 
108  forAllConstIter(faceSet, fSet, iter)
109  {
110  label facei = iter.key();
111 
112  if (!fzSet.found(facei))
113  {
114  bool flipFace = false;
115 
116  label own = mesh_.faceOwner()[facei];
117  bool ownFound = cSet.found(own);
118 
119  if (mesh_.isInternalFace(facei))
120  {
121  label nei = mesh_.faceNeighbour()[facei];
122  bool neiFound = cSet.found(nei);
123 
124  if (ownFound && !neiFound)
125  {
126  flipFace = false;
127  }
128  else if (!ownFound && neiFound)
129  {
130  flipFace = true;
131  }
132  else
133  {
135  << "One of owner or neighbour of internal face "
136  << facei << " should be in cellSet "
137  << cSet.name()
138  << " to be able to determine orientation."
139  << endl
140  << "Face:" << facei << " own:" << own
141  << " OwnInCellSet:" << ownFound
142  << " nei:" << nei
143  << " NeiInCellSet:" << neiFound
144  << endl;
145  }
146  }
147  else
148  {
149  flipFace = !ownFound;
150  }
151 
152 
153  if (flip_)
154  {
155  flipFace = !flipFace;
156  }
157 
158  newAddressing.append(facei);
159  newFlipMap.append(flipFace);
160  }
161  }
162 
163  fzSet.addressing().transfer(newAddressing);
164  fzSet.flipMap().transfer(newFlipMap);
165  fzSet.updateSet();
166  }
167  else if (action == topoSetSource::DELETE)
168  {
169  Info<< " Removing all faces from faceSet " << faceSetName_
170  << " ..." << endl;
171 
172  // Load the set
173  faceZoneSet loadedSet(mesh_, faceSetName_);
174 
175  // Start off empty
176  DynamicList<label> newAddressing(fzSet.addressing().size());
177  DynamicList<bool> newFlipMap(fzSet.flipMap().size());
178 
179  forAll(fzSet.addressing(), i)
180  {
181  if (!loadedSet.found(fzSet.addressing()[i]))
182  {
183  newAddressing.append(fzSet.addressing()[i]);
184  newFlipMap.append(fzSet.flipMap()[i]);
185  }
186  }
187  fzSet.addressing().transfer(newAddressing);
188  fzSet.flipMap().transfer(newFlipMap);
189  fzSet.updateSet();
190  }
191  }
192 }
193 
194 
195 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
#define forAllConstIter(Container, container, iter)
Iterate across all elements in the container object of type.
Definition: UList.H:477
Macros for easy insertion into run-time selection tables.
DynamicList< T, SizeInc, SizeMult, SizeDiv > & append(const T &)
Append an element at the end of the list.
Definition: DynamicListI.H:296
bool found(const Key &) const
Return true if hashedEntry is found in table.
Definition: HashTable.C:113
const word & name() const
Return name.
Definition: IOobject.H:310
void transfer(List< T > &)
Transfer the contents of the argument List into this list.
Definition: List.C:342
void size(const label)
Override size to be inconsistent with allocated storage.
Definition: ListI.H:164
A simple wrapper around bool so that it can be read as a word: true/false, on/off,...
Definition: Switch.H:61
A collection of cell labels.
Definition: cellSet.H:51
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
A list of face labels.
Definition: faceSet.H:51
Like faceSet but -reads data from faceZone -updates faceZone when writing.
Definition: faceZoneSet.H:52
const boolList & flipMap() const
Definition: faceZoneSet.H:118
const labelList & addressing() const
Definition: faceZoneSet.H:107
void updateSet()
Sort addressing and make faceSet part consistent with addressing.
Definition: faceZoneSet.C:51
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:80
A topoSetSource to select faces based on usage in a faceSet and cellSet.
virtual ~setsToFaceZone()
Destructor.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
setsToFaceZone(const polyMesh &mesh, const word &faceSetName, const word &cellSetName, const Switch &flip)
Construct from components.
Base class of a source for a topoSet.
Definition: topoSetSource.H:64
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:83
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:65
A class for handling words, derived from string.
Definition: word.H:62
#define WarningInFunction
Report a warning using Foam::Warning.
Namespace for OpenFOAM.
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
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
messageStream Info
defineTypeNameAndDebug(combustionModel, 0)
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
dictionary dict