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-2025 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 {
37  defineTypeNameAndDebug(setsToFaceZone, 0);
38  addToRunTimeSelectionTable(topoSetSource, setsToFaceZone, word);
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:449
#define forAllConstIter(Container, container, iter)
Iterate across all elements in the container object of type.
Definition: UList.H:492
Macros for easy insertion into run-time selection tables.
virtual ~setsToFaceZone()
Destructor.
setsToFaceZone(const polyMesh &mesh, const word &faceSetName, const word &cellSetName, const Switch &flip)
Construct from components.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:83
Foam::fvMesh mesh(Foam::IOobject(regionName, runTime.name(), runTime, Foam::IOobject::MUST_READ), false)
#define WarningInFunction
Report a warning using Foam::Warning.
const unitSet & lookup(const word &unitName)
Lookup and return the named unit from the table.
Definition: units.C:346
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
addToRunTimeSelectionTable(polyPatch, mergedCyclicPolyPatch, word)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:288
messageStream Info
defineTypeNameAndDebug(atmosphericBoundaryLayer, 0)
dictionary dict