faceSet.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011 OpenFOAM Foundation
9 Copyright (C) 2016-2018 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Class
28 Foam::faceSet
29
30Description
31 A list of face labels.
32
33SourceFiles
34 faceSet.C
35
36\*---------------------------------------------------------------------------*/
37
38#ifndef faceSet_H
39#define faceSet_H
40
41#include "topoSet.H"
42
43// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44
45namespace Foam
46{
47
48/*---------------------------------------------------------------------------*\
49 Class faceSet Declaration
50\*---------------------------------------------------------------------------*/
52class faceSet
53:
54 public topoSet
55{
56public:
57
58 //- Runtime type information
59 TypeName("faceSet");
60
61
62 // Constructors
63
64 //- Construct from IOobject
65 explicit faceSet(const IOobject& obj);
66
67 //- Construct from objectRegistry and name
69 (
70 const polyMesh& mesh,
71 const word& name,
74 );
75
76 //- Construct empty with initial size for labelHashSet
78 (
79 const polyMesh& mesh,
80 const word& name,
81 const label size,
83 );
84
85 //- Construct from existing set
87 (
88 const polyMesh& mesh,
89 const word& name,
90 const topoSet& set,
92 );
93
94 //- Construct (no-read) with copy of labelHashSet
96 (
97 const polyMesh& mesh,
98 const word& name,
99 const labelHashSet& labels,
101 );
102
103 //- Construct (no-read) with moving labelHashSet
104 faceSet
105 (
106 const polyMesh& mesh,
107 const word& name,
108 labelHashSet&& labels,
110 );
111
112 //- Construct (no-read) with copy of labels
113 faceSet
114 (
115 const polyMesh& mesh,
116 const word& name,
117 const labelUList& labels,
119 );
120
121
122 //- Destructor
123 virtual ~faceSet() = default;
124
125
126 // Member functions
127
128 //- Sync faceSet across coupled patches.
129 virtual void sync(const polyMesh& mesh);
130
131 //- Return max index+1.
132 virtual label maxSize(const polyMesh& mesh) const;
133
134 //- Update any stored data for new labels
135 virtual void updateMesh(const mapPolyMesh& morphMap);
136
137 //- Update any stored data for mesh redistribution.
138 virtual void distribute(const mapDistributePolyMesh& map);
139
140 //- Write maxLen items with label and coordinates.
141 virtual void writeDebug
142 (
143 Ostream& os,
144 const primitiveMesh&,
145 const label maxLen
146 ) const;
147};
148
149
150// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
151
152} // End namespace Foam
153
154// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
155
156#endif
157
158// ************************************************************************* //
label size() const noexcept
The number of elements in table.
Definition: HashTableI.H:52
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition: IOobject.H:170
const word & name() const noexcept
Return the object name.
Definition: IOobjectI.H:65
writeOption
Enumeration defining the write options.
Definition: IOobject.H:186
readOption
Enumeration defining the read options.
Definition: IOobject.H:177
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:62
A list of face labels.
Definition: faceSet.H:54
virtual ~faceSet()=default
Destructor.
virtual void distribute(const mapDistributePolyMesh &map)
Update any stored data for mesh redistribution.
Definition: faceSet.C:173
TypeName("faceSet")
Runtime type information.
virtual label maxSize(const polyMesh &mesh) const
Return max index+1.
Definition: faceSet.C:161
virtual void sync(const polyMesh &mesh)
Sync faceSet across coupled patches.
Definition: faceSet.C:130
virtual void writeDebug(Ostream &os, const primitiveMesh &, const label maxLen) const
Write maxLen items with label and coordinates.
Definition: faceSet.C:215
virtual void updateMesh(const mapPolyMesh &morphMap)
Update any stored data for new labels.
Definition: faceSet.C:167
Class containing mesh-to-mesh mapping information after a mesh distribution where we send parts of me...
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Definition: mapPolyMesh.H:162
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:81
Cell-face mesh analysis engine.
Definition: primitiveMesh.H:79
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:67
virtual bool set(const label id)
Set an index.
Definition: topoSet.C:514
A class for handling words, derived from Foam::string.
Definition: word.H:68
dynamicFvMesh & mesh
OBJstream os(runTime.globalPath()/outputName)
Namespace for OpenFOAM.
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73