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-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 "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 }
38 
39 
40 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
41 
43 (
44  const polyMesh& mesh,
45  const word& setName
46 )
47 :
48  topoSetSource(mesh),
49  setName_(setName)
50 {}
51 
52 
54 (
55  const polyMesh& mesh,
56  const dictionary& dict
57 )
58 :
59  topoSetSource(mesh),
60  setName_(dict.lookup("zone"))
61 {}
62 
63 
64 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
65 
67 {}
68 
69 
70 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
71 
73 (
74  const topoSetSource::setAction action,
75  topoSet& set
76 ) const
77 {
78  if (!isA<faceZoneSet>(set))
79  {
81  << "Operation only allowed on a faceZoneSet." << endl;
82  }
83  else
84  {
85  faceZoneSet& fSet = refCast<faceZoneSet>(set);
86 
87  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
88  {
89  Info<< " Adding all faces from faceZone " << setName_ << " ..."
90  << endl;
91 
92  // Load the set
93  faceZoneSet loadedSet(mesh_, setName_);
94 
95  DynamicList<label> newAddressing(fSet.addressing());
96  DynamicList<bool> newFlipMap(fSet.flipMap());
97 
98  forAll(loadedSet.addressing(), i)
99  {
100  if (!fSet.found(loadedSet.addressing()[i]))
101  {
102  newAddressing.append(loadedSet.addressing()[i]);
103  newFlipMap.append(loadedSet.flipMap()[i]);
104  }
105  }
106  fSet.addressing().transfer(newAddressing);
107  fSet.flipMap().transfer(newFlipMap);
108  fSet.updateSet();
109  }
110  else if (action == topoSetSource::DELETE)
111  {
112  Info<< " Removing all faces from faceZone " << setName_ << " ..."
113  << endl;
114 
115  // Load the set
116  faceZoneSet loadedSet(mesh_, setName_);
117 
118  DynamicList<label> newAddressing(fSet.addressing().size());
119  DynamicList<bool> newFlipMap(fSet.flipMap().size());
120 
121  forAll(fSet.addressing(), i)
122  {
123  if (!loadedSet.found(fSet.addressing()[i]))
124  {
125  newAddressing.append(fSet.addressing()[i]);
126  newFlipMap.append(fSet.flipMap()[i]);
127  }
128  }
129  fSet.addressing().transfer(newAddressing);
130  fSet.flipMap().transfer(newFlipMap);
131  fSet.updateSet();
132  }
133  }
134 }
135 
136 
137 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:449
Macros for easy insertion into run-time selection tables.
faceZoneToFaceZone(const polyMesh &mesh, const word &setName)
Construct from components.
virtual ~faceZoneToFaceZone()
Destructor.
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.
addToRunTimeSelectionTable(polyPatch, mergedCyclicPolyPatch, word)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:288
messageStream Info
defineTypeNameAndDebug(atmosphericBoundaryLayer, 0)
dictionary dict