ENH: snappyHexMesh: limit warnings to 100 points. Fixes #941.

This commit is contained in:
mattijs
2018-07-23 12:54:41 +01:00
parent c26ef75df4
commit f72fb23d30
3 changed files with 63 additions and 18 deletions

View File

@ -233,10 +233,6 @@ public:
{
return minAreaRatio_;
}
};

View File

@ -2014,13 +2014,24 @@ Foam::vectorField Foam::snappySnapDriver::calcNearestSurface
forAll(snapSurf, pointi)
{
if (snapSurf[pointi] == -1)
{
static label nWarn = 0;
if (nWarn < 100)
{
WarningInFunction
<< "For point:" << pointi
<< " coordinate:" << localPoints[pointi]
<< " did not find any surface within:"
<< minSnapDist[pointi]
<< " metre." << endl;
<< minSnapDist[pointi] << " metre." << endl;
nWarn++;
if (nWarn == 100)
{
WarningInFunction
<< "Reached warning limit " << nWarn
<< ". Suppressing further warnings." << endl;
}
}
}
}

View File

@ -327,10 +327,22 @@ void Foam::snappySnapDriver::calcNearestFace
);
}
else
{
static label nWarn = 0;
if (nWarn < 100)
{
WarningInFunction
<< "Did not find surface near face centre " << fc[hiti]
<< endl;
nWarn++;
if (nWarn == 100)
{
WarningInFunction
<< "Reached warning limit " << nWarn
<< ". Suppressing further warnings." << endl;
}
}
}
}
}
@ -391,10 +403,23 @@ void Foam::snappySnapDriver::calcNearestFace
);
}
else
{
static label nWarn = 0;
if (nWarn < 100)
{
WarningInFunction
<< "Did not find surface near face centre " << fc[hiti]
<< endl;
nWarn++;
if (nWarn == 100)
{
WarningInFunction
<< "Reached warning limit " << nWarn
<< ". Suppressing further warnings." << endl;
}
}
}
}
@ -3282,10 +3307,23 @@ void Foam::snappySnapDriver::reverseAttractMeshPoints
}
}
else
{
static label nWarn = 0;
if (nWarn < 100)
{
WarningInFunction
<< "Did not find pp point near " << featPt
<< endl;
nWarn++;
if (nWarn == 100)
{
WarningInFunction
<< "Reached warning limit " << nWarn
<< ". Suppressing further warnings." << endl;
}
}
}
}
}