pointZoneSet.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::pointZoneSet
26 
27 Description
28  Like pointSet but -reads data from pointZone -updates pointZone when
29  writing.
30 
31 SourceFiles
32  pointZone.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef pointZoneSet_H
37 #define pointZoneSet_H
38 
39 #include "pointSet.H"
40 #include "boolList.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class pointZoneSet Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 class pointZoneSet
52 :
53  public pointSet
54 {
55  // Private Data
56 
57  const polyMesh& mesh_;
58 
59  labelList addressing_;
60 
61 
62 public:
63 
64  //- Runtime type information
65  TypeName("pointZoneSet");
66 
67 
68  // Constructors
69 
70  //- Construct from objectRegistry and name
72  (
73  const polyMesh& mesh,
74  const word& name,
77  );
78 
79  //- Construct from additional size of labelHashSet
81  (
82  const polyMesh& mesh,
83  const word& name,
84  const label,
86  );
87 
88  //- Construct from existing set
90  (
91  const polyMesh& mesh,
92  const word& name,
93  const topoSet&,
95  );
96 
97 
98 
99  //- Destructor
100  virtual ~pointZoneSet();
101 
102 
103  // Member Functions
104 
105  const labelList& addressing() const
106  {
107  return addressing_;
108  }
109 
111  {
112  return addressing_;
113  }
114 
115  //- Sort addressing and make pointSet part consistent with addressing
116  void updateSet();
117 
118  //- Invert contents. (insert all members 0..maxLen-1 which were not in
119  // set)
120  virtual void invert(const label maxLen);
121 
122  //- Subset contents. Only elements present in both sets remain.
123  virtual void subset(const topoSet& set);
124 
125  //- Add elements present in set.
126  virtual void addSet(const topoSet& set);
127 
128  //- Delete elements present in set.
129  virtual void deleteSet(const topoSet& set);
130 
131  //- Sync pointZoneSet across coupled patches.
132  virtual void sync(const polyMesh& mesh);
133 
134  //- Write maxLen items with label and coordinates.
135  virtual void writeDebug
136  (
137  Ostream& os,
138  const primitiveMesh&,
139  const label maxLen
140  ) const;
141 
142  //- Write pointZone
143  virtual bool writeObject
144  (
148  const bool write = true
149  ) const;
150 
151  //- Update any stored data for new labels
152  virtual void topoChange(const polyTopoChangeMap& map);
153 
154  //- Return max index+1.
155  virtual label maxSize(const polyMesh& mesh) const;
156 };
157 
158 
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
160 
161 } // End namespace Foam
162 
163 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
164 
165 #endif
166 
167 // ************************************************************************* //
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 set of point labels.
Definition: pointSet.H:51
Like pointSet but -reads data from pointZone -updates pointZone when writing.
Definition: pointZoneSet.H:53
virtual ~pointZoneSet()
Destructor.
Definition: pointZoneSet.C:133
virtual label maxSize(const polyMesh &mesh) const
Return max index+1.
Definition: pointZoneSet.C:242
pointZoneSet(const polyMesh &mesh, const word &name, readOption r=MUST_READ, writeOption w=NO_WRITE)
Construct from objectRegistry and name.
Definition: pointZoneSet.C:68
virtual void invert(const label maxLen)
Invert contents. (insert all members 0..maxLen-1 which were not in.
Definition: pointZoneSet.C:139
virtual bool writeObject(IOstream::streamFormat, IOstream::versionNumber, IOstream::compressionType, const bool write=true) const
Write pointZone.
Definition: pointZoneSet.C:249
virtual void deleteSet(const topoSet &set)
Delete elements present in set.
Definition: pointZoneSet.C:210
virtual void sync(const polyMesh &mesh)
Sync pointZoneSet across coupled patches.
Definition: pointZoneSet.C:232
TypeName("pointZoneSet")
Runtime type information.
virtual void addSet(const topoSet &set)
Add elements present in set.
Definition: pointZoneSet.C:189
const labelList & addressing() const
Definition: pointZoneSet.H:104
virtual void writeDebug(Ostream &os, const primitiveMesh &, const label maxLen) const
Write maxLen items with label and coordinates.
Definition: pointZoneSet.C:316
virtual void subset(const topoSet &set)
Subset contents. Only elements present in both sets remain.
Definition: pointZoneSet.C:168
virtual void topoChange(const polyTopoChangeMap &map)
Update any stored data for new labels.
Definition: pointZoneSet.C:291
void updateSet()
Sort addressing and make pointSet part consistent with addressing.
Definition: pointZoneSet.C:50
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