Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef faceZoneSet_H
00036 #define faceZoneSet_H
00037
00038 #include "faceSet.H"
00039 #include <OpenFOAM/boolList.H>
00040
00041
00042
00043 namespace Foam
00044 {
00045
00046
00047
00048
00049
00050 class faceZoneSet
00051 :
00052 public faceSet
00053 {
00054
00055
00056 const polyMesh& mesh_;
00057
00058 labelList addressing_;
00059
00060 boolList flipMap_;
00061
00062
00063
00064
00065 public:
00066
00067
00068 TypeName("faceZoneSet");
00069
00070
00071
00072
00073
00074 faceZoneSet
00075 (
00076 const polyMesh& mesh,
00077 const word& name,
00078 readOption r=MUST_READ,
00079 writeOption w=NO_WRITE
00080 );
00081
00082
00083 faceZoneSet
00084 (
00085 const polyMesh& mesh,
00086 const word& name,
00087 const label,
00088 writeOption w=NO_WRITE
00089 );
00090
00091
00092 faceZoneSet
00093 (
00094 const polyMesh& mesh,
00095 const word& name,
00096 const topoSet&,
00097 writeOption w=NO_WRITE
00098 );
00099
00100
00101
00102
00103
00104 virtual ~faceZoneSet();
00105
00106
00107
00108
00109 const labelList& addressing() const
00110 {
00111 return addressing_;
00112 }
00113
00114 labelList& addressing()
00115 {
00116 return addressing_;
00117 }
00118
00119
00120 const boolList& flipMap() const
00121 {
00122 return flipMap_;
00123 }
00124
00125 boolList& flipMap()
00126 {
00127 return flipMap_;
00128 }
00129
00130
00131
00132 void updateSet();
00133
00134
00135
00136 virtual void invert(const label maxLen);
00137
00138
00139 virtual void subset(const topoSet& set);
00140
00141
00142 virtual void addSet(const topoSet& set);
00143
00144
00145 virtual void deleteSet(const topoSet& set);
00146
00147
00148 virtual void sync(const polyMesh& mesh);
00149
00150
00151 virtual void writeDebug
00152 (
00153 Ostream& os,
00154 const primitiveMesh&,
00155 const label maxLen
00156 ) const;
00157
00158
00159 virtual bool writeObject
00160 (
00161 IOstream::streamFormat,
00162 IOstream::versionNumber,
00163 IOstream::compressionType
00164 ) const;
00165
00166
00167 virtual void updateMesh(const mapPolyMesh& morphMap);
00168
00169
00170 virtual label maxSize(const polyMesh& mesh) const;
00171
00172
00173
00174
00175 };
00176
00177
00178
00179
00180 }
00181
00182
00183
00184 #endif
00185
00186