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 #include "layerAdditionRemoval.H"
00030 #include <OpenFOAM/polyMesh.H>
00031 #include <OpenFOAM/primitiveMesh.H>
00032 #include <dynamicMesh/polyTopoChange.H>
00033 #include <OpenFOAM/oppositeFace.H>
00034 #include <dynamicMesh/polyTopoChanger.H>
00035
00036
00037
00038 bool Foam::layerAdditionRemoval::setLayerPairing() const
00039 {
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 const polyMesh& mesh = topoChanger().mesh();
00056
00057 const labelList& mc =
00058 mesh.faceZones()[faceZoneID_.index()].masterCells();
00059
00060 const labelList& mf = mesh.faceZones()[faceZoneID_.index()];
00061
00062 const boolList& mfFlip =
00063 mesh.faceZones()[faceZoneID_.index()].flipMap();
00064
00065 const faceList& faces = mesh.faces();
00066 const cellList& cells = mesh.cells();
00067
00068
00069 const faceList& mlf =
00070 mesh.faceZones()[faceZoneID_.index()]().localFaces();
00071
00072 const labelList& meshPoints =
00073 mesh.faceZones()[faceZoneID_.index()]().meshPoints();
00074
00075
00076
00077 if (pointsPairingPtr_ || facesPairingPtr_)
00078 {
00079 FatalErrorIn
00080 (
00081 "void Foam::layerAdditionRemoval::setLayerPairing() const"
00082 ) << "Problem with layer pairing data"
00083 << abort(FatalError);
00084 }
00085
00086 pointsPairingPtr_ = new labelList(meshPoints.size(), -1);
00087 labelList& ptc = *pointsPairingPtr_;
00088
00089 facesPairingPtr_ = new labelList(mf.size(), -1);
00090 labelList& ftc = *facesPairingPtr_;
00091
00092
00093
00094
00095 label nPointErrors = 0;
00096 label nFaceErrors = 0;
00097
00098 forAll (mf, faceI)
00099 {
00100
00101 face curLocalFace = mlf[faceI];
00102
00103
00104 if (mfFlip[faceI])
00105 {
00106 curLocalFace = curLocalFace.reverseFace();
00107 }
00108
00109
00110 oppositeFace lidFace =
00111 cells[mc[faceI]].opposingFace(mf[faceI], faces);
00112
00113 if (!lidFace.found())
00114 {
00115
00116 nFaceErrors++;
00117 continue;
00118 }
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128 ftc[faceI] = lidFace.oppositeIndex();
00129
00130
00131 forAll (curLocalFace, pointI)
00132 {
00133 const label clp = curLocalFace[pointI];
00134
00135 if (ptc[clp] == -1)
00136 {
00137
00138 ptc[clp] = lidFace[pointI];
00139 }
00140 else
00141 {
00142
00143 if (ptc[clp] != lidFace[pointI])
00144 {
00145 nPointErrors++;
00146
00147
00148
00149
00150
00151
00152
00153 }
00154 }
00155 }
00156
00157 }
00158
00159 reduce(nPointErrors, sumOp<label>());
00160 reduce(nFaceErrors, sumOp<label>());
00161
00162 if (nPointErrors > 0 || nFaceErrors > 0)
00163 {
00164 clearAddressing();
00165
00166 return false;
00167 }
00168 else
00169 {
00170
00171 return true;
00172 }
00173 }
00174
00175
00176 const Foam::labelList& Foam::layerAdditionRemoval::pointsPairing() const
00177 {
00178 if (!pointsPairingPtr_)
00179 {
00180 FatalErrorIn
00181 (
00182 "const labelList& layerAdditionRemoval::pointsPairing() const"
00183 ) << "Problem with layer pairing data for object " << name()
00184 << abort(FatalError);
00185 }
00186
00187 return *pointsPairingPtr_;
00188 }
00189
00190 const Foam::labelList& Foam::layerAdditionRemoval::facesPairing() const
00191 {
00192 if (!facesPairingPtr_)
00193 {
00194 FatalErrorIn
00195 (
00196 "const labelList& layerAdditionRemoval::facesPairing() const"
00197 ) << "Problem with layer pairing data for object " << name()
00198 << abort(FatalError);
00199 }
00200
00201 return *facesPairingPtr_;
00202 }
00203
00204
00205
00206
00207 void Foam::layerAdditionRemoval::modifyMotionPoints
00208 (
00209 pointField& motionPoints
00210 ) const
00211 {
00212 if (debug)
00213 {
00214 Pout<< "void layerAdditionRemoval::modifyMotionPoints("
00215 << "pointField& motionPoints) const for object "
00216 << name() << " : ";
00217 }
00218
00219 if (debug)
00220 {
00221 Pout << "No motion point adjustment" << endl;
00222 }
00223 }
00224
00225
00226