mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Corrected spelling mistakes
This commit is contained in:
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
|
||||
@ -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 = "
|
||||
|
||||
@ -918,7 +918,7 @@ Foam::vectorField Foam::autoSnapDriver::calcNearestSurface
|
||||
<< " coordinate:" << localPoints[pointI]
|
||||
<< " did not find any surface within:"
|
||||
<< minSnapDist[pointI]
|
||||
<< " meter." << endl;
|
||||
<< " metre." << endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -133,7 +133,7 @@ void Foam::refinementFeatures::read
|
||||
{
|
||||
Info<< " level " << levels_[featI][j]
|
||||
<< " for all cells within " << distances_[featI][j]
|
||||
<< " meter." << endl;
|
||||
<< " metre." << endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -65,7 +65,7 @@ private:
|
||||
|
||||
// Private Member Data
|
||||
|
||||
//- gap size in meter
|
||||
//- gap size in metre
|
||||
const scalar gap_;
|
||||
|
||||
//- Underlying geometry (size 1)
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user