faceZoneSet.H
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-2024 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 Class
25  Foam::faceZoneSet
26 
27 Description
28  Like faceSet but -reads data from faceZone -updates faceZone when writing.
29 
30 SourceFiles
31  faceZone.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef faceZoneSet_H
36 #define faceZoneSet_H
37 
38 #include "faceSet.H"
39 #include "boolList.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 
46 /*---------------------------------------------------------------------------*\
47  Class faceZoneSet Declaration
48 \*---------------------------------------------------------------------------*/
49 
50 class faceZoneSet
51 :
52  public faceSet
53 {
54  // Private Data
55 
56  const polyMesh& mesh_;
57 
58  labelList addressing_;
59 
60  boolList flipMap_;
61 
62 
63 public:
64 
65  //- Runtime type information
66  TypeName("faceZoneSet");
67 
68 
69  // Constructors
70 
71  //- Construct from objectRegistry and name
73  (
74  const polyMesh& mesh,
75  const word& name,
78  );
79 
80  //- Construct from additional size of labelHashSet
82  (
83  const polyMesh& mesh,
84  const word& name,
85  const label,
87  );
88 
89  //- Construct from existing set
91  (
92  const polyMesh& mesh,
93  const word& name,
94  const topoSet&,
96  );
97 
98 
99 
100  //- Destructor
101  virtual ~faceZoneSet();
102 
103 
104  // Member Functions
105 
106  const labelList& addressing() const
107  {
108  return addressing_;
109  }
110 
112  {
113  return addressing_;
114  }
115 
116 
117  const boolList& flipMap() const
118  {
119  return flipMap_;
120  }
121 
122  boolList& flipMap()
123  {
124  return flipMap_;
125  }
126 
127 
128  //- Sort addressing and make faceSet part consistent with addressing
129  void updateSet();
130 
131  //- Invert contents. (insert all members 0..maxLen-1 which were not in
132  // set)
133  virtual void invert(const label maxLen);
134 
135  //- Subset contents. Only elements present in both sets remain.
136  virtual void subset(const topoSet& set);
137 
138  //- Add elements present in set.
139  virtual void addSet(const topoSet& set);
140 
141  //- Delete elements present in set.
142  virtual void deleteSet(const topoSet& set);
143 
144  //- Sync faceZoneSet across coupled patches.
145  virtual void sync(const polyMesh& mesh);
146 
147  //- Write maxLen items with label and coordinates.
148  virtual void writeDebug
149  (
150  Ostream& os,
151  const primitiveMesh&,
152  const label maxLen
153  ) const;
154 
155  //- Write faceZone
156  virtual bool writeObject
157  (
161  const bool write = true
162  ) const;
163 
164  //- Update any stored data for new labels
165  virtual void topoChange(const polyTopoChangeMap& map);
166 
167  //- Return max index+1.
168  virtual label maxSize(const polyMesh& mesh) const;
169 };
170 
171 
172 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
173 
174 } // End namespace Foam
175 
176 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
177 
178 #endif
179 
180 // ************************************************************************* //
bool set(const label &key)
Same as insert (cannot overwrite nil content)
Definition: HashSet.H:123
readOption
Enumeration defining the read options.
Definition: IOobject.H:117
const word & name() const
Return name.
Definition: IOobject.H:310
writeOption
Enumeration defining the write options.
Definition: IOobject.H:126
Version number type.
Definition: IOstream.H:97
streamFormat
Enumeration for the format of data in the stream.
Definition: IOstream.H:87
compressionType
Enumeration for the format of data in the stream.
Definition: IOstream.H:194
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
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:116
virtual label maxSize(const polyMesh &mesh) const
Return max index+1.
Definition: faceZoneSet.C:456
virtual void invert(const label maxLen)
Invert contents. (insert all members 0..maxLen-1 which were not in.
Definition: faceZoneSet.C:145
virtual bool writeObject(IOstream::streamFormat, IOstream::versionNumber, IOstream::compressionType, const bool write=true) const
Write faceZone.
Definition: faceZoneSet.C:463
virtual void deleteSet(const topoSet &set)
Delete elements present in set.
Definition: faceZoneSet.C:275
virtual void sync(const polyMesh &mesh)
Sync faceZoneSet across coupled patches.
Definition: faceZoneSet.C:327
virtual void addSet(const topoSet &set)
Add elements present in set.
Definition: faceZoneSet.C:224
const labelList & addressing() const
Definition: faceZoneSet.H:105
virtual void writeDebug(Ostream &os, const primitiveMesh &, const label maxLen) const
Write maxLen items with label and coordinates.
Definition: faceZoneSet.C:535
TypeName("faceZoneSet")
Runtime type information.
virtual void subset(const topoSet &set)
Subset contents. Only elements present in both sets remain.
Definition: faceZoneSet.C:176
faceZoneSet(const polyMesh &mesh, const word &name, readOption r=MUST_READ, writeOption w=NO_WRITE)
Construct from objectRegistry and name.
Definition: faceZoneSet.C:70
virtual ~faceZoneSet()
Destructor.
Definition: faceZoneSet.C:139
virtual void topoChange(const polyTopoChangeMap &map)
Update any stored data for new labels.
Definition: faceZoneSet.C:506
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
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Cell-face mesh analysis engine.
Definition: primitiveMesh.H:75
virtual bool write(const bool write=true) const
Write using setting from DB.
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
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