diff --git a/applications/utilities/mesh/conversion/kivaToFoam/readKivaGrid.H b/applications/utilities/mesh/conversion/kivaToFoam/readKivaGrid.H index 5e3afb3b3a..57919543e5 100644 --- a/applications/utilities/mesh/conversion/kivaToFoam/readKivaGrid.H +++ b/applications/utilities/mesh/conversion/kivaToFoam/readKivaGrid.H @@ -363,7 +363,7 @@ if if (pFaces[LINER][0].size() != newLinerFaces.size()) { - Info<< "Transfered " << pFaces[LINER][0].size() - newLinerFaces.size() + Info<< "Transferred " << pFaces[LINER][0].size() - newLinerFaces.size() << " faces from liner region to cylinder head" << endl; pFaces[LINER][0] = newLinerFaces; } @@ -392,7 +392,7 @@ if if (pFaces[CYLINDERHEAD][0].size() != newCylinderHeadFaces.size()) { - Info<< "Transfered faces from cylinder-head region to linder" << endl; + Info<< "Transferred faces from cylinder-head region to linder" << endl; pFaces[CYLINDERHEAD][0] = newCylinderHeadFaces; } } diff --git a/src/OpenFOAM/db/IOstreams/token/token.C b/src/OpenFOAM/db/IOstreams/token/token.C index fe1f76df5c..c082df43cc 100644 --- a/src/OpenFOAM/db/IOstreams/token/token.C +++ b/src/OpenFOAM/db/IOstreams/token/token.C @@ -97,7 +97,7 @@ Foam::token::compound& Foam::token::transferCompoundToken(const Istream& is) if (data_.compoundPtr->empty()) { FatalIOErrorInFunction(is) - << "compound has already been transfered from token\n " + << "compound has already been transferred from token\n " << info() << abort(FatalIOError); } else diff --git a/src/OpenFOAM/global/argList/argList.H b/src/OpenFOAM/global/argList/argList.H index 973ad7b3ef..89ac6c6385 100644 --- a/src/OpenFOAM/global/argList/argList.H +++ b/src/OpenFOAM/global/argList/argList.H @@ -249,8 +249,8 @@ public: //- Return root path inline const fileName& rootPath() const; - //- Return distributed flag (i.e. are rootPaths different on - // different machines) + //- Return distributed flag + //- (i.e. are rootPaths different on different machines) inline bool distributed() const; //- Return case name (parallel run) or global case (serial run) diff --git a/src/OpenFOAM/global/fileOperations/uncollatedFileOperation/uncollatedFileOperation.C b/src/OpenFOAM/global/fileOperations/uncollatedFileOperation/uncollatedFileOperation.C index 66e51751fe..9c4788b3f5 100644 --- a/src/OpenFOAM/global/fileOperations/uncollatedFileOperation/uncollatedFileOperation.C +++ b/src/OpenFOAM/global/fileOperations/uncollatedFileOperation/uncollatedFileOperation.C @@ -601,7 +601,7 @@ bool Foam::fileOperations::uncollatedFileOperation::read if (masterOnly && Pstream::parRun()) { // Master reads headerclassname from file. Make sure this gets - // transfered as well as contents. + // transferred as well as contents. Pstream::scatter(io.headerClassName()); Pstream::scatter(io.note()); diff --git a/src/lagrangian/basic/Cloud/Cloud.C b/src/lagrangian/basic/Cloud/Cloud.C index 4eba7f4cf7..5f07b4d1f2 100644 --- a/src/lagrangian/basic/Cloud/Cloud.C +++ b/src/lagrangian/basic/Cloud/Cloud.C @@ -176,7 +176,7 @@ void Foam::Cloud::move pIter().stepFraction() = 0; } - // List of lists of particles to be transfered for all of the + // List of lists of particles to be transferred for all of the // neighbour processors List> particleTransferLists ( @@ -292,19 +292,19 @@ void Foam::Cloud::move pBufs.finishedSends(allNTrans); - bool transfered = false; + bool transferred = false; for (const label n : allNTrans) { if (n) { - transfered = true; + transferred = true; break; } } - reduce(transfered, orOp()); + reduce(transferred, orOp()); - if (!transfered) + if (!transferred) { break; } diff --git a/src/thermophysicalModels/thermophysicalPropertiesFvPatchFields/liquidProperties/humidityTemperatureCoupledMixed/humidityTemperatureCoupledMixedFvPatchScalarField.H b/src/thermophysicalModels/thermophysicalPropertiesFvPatchFields/liquidProperties/humidityTemperatureCoupledMixed/humidityTemperatureCoupledMixedFvPatchScalarField.H index 258af191cc..f3f7fba580 100644 --- a/src/thermophysicalModels/thermophysicalPropertiesFvPatchFields/liquidProperties/humidityTemperatureCoupledMixed/humidityTemperatureCoupledMixedFvPatchScalarField.H +++ b/src/thermophysicalModels/thermophysicalPropertiesFvPatchFields/liquidProperties/humidityTemperatureCoupledMixed/humidityTemperatureCoupledMixedFvPatchScalarField.H @@ -217,7 +217,7 @@ private: //- Name of the radiative heat flux field const word qrName_; - //- Name of the species on which the mass transfered (default H2O) + //- Name of the species on which the mass transferred (default H2O) const word specieName_;