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
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071 #ifndef refinementHistory_H
00072 #define refinementHistory_H
00073
00074 #include <OpenFOAM/DynamicList.H>
00075 #include <OpenFOAM/labelList.H>
00076 #include <OpenFOAM/FixedList.H>
00077 #include <OpenFOAM/SLList.H>
00078 #include <OpenFOAM/autoPtr.H>
00079 #include <OpenFOAM/regIOobject.H>
00080
00081
00082
00083 namespace Foam
00084 {
00085
00086
00087 class mapPolyMesh;
00088 class mapDistributePolyMesh;
00089
00090
00091
00092
00093
00094 class refinementHistory
00095 :
00096 public regIOobject
00097 {
00098 public:
00099
00100 class splitCell8
00101 {
00102 public:
00103
00104
00105
00106
00107 label parent_;
00108
00109
00110 autoPtr<FixedList<label, 8> > addedCellsPtr_;
00111
00112
00113 splitCell8();
00114
00115
00116 splitCell8(const label parent);
00117
00118
00119 splitCell8(Istream& is);
00120
00121
00122 splitCell8(const splitCell8&);
00123
00124
00125 void operator=(const splitCell8& s)
00126 {
00127
00128 if (this == &s)
00129 {
00130 FatalErrorIn("splitCell8::operator=(const Foam::splitCell8&)")
00131 << "Attempted assignment to self"
00132 << abort(FatalError);
00133 }
00134
00135 parent_ = s.parent_;
00136
00137 addedCellsPtr_.reset
00138 (
00139 s.addedCellsPtr_.valid()
00140 ? new FixedList<label, 8>(s.addedCellsPtr_())
00141 : NULL
00142 );
00143 }
00144
00145 bool operator==(const splitCell8& s) const
00146 {
00147 if (addedCellsPtr_.valid() != s.addedCellsPtr_.valid())
00148 {
00149 return false;
00150 }
00151 else if (parent_ != s.parent_)
00152 {
00153 return false;
00154 }
00155 else if (addedCellsPtr_.valid())
00156 {
00157 return addedCellsPtr_() == s.addedCellsPtr_();
00158 }
00159 else
00160 {
00161 return true;
00162 }
00163 }
00164
00165 bool operator!=(const splitCell8& s) const
00166 {
00167 return !operator==(s);
00168 }
00169
00170 friend Istream& operator>>(Istream&, splitCell8&);
00171 friend Ostream& operator<<(Ostream&, const splitCell8&);
00172 };
00173
00174
00175 private:
00176
00177 TypeName("refinementHistory");
00178
00179
00180
00181
00182 DynamicList<splitCell8> splitCells_;
00183
00184
00185 DynamicList<label> freeSplitCells_;
00186
00187
00188 labelList visibleCells_;
00189
00190
00191
00192
00193
00194 static void writeEntry
00195 (
00196 const List<splitCell8>&,
00197 const splitCell8&
00198 );
00199
00200 static void writeDebug
00201 (
00202 const labelList&,
00203 const List<splitCell8>&
00204 );
00205
00206
00207 void checkIndices() const;
00208
00209
00210 label allocateSplitCell(const label parent, const label i);
00211
00212
00213 void freeSplitCell(const label index);
00214
00215
00216 void markSplit
00217 (
00218 const label,
00219 labelList& oldToNew,
00220 DynamicList<splitCell8>&
00221 ) const;
00222
00223 void countProc
00224 (
00225 const label index,
00226 const label newProcNo,
00227 labelList& splitCellProc,
00228 labelList& splitCellNum
00229 ) const;
00230
00231 public:
00232
00233
00234
00235
00236 refinementHistory(const IOobject&);
00237
00238
00239 refinementHistory
00240 (
00241 const IOobject&,
00242 const List<splitCell8>& splitCells,
00243 const labelList& visibleCells
00244 );
00245
00246
00247
00248 refinementHistory(const IOobject&, const label nCells);
00249
00250
00251 refinementHistory(const IOobject&, const refinementHistory&);
00252
00253
00254 refinementHistory(const IOobject&, Istream&);
00255
00256
00257
00258
00259
00260
00261
00262 const labelList& visibleCells() const
00263 {
00264 return visibleCells_;
00265 }
00266
00267
00268 const DynamicList<splitCell8>& splitCells() const
00269 {
00270 return splitCells_;
00271 }
00272
00273
00274 const DynamicList<label>& freeSplitCells() const
00275 {
00276 return freeSplitCells_;
00277 }
00278
00279
00280
00281
00282 bool active() const
00283 {
00284 return visibleCells_.size() > 0;
00285 }
00286
00287
00288 label parentIndex(const label cellI) const
00289 {
00290 label index = visibleCells_[cellI];
00291
00292 if (index < 0)
00293 {
00294 FatalErrorIn("refinementHistory::parentIndex(const label)")
00295 << "Cell " << cellI << " is not visible"
00296 << abort(FatalError);
00297 }
00298 return splitCells_[index].parent_;
00299 }
00300
00301
00302 void storeSplit
00303 (
00304 const label cellI,
00305 const labelList& addedCells
00306 );
00307
00308
00309 void combineCells
00310 (
00311 const label masterCellI,
00312 const labelList& combinedCells
00313 );
00314
00315
00316
00317 void updateMesh(const mapPolyMesh&);
00318
00319
00320 void subset
00321 (
00322 const labelList& pointMap,
00323 const labelList& faceMap,
00324 const labelList& cellMap
00325 );
00326
00327
00328
00329
00330 void distribute(const mapDistributePolyMesh&);
00331
00332
00333
00334 void compact();
00335
00336
00337
00338 void resize(const label nCells);
00339
00340
00341 void writeDebug() const;
00342
00343
00344
00345 virtual bool readData(Istream&);
00346
00347
00348 virtual bool writeData(Ostream&) const;
00349
00350
00351
00352
00353
00354
00355
00356
00357 friend Istream& operator>>(Istream&, refinementHistory&);
00358 friend Ostream& operator<<(Ostream&, const refinementHistory&);
00359 };
00360
00361
00362
00363
00364 }
00365
00366
00367
00368 #endif
00369
00370