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
00072
00073
00074
00075
00076 #ifndef motionSmoother_H
00077 #define motionSmoother_H
00078
00079 #include <OpenFOAM/pointFields.H>
00080 #include <OpenFOAM/HashSet.H>
00081 #include <OpenFOAM/PackedBoolList.H>
00082 #include <OpenFOAM/indirectPrimitivePatch.H>
00083 #include <OpenFOAM/className.H>
00084 #include <meshTools/twoDPointCorrector.H>
00085
00086
00087
00088 namespace Foam
00089 {
00090
00091 class polyMeshGeometry;
00092 class faceSet;
00093
00094
00095
00096
00097
00098 class motionSmoother
00099 {
00100
00101
00102
00103
00104
00105 class maxMagEqOp
00106 {
00107
00108 public:
00109
00110 void operator()(vector& x, const vector& y) const
00111 {
00112 for (direction i = 0; i < vector::nComponents; i++)
00113 {
00114 scalar magX = mag(x[i]);
00115 scalar magY = mag(y[i]);
00116
00117 if (magX < magY)
00118 {
00119 x[i] = y[i];
00120 }
00121 else if (magX == magY)
00122 {
00123 if (y[i] > x[i])
00124 {
00125 x[i] = y[i];
00126 }
00127 }
00128 }
00129 }
00130 };
00131
00132
00133
00134
00135
00136 polyMesh& mesh_;
00137
00138
00139 pointMesh& pMesh_;
00140
00141
00142 indirectPrimitivePatch& pp_;
00143
00144
00145
00146 const labelList adaptPatchIDs_;
00147
00148
00149
00150 dictionary paramDict_;
00151
00152
00153
00154
00155 pointVectorField displacement_;
00156
00157
00158 pointScalarField scale_;
00159
00160
00161 pointField oldPoints_;
00162
00163
00164 PackedBoolList isInternalPoint_;
00165
00166
00167
00168 PackedBoolList isMasterEdge_;
00169
00170
00171 twoDPointCorrector twoDCorrector_;
00172
00173
00174
00175 labelList patchPatchPointConstraintPoints_;
00176 tensorField patchPatchPointConstraintTensors_;
00177
00178
00179
00180
00181
00182 template <class Type>
00183 tmp<GeometricField<Type, pointPatchField, pointMesh> > avg
00184 (
00185 const GeometricField<Type, pointPatchField, pointMesh>& fld,
00186 const scalarField& edgeWeight,
00187 const bool separation
00188 ) const;
00189
00190
00191 template<class Type>
00192 static void checkConstraints
00193 (
00194 GeometricField<Type, pointPatchField, pointMesh>&
00195 );
00196
00197
00198 template<class Type>
00199 void applyCornerConstraints
00200 (
00201 GeometricField<Type, pointPatchField, pointMesh>&
00202 ) const;
00203
00204
00205 template<class Type, class CombineOp>
00206 void testSyncField
00207 (
00208 const Field<Type>&,
00209 const CombineOp& cop,
00210 const Type& zero,
00211 const bool separation,
00212 const scalar maxMag
00213 ) const;
00214
00215
00216 void makePatchPatchAddressing();
00217
00218 static void checkFld(const pointScalarField&);
00219
00220
00221 labelHashSet getPoints(const labelHashSet&) const;
00222
00223
00224 void minSmooth
00225 (
00226 const PackedBoolList& isAffectedPoint,
00227 const pointScalarField& fld,
00228 pointScalarField& newFld
00229 ) const;
00230
00231
00232 void minSmooth
00233 (
00234 const PackedBoolList& isAffectedPoint,
00235 const labelList& meshPoints,
00236 const pointScalarField& fld,
00237 pointScalarField& newFld
00238 ) const;
00239
00240
00241 void scaleField
00242 (
00243 const labelHashSet& pointLabels,
00244 const scalar scale,
00245 pointScalarField&
00246 ) const;
00247
00248
00249
00250 void scaleField
00251 (
00252 const labelList& meshPoints,
00253 const labelHashSet& pointLabels,
00254 const scalar scale,
00255 pointScalarField&
00256 ) const;
00257
00258
00259 bool isInternalPoint(const label pointI) const;
00260
00261
00262
00263
00264 void getAffectedFacesAndPoints
00265 (
00266 const label nPointIter,
00267 const faceSet& wrongFaces,
00268
00269 labelList& affectedFaces,
00270 PackedBoolList& isAffectedPoint
00271 ) const;
00272
00273
00274 motionSmoother(const motionSmoother&);
00275
00276
00277 void operator=(const motionSmoother&);
00278
00279
00280 public:
00281
00282 ClassName("motionSmoother");
00283
00284
00285
00286
00287
00288 motionSmoother
00289 (
00290 polyMesh&,
00291 pointMesh&,
00292 indirectPrimitivePatch& pp,
00293 const labelList& adaptPatchIDs,
00294 const dictionary& paramDict
00295 );
00296
00297
00298
00299 motionSmoother
00300 (
00301 polyMesh&,
00302 indirectPrimitivePatch& pp,
00303 const labelList& adaptPatchIDs,
00304 const pointVectorField&,
00305 const dictionary& paramDict
00306 );
00307
00308
00309
00310
00311 ~motionSmoother();
00312
00313
00314
00315
00316
00317
00318
00319 const polyMesh& mesh() const;
00320
00321
00322 const pointMesh& pMesh() const;
00323
00324
00325 const indirectPrimitivePatch& patch() const;
00326
00327
00328 const labelList& adaptPatchIDs() const;
00329
00330 const dictionary& paramDict() const;
00331
00332
00333 pointVectorField& displacement();
00334
00335
00336 const pointVectorField& displacement() const;
00337
00338
00339 const pointScalarField& scale() const;
00340
00341
00342 const pointField& oldPoints() const;
00343
00344
00345 twoDPointCorrector& twoDCorrector()
00346 {
00347 return twoDCorrector_;
00348 }
00349
00350
00351
00352
00353
00354
00355 void correct();
00356
00357
00358
00359
00360
00361
00362
00363
00364 void setDisplacement(pointField& patchDisp);
00365
00366
00367
00368
00369 void correctBoundaryConditions(pointVectorField&) const;
00370
00371
00372
00373 tmp<scalarField> movePoints(pointField&);
00374
00375
00376
00377
00378
00379 scalar setErrorReduction(const scalar);
00380
00381
00382
00383
00384
00385
00386
00387 bool scaleMesh
00388 (
00389 labelList& checkFaces,
00390 const bool smoothMesh = true,
00391 const label nAllow = 0
00392 );
00393
00394
00395 bool scaleMesh
00396 (
00397 labelList& checkFaces,
00398 const List<labelPair>& baffles,
00399 const bool smoothMesh = true,
00400 const label nAllow = 0
00401 );
00402
00403
00404 bool scaleMesh
00405 (
00406 labelList& checkFaces,
00407 const List<labelPair>& baffles,
00408 const dictionary& paramDict,
00409 const dictionary& meshQualityDict,
00410 const bool smoothMesh = true,
00411 const label nAllow = 0
00412 );
00413
00414
00415 void updateMesh();
00416
00417
00418
00419
00420 static bool checkMesh
00421 (
00422 const bool report,
00423 const polyMesh& mesh,
00424 const dictionary& dict,
00425 labelHashSet& wrongFaces
00426 );
00427
00428
00429
00430
00431 static bool checkMesh
00432 (
00433 const bool report,
00434 const polyMesh& mesh,
00435 const dictionary& dict,
00436 const labelList& checkFaces,
00437 labelHashSet& wrongFaces
00438 );
00439
00440
00441
00442
00443 static bool checkMesh
00444 (
00445 const bool report,
00446 const polyMesh& mesh,
00447 const dictionary& dict,
00448 const labelList& checkFaces,
00449 const List<labelPair>& baffles,
00450 labelHashSet& wrongFaces
00451 );
00452
00453
00454
00455
00456 static bool checkMesh
00457 (
00458 const bool report,
00459 const dictionary& dict,
00460 const polyMeshGeometry&,
00461 const labelList& checkFaces,
00462 labelHashSet& wrongFaces
00463 );
00464
00465
00466
00467
00468 static bool checkMesh
00469 (
00470 const bool report,
00471 const dictionary& dict,
00472 const polyMeshGeometry&,
00473 const labelList& checkFaces,
00474 const List<labelPair>& baffles,
00475 labelHashSet& wrongFaces
00476 );
00477
00478
00479
00480
00481
00482 template <class Type>
00483 void smooth
00484 (
00485 const GeometricField<Type, pointPatchField, pointMesh>& fld,
00486 const scalarField& edgeWeight,
00487 const bool separation,
00488 GeometricField<Type, pointPatchField, pointMesh>& newFld
00489 ) const;
00490 };
00491
00492
00493 template<>
00494 void motionSmoother::applyCornerConstraints<scalar>
00495 (
00496 GeometricField<scalar, pointPatchField, pointMesh>& pf
00497 ) const;
00498
00499
00500
00501
00502 }
00503
00504
00505
00506 #ifdef NoRepository
00507 # include "motionSmootherTemplates.C"
00508 #endif
00509
00510
00511
00512 #endif
00513
00514