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 #ifndef dynamicRefineFvMesh_H
00038 #define dynamicRefineFvMesh_H
00039
00040 #include <dynamicFvMesh/dynamicFvMesh.H>
00041 #include <dynamicMesh/hexRef8.H>
00042 #include <OpenFOAM/PackedBoolList.H>
00043 #include <OpenFOAM/Switch.H>
00044
00045
00046
00047 namespace Foam
00048 {
00049
00050
00051
00052
00053
00054 class dynamicRefineFvMesh
00055 :
00056 public dynamicFvMesh
00057 {
00058 protected:
00059
00060
00061 hexRef8 meshCutter_;
00062
00063
00064 Switch dumpLevel_;
00065
00066
00067 List<Pair<word> > correctFluxes_;
00068
00069
00070 label nRefinementIterations_;
00071
00072
00073 PackedBoolList protectedCell_;
00074
00075
00076
00077
00078
00079 static label count(const PackedBoolList&, const unsigned int);
00080
00081
00082
00083 void calculateProtectedCells(PackedBoolList& unrefineableCell) const;
00084
00085
00086 void readDict();
00087
00088
00089
00090 autoPtr<mapPolyMesh> refine(const labelList&);
00091
00092
00093 autoPtr<mapPolyMesh> unrefine(const labelList&);
00094
00095
00096
00097
00098
00099
00100 scalar getRefineLevel
00101 (
00102 const label maxCells,
00103 const label maxRefinement,
00104 const scalar refineLevel,
00105 const scalarField&
00106 ) const;
00107
00108
00109 scalarField maxPointField(const scalarField&) const;
00110
00111
00112 scalarField minCellField(const volScalarField&) const;
00113
00114 scalarField cellToPoint(const scalarField& vFld) const;
00115
00116 scalarField error
00117 (
00118 const scalarField& fld,
00119 const scalar minLevel,
00120 const scalar maxLevel
00121 ) const;
00122
00123
00124 virtual void selectRefineCandidates
00125 (
00126 const scalar lowerRefineLevel,
00127 const scalar upperRefineLevel,
00128 const scalarField& vFld,
00129 PackedBoolList& candidateCell
00130 ) const;
00131
00132
00133 virtual labelList selectRefineCells
00134 (
00135 const label maxCells,
00136 const label maxRefinement,
00137 const PackedBoolList& candidateCell
00138 ) const;
00139
00140
00141 virtual labelList selectUnrefinePoints
00142 (
00143 const scalar unrefineLevel,
00144 const PackedBoolList& markedCell,
00145 const scalarField& pFld
00146 ) const;
00147
00148
00149 void extendMarkedCells(PackedBoolList& markedCell) const;
00150
00151
00152 private:
00153
00154
00155 dynamicRefineFvMesh(const dynamicRefineFvMesh&);
00156
00157
00158 void operator=(const dynamicRefineFvMesh&);
00159
00160 public:
00161
00162
00163 TypeName("dynamicRefineFvMesh");
00164
00165
00166
00167
00168
00169 explicit dynamicRefineFvMesh(const IOobject& io);
00170
00171
00172
00173
00174 virtual ~dynamicRefineFvMesh();
00175
00176
00177
00178
00179
00180 const hexRef8& meshCutter() const
00181 {
00182 return meshCutter_;
00183 }
00184
00185
00186 const PackedBoolList& protectedCell() const
00187 {
00188 return protectedCell_;
00189 }
00190
00191
00192 PackedBoolList& protectedCell()
00193 {
00194 return protectedCell_;
00195 }
00196
00197
00198 virtual bool update();
00199
00200
00201
00202
00203
00204 virtual bool writeObject
00205 (
00206 IOstream::streamFormat fmt,
00207 IOstream::versionNumber ver,
00208 IOstream::compressionType cmp
00209 ) const;
00210
00211 };
00212
00213
00214
00215
00216 }
00217
00218
00219
00220 #endif
00221
00222