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 autoSnapDriver_H
00036 #define autoSnapDriver_H
00037
00038 #include <autoMesh/meshRefinement.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046 class motionSmoother;
00047 class snapParameters;
00048
00049
00050
00051
00052
00053 class autoSnapDriver
00054 {
00055
00056
00057
00058 class minMagEqOp
00059 {
00060 public:
00061
00062 void operator()(vector& x, const vector& y) const
00063 {
00064 if (magSqr(y) < magSqr(x))
00065 {
00066 x = y;
00067 }
00068 }
00069 };
00070
00071
00072
00073
00074
00075 meshRefinement& meshRefiner_;
00076
00077
00078 const labelList globalToPatch_;
00079
00080
00081
00082
00083
00084
00085
00086
00087 Map<label> getZoneBafflePatches(const bool allowBoundary) const;
00088
00089
00090 static label getCollocatedPoints
00091 (
00092 const scalar tol,
00093 const pointField&,
00094 PackedBoolList&
00095 );
00096
00097
00098
00099 pointField smoothPatchDisplacement
00100 (
00101 const motionSmoother&,
00102 const List<labelPair>&
00103 ) const;
00104
00105
00106 void checkCoupledFaceZones() const;
00107
00108
00109 static tmp<scalarField> edgePatchDist
00110 (
00111 const pointMesh&,
00112 const indirectPrimitivePatch&
00113 );
00114
00115
00116 static void dumpMove
00117 (
00118 const fileName&,
00119 const pointField&,
00120 const pointField&
00121 );
00122
00123
00124 static bool outwardsDisplacement
00125 (
00126 const indirectPrimitivePatch&,
00127 const vectorField&
00128 );
00129
00130
00131
00132 autoSnapDriver(const autoSnapDriver&);
00133
00134
00135 void operator=(const autoSnapDriver&);
00136
00137
00138 public:
00139
00140
00141 ClassName("autoSnapDriver");
00142
00143
00144
00145
00146
00147 autoSnapDriver
00148 (
00149 meshRefinement& meshRefiner,
00150 const labelList& globalToPatch
00151 );
00152
00153
00154
00155
00156
00157
00158
00159
00160 autoPtr<mapPolyMesh> createZoneBaffles(List<labelPair>&);
00161
00162
00163 autoPtr<mapPolyMesh> mergeZoneBaffles(const List<labelPair>&);
00164
00165
00166 scalarField calcSnapDistance
00167 (
00168 const snapParameters& snapParams,
00169 const indirectPrimitivePatch&
00170 ) const;
00171
00172
00173
00174 void preSmoothPatch
00175 (
00176 const snapParameters& snapParams,
00177 const label nInitErrors,
00178 const List<labelPair>& baffles,
00179 motionSmoother&
00180 ) const;
00181
00182
00183 labelList getZoneSurfacePoints
00184 (
00185 const indirectPrimitivePatch&,
00186 const word& zoneName
00187 ) const;
00188
00189
00190
00191
00192 vectorField calcNearestSurface
00193 (
00194 const scalarField& snapDist,
00195 motionSmoother& meshMover
00196 ) const;
00197
00198
00199 void smoothDisplacement
00200 (
00201 const snapParameters& snapParams,
00202 motionSmoother&
00203 ) const;
00204
00205
00206
00207 void scaleMesh
00208 (
00209 const snapParameters& snapParams,
00210 const label nInitErrors,
00211 const List<labelPair>& baffles,
00212 motionSmoother&
00213 );
00214
00215
00216 autoPtr<mapPolyMesh> repatchToSurface
00217 (
00218 const snapParameters& snapParams,
00219 const labelList& adaptPatchIDs
00220 );
00221
00222
00223 void doSnap
00224 (
00225 const dictionary& snapDict,
00226 const dictionary& motionDict,
00227 const snapParameters& snapParams
00228 );
00229
00230 };
00231
00232
00233
00234
00235 }
00236
00237
00238
00239 #endif
00240
00241