setAndNormalToFaceZone.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) 2013-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 "setAndNormalToFaceZone.H"
27 #include "polyMesh.H"
28 #include "faceZoneSet.H"
29 
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 
37 defineTypeNameAndDebug(setAndNormalToFaceZone, 0);
38 
39 addToRunTimeSelectionTable(topoSetSource, setAndNormalToFaceZone, word);
40 
41 
42 }
43 
44 
45 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
46 
48 (
49  const polyMesh& mesh,
50  const word& setName,
51  const vector& normal
52 )
53 :
54  topoSetSource(mesh),
55  setName_(setName),
56  normal_(normal)
57 {}
58 
59 
61 (
62  const polyMesh& mesh,
63  const dictionary& dict
64 )
65 :
66  topoSetSource(mesh),
67  setName_(dict.lookupBackwardsCompatible<word>({"set", "faceSet"})),
68  normal_(dict.lookup<vector>("normal", dimless))
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 " << setName_
98  << " ..." << endl;
99 
100  // Load the sets
101  faceSet fSet(mesh_, setName_);
102 
103  // Start off from copy
104  DynamicList<label> newAddressing(fzSet.addressing());
105  DynamicList<bool> newFlipMap(fzSet.flipMap());
106 
107  const faceList& faces = mesh_.faces();
108  const pointField& points = mesh_.points();
109 
110  forAllConstIter(faceSet, fSet, iter)
111  {
112  label facei = iter.key();
113 
114  if (!fzSet.found(facei))
115  {
116  newAddressing.append(facei);
117 
118  const vector a = faces[facei].area(points);
119  if ((a & normal_) > 0)
120  {
121  newFlipMap.append(false);
122  }
123  else
124  {
125  newFlipMap.append(true);
126  }
127  }
128  }
129 
130  fzSet.addressing().transfer(newAddressing);
131  fzSet.flipMap().transfer(newFlipMap);
132  fzSet.updateSet();
133  }
134  else if (action == topoSetSource::DELETE)
135  {
136  Info<< " Removing all faces from faceSet " << setName_
137  << " ..." << endl;
138 
139  // Load the set
140  faceSet loadedSet(mesh_, setName_);
141 
142  // Start off empty
143  DynamicList<label> newAddressing(fzSet.addressing().size());
144  DynamicList<bool> newFlipMap(fzSet.flipMap().size());
145 
146  forAll(fzSet.addressing(), i)
147  {
148  if (!loadedSet.found(fzSet.addressing()[i]))
149  {
150  newAddressing.append(fzSet.addressing()[i]);
151  newFlipMap.append(fzSet.flipMap()[i]);
152  }
153  }
154  fzSet.addressing().transfer(newAddressing);
155  fzSet.flipMap().transfer(newFlipMap);
156  fzSet.updateSet();
157  }
158  }
159 }
160 
161 
162 // ************************************************************************* //
#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 ~setAndNormalToFaceZone()
Destructor.
setAndNormalToFaceZone(const polyMesh &mesh, const word &setName, const vector &normal)
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)
const pointField & points
#define WarningInFunction
Report a warning using Foam::Warning.
const dimensionSet dimless
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
vectorField pointField
pointField is a vectorField.
Definition: pointFieldFwd.H:42
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
List< face > faceList
Definition: faceListFwd.H:41
defineTypeNameAndDebug(atmosphericBoundaryLayer, 0)
dictionary dict