mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Consistency: Changed exponent FORTRAN style 'E' to C style 'e'
This commit is contained in:
@ -367,7 +367,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
forAll(triQ, faceI)
|
||||
{
|
||||
if (triQ[faceI] < 1E-11)
|
||||
if (triQ[faceI] < 1e-11)
|
||||
{
|
||||
problemFaces.append(faceI);
|
||||
}
|
||||
@ -427,9 +427,9 @@ int main(int argc, char *argv[])
|
||||
const pointField& localPoints = surf.localPoints();
|
||||
|
||||
const boundBox bb(localPoints);
|
||||
scalar smallDim = 1E-6 * bb.mag();
|
||||
scalar smallDim = 1e-6 * bb.mag();
|
||||
|
||||
Info<< "Checking for points less than 1E-6 of bounding box ("
|
||||
Info<< "Checking for points less than 1e-6 of bounding box ("
|
||||
<< bb.span() << " meter) apart."
|
||||
<< endl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user