STYLE: Corrected spelling mistakes

This commit is contained in:
andy
2013-04-16 17:01:23 +01:00
parent ee59088994
commit 4435d64047
12 changed files with 13 additions and 13 deletions

View File

@ -148,7 +148,7 @@ bool Foam::checkWedges
{
Info<< " ***Wedge patch " << pp.name() << " not planar."
<< " Point " << pt << " is not in patch plane by "
<< d << " meter."
<< d << " metre."
<< endl;
}
return true;

View File

@ -62,7 +62,7 @@ int main(int argc, char *argv[])
boundBox bb(points);
Info<< "bounding box: min = " << bb.min()
<< " max = " << bb.max() << " meters."
<< " max = " << bb.max() << " metres."
<< endl;

View File

@ -435,7 +435,7 @@ int main(int argc, char *argv[])
scalar smallDim = 1e-6 * bb.mag();
Info<< "Checking for points less than 1e-6 of bounding box ("
<< bb.span() << " meter) apart."
<< bb.span() << " metre) apart."
<< endl;
// Sort points

View File

@ -54,7 +54,7 @@ int main(int argc, char *argv[])
const fileName outFileName = args[3];
Info<< "Reading surface from " << surfFileName << " ..." << endl;
Info<< "Merging points within " << mergeTol << " meter." << endl;
Info<< "Merging points within " << mergeTol << " metre." << endl;
triSurface surf1(surfFileName);

View File

@ -1542,7 +1542,7 @@ void Foam::faceCoupleInfo::perfectPointMatch
) << "Did not match all of the master faces to the slave faces"
<< endl
<< "This usually means that the slave patch and master patch"
<< " do not align to within " << absTol << " meter."
<< " do not align to within " << absTol << " metre."
<< abort(FatalError);
}

View File

@ -485,7 +485,7 @@ Foam::polyMeshFilter::polyMeshFilter(const fvMesh& mesh)
faceFilterFactor_()
{
Info<< "Merging:" << nl
<< " edges with length less than " << minLen_ << " meters" << nl
<< " edges with length less than " << minLen_ << " metres" << nl
<< " edges split by a point with edges in line to within "
<< radToDeg(::acos(maxCos_)) << " degrees" << nl
<< " Minimum edge length reduction factor = "

View File

@ -918,7 +918,7 @@ Foam::vectorField Foam::autoSnapDriver::calcNearestSurface
<< " coordinate:" << localPoints[pointI]
<< " did not find any surface within:"
<< minSnapDist[pointI]
<< " meter." << endl;
<< " metre." << endl;
}
}

View File

@ -133,7 +133,7 @@ void Foam::refinementFeatures::read
{
Info<< " level " << levels_[featI][j]
<< " for all cells within " << distances_[featI][j]
<< " meter." << endl;
<< " metre." << endl;
}
}
}

View File

@ -118,7 +118,7 @@ void Foam::shellSurfaces::setAndCheckLevels
{
Info<< " level " << levels_[shellI][j]
<< " for all cells within " << distances_[shellI][j]
<< " meter." << endl;
<< " metre." << endl;
}
}
else

View File

@ -69,7 +69,7 @@ class blockMesh
//- The list of curved edges
curvedEdgeList edges_;
//- The scaling factor to convert to meters
//- The scaling factor to convert to metres
scalar scaleFactor_;
//- The blocks themselves (the topology) as a polyMesh
@ -171,7 +171,7 @@ public:
return edges_;
}
//- The scaling factor used to convert to meters
//- The scaling factor used to convert to metres
scalar scaleFactor() const;
//- The points for the entire mesh

View File

@ -65,7 +65,7 @@ private:
// Private Member Data
//- gap size in meter
//- gap size in metre
const scalar gap_;
//- Underlying geometry (size 1)

View File

@ -269,7 +269,7 @@ void Foam::topoSet::writeDebug
boundBox bb(pointField(coords, toc()), true);
os << "Set bounding box: min = "
<< bb.min() << " max = " << bb.max() << " meters. " << endl << endl;
<< bb.min() << " max = " << bb.max() << " metres. " << endl << endl;
label n = 0;