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 #include <OpenFOAM/primitiveMesh.H>
00027 #include <OpenFOAM/SortableList.H>
00028
00029
00030
00031 bool Foam::primitiveMesh::checkPointNearness
00032 (
00033 const bool report,
00034 const scalar reportDistSqr,
00035 labelHashSet* setPtr
00036 ) const
00037 {
00038 const pointField& points = this->points();
00039
00040
00041 SortableList<scalar> sortedMag(magSqr(points));
00042
00043 label nClose = 0;
00044
00045 for (label i = 1; i < sortedMag.size(); i++)
00046 {
00047 label pti = sortedMag.indices()[i];
00048
00049
00050 for
00051 (
00052 label j = i-1;
00053 j >= 0 && (sortedMag[j] > sortedMag[i]-reportDistSqr);
00054 --j
00055 )
00056 {
00057 label prevPtI = sortedMag.indices()[j];
00058
00059 if (magSqr(points[pti] - points[prevPtI]) < reportDistSqr)
00060 {
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076 {
00077 nClose++;
00078
00079 if (setPtr)
00080 {
00081 setPtr->insert(pti);
00082 setPtr->insert(prevPtI);
00083 }
00084 }
00085 }
00086 }
00087 }
00088
00089 reduce(nClose, sumOp<label>());
00090
00091 if (nClose > 0)
00092 {
00093 if (report)
00094 {
00095 Info<< " <<Points closer than " << Foam::sqrt(reportDistSqr)
00096 << " together found, number: " << nClose
00097 << endl;
00098 }
00099
00100 return true;
00101 }
00102 else
00103 {
00104 return false;
00105 }
00106 }
00107
00108
00109