Loosened tolerances for single precision running

This commit is contained in:
mattijs
2010-01-15 17:18:29 +00:00
parent bca38c7fde
commit 5a87a542d0

View File

@ -824,7 +824,7 @@ bool Foam::polyMeshGeometry::checkFaceSkewness
// (i.e. treat as if mirror cell on other side) // (i.e. treat as if mirror cell on other side)
vector faceNormal = faceAreas[faceI]; vector faceNormal = faceAreas[faceI];
faceNormal /= mag(faceNormal) + VSMALL; faceNormal /= mag(faceNormal) + ROOTVSMALL;
vector dOwn = faceCentres[faceI] - cellCentres[own[faceI]]; vector dOwn = faceCentres[faceI] - cellCentres[own[faceI]];
@ -834,7 +834,7 @@ bool Foam::polyMeshGeometry::checkFaceSkewness
scalar skewness = scalar skewness =
mag(faceCentres[faceI] - faceIntersection) mag(faceCentres[faceI] - faceIntersection)
/(2*mag(dWall) + VSMALL); /(2*mag(dWall) + ROOTVSMALL);
// Check if the skewness vector is greater than the PN vector. // Check if the skewness vector is greater than the PN vector.
// This does not cause trouble but is a good indication of a poor // This does not cause trouble but is a good indication of a poor