Comment spelling corrections

This commit is contained in:
Henry Weller
2018-11-28 10:24:26 +00:00
parent 062c956dfd
commit 95815460c0
9 changed files with 10 additions and 10 deletions

View File

@ -49,7 +49,7 @@ bool Foam::CV2D::dualCellSurfaceIntersection
point e1 = toPoint3D(circumcenter(ec->first->neighbor(ec->second))); point e1 = toPoint3D(circumcenter(ec->first->neighbor(ec->second)));
// If other edge end is ouside bounding box then edge cuts boundary // If other edge end is outside bounding box then edge cuts boundary
if (!qSurf_.globalBounds().contains(e1)) if (!qSurf_.globalBounds().contains(e1))
{ {
return true; return true;

View File

@ -140,7 +140,7 @@ void Foam::polyMesh::setTopology
) )
{ {
// Calculate the faces of all cells // Calculate the faces of all cells
// Initialise maximum possible numer of mesh faces to 0 // Initialise maximum possible number of mesh faces to 0
label maxFaces = 0; label maxFaces = 0;
// Set up a list of face shapes for each cell // Set up a list of face shapes for each cell
@ -156,7 +156,7 @@ void Foam::polyMesh::setTopology
// Initialise cells to -1 to flag undefined faces // Initialise cells to -1 to flag undefined faces
static_cast<labelList&>(cells[celli]) = -1; static_cast<labelList&>(cells[celli]) = -1;
// Count maximum possible numer of mesh faces // Count maximum possible number of mesh faces
maxFaces += cellsFaceShapes[celli].size(); maxFaces += cellsFaceShapes[celli].size();
} }

View File

@ -92,7 +92,7 @@ class radialActuationDiskSource
{ {
// Private data // Private data
//- Coeffcients for the radial distribution //- Coefficients for the radial distribution
FixedList<scalar, 3> radialCoeffs_; FixedList<scalar, 3> radialCoeffs_;

View File

@ -90,7 +90,7 @@ protected:
// Protected Member Functions // Protected Member Functions
//- Return ture if file name is set //- Return true if file name is set
bool readFromFile() const; bool readFromFile() const;
//- Return the interpolation indices and gradient //- Return the interpolation indices and gradient

View File

@ -67,7 +67,7 @@ protected:
// Protected Member Functions // Protected Member Functions
//- Return ture if file name is set //- Return true if file name is set
bool readFromFile() const; bool readFromFile() const;

View File

@ -229,7 +229,7 @@ Foam::label Foam::scotchDecomp::decomposeOneProc
label version = 0; label version = 0;
str << version << nl; str << version << nl;
// Numer of vertices // Number of vertices
str << xadj.size()-1 << ' ' << adjncy.size() << nl; str << xadj.size()-1 << ' ' << adjncy.size() << nl;
// Numbering starts from 0 // Numbering starts from 0
label baseval = 0; label baseval = 0;

View File

@ -105,7 +105,7 @@ public:
// Access // Access
//- Return the accleration due to gravity //- Return the acceleration due to gravity
inline const dimensionedVector& g() const; inline const dimensionedVector& g() const;
//- External hook to add sources to the film //- External hook to add sources to the film

View File

@ -152,7 +152,7 @@ bool Foam::fileFormats::STLsurfaceFormatCore::readBINARY
points_[ptI++] = stlTri.b(); points_[ptI++] = stlTri.b();
points_[ptI++] = stlTri.c(); points_[ptI++] = stlTri.c();
// interprete stl attribute as a zone // interpret stl attribute as a zone
const label origId = stlTri.attrib(); const label origId = stlTri.attrib();
Map<label>::const_iterator fnd = lookup.find(origId); Map<label>::const_iterator fnd = lookup.find(origId);

View File

@ -103,7 +103,7 @@ patches) the slave patches are simply defined using 'dummy' entries, e.g.:
Boundary conditions must then be applied to all geometric patches in the usual, Boundary conditions must then be applied to all geometric patches in the usual,
manner, and the cases can be executed in parallel (as shown when running the manner, and the cases can be executed in parallel (as shown when running the
Allrun-parallel script) without any speacial treatment, i.e. the case set-up is Allrun-parallel script) without any special treatment, i.e. the case set-up is
the same as when operating in serial mode. the same as when operating in serial mode.