From 019c2c08dcb3f74ace645922143f04991bb2bd18 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Tue, 13 Feb 2018 22:17:53 +0000 Subject: [PATCH] Corrected spelling in comments Resolves bug-report https://bugs.openfoam.org/view.php?id=2844 --- .../multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.H | 4 ++-- .../multiphaseMixture/multiphaseMixture.H | 4 ++-- applications/test/router/router.C | 2 +- .../mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L | 6 +++--- .../utilities/mesh/conversion/star3ToFoam/starMesh.C | 4 ++-- .../utilities/mesh/manipulation/polyDualMesh/meshDualiser.C | 4 ++-- .../graphics/PVReaders/vtkPVFoam/vtkPVFoamUtils.C | 3 +-- .../graphics/PVReaders/vtkPVblockMesh/vtkPVblockMeshUtils.C | 3 +-- .../lduAddressing/lduInterface/processorLduInterface.H | 4 ++-- .../processorLduInterfaceField/processorLduInterfaceField.H | 4 ++-- .../processorGAMGInterfaceField.H | 4 ++-- .../interfaces/cyclicGAMGInterface/cyclicGAMGInterface.H | 6 +++--- .../processorGAMGInterface/processorGAMGInterface.H | 4 ++-- src/OpenFOAM/meshes/meshShapes/cell/cell.C | 4 ++-- .../pointPatches/constraint/processor/processorPointPatch.H | 4 ++-- .../polyPatches/constraint/processor/processorPolyPatch.H | 4 ++-- src/OpenFOAM/meshes/primitiveMesh/primitiveMeshEdges.C | 4 ++-- .../constraint/processor/processorFvPatchField.H | 4 ++-- .../cellToCell/extendedCentredCellToCellStencil.H | 4 ++-- .../cellToFace/extendedCentredCellToFaceStencil.H | 4 ++-- .../cellToFace/extendedUpwindCellToFaceStencil.H | 4 ++-- .../faceToCell/extendedCentredFaceToCellStencil.H | 4 ++-- .../fvPatches/constraint/processor/processorFvPatch.H | 4 ++-- .../CloudFunctionObjects/ParticleErosion/ParticleErosion.C | 4 ++-- .../sweptFaceAreaWeightAMI/sweptFaceAreaWeightAMI.H | 4 ++-- .../cyclicACMIGAMGInterface/cyclicACMIGAMGInterface.H | 4 ++-- src/meshTools/cellDist/cellDistFuncs.C | 2 +- src/meshTools/meshSearch/meshSearch.C | 2 +- .../regionCoupledBaseGAMGInterface.H | 4 ++-- src/sampling/probes/probesTemplates.C | 2 +- src/sampling/sampledSet/sampledSet/sampledSet.H | 4 ++-- 31 files changed, 58 insertions(+), 60 deletions(-) diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.H b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.H index 02b56684d..f849a4148 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.H +++ b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -28,7 +28,7 @@ Description Incompressible multi-phase mixture with built in solution for the phase fractions with interface compression for interface-capturing. - Derived from transportModel so that it can be unsed in conjunction with + Derived from transportModel so that it can be used in conjunction with the incompressible turbulence models. Surface tension and contact-angle is handled for the interface diff --git a/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/multiphaseMixture.H b/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/multiphaseMixture.H index 44150c9d2..bb06201ef 100644 --- a/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/multiphaseMixture.H +++ b/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/multiphaseMixture.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -28,7 +28,7 @@ Description Incompressible multi-phase mixture with built in solution for the phase fractions with interface compression for interface-capturing. - Derived from transportModel so that it can be unsed in conjunction with + Derived from transportModel so that it can be used in conjunction with the incompressible turbulence models. Surface tension and contact-angle is handled for the interface diff --git a/applications/test/router/router.C b/applications/test/router/router.C index 1eca91b66..474bb96d9 100644 --- a/applications/test/router/router.C +++ b/applications/test/router/router.C @@ -127,7 +127,7 @@ void Foam::router::fixWeights { WarningInFunction << "Cannot route from node " << nodeI - << " since all neigbours of node " + << " since all neighbours of node " << "already allocated:" << endl; forAll(myNeighbours, neighbourI) diff --git a/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L b/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L index 46d97cf2e..18eccb33c 100644 --- a/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L +++ b/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L @@ -1184,9 +1184,9 @@ int main(int argc, char *argv[]) patchPhysicalTypes ); - //don't write mesh yet, otherwise preservePatchTypes will be broken - //and zones wont be written - //checkmesh done after patch addition as well + // don't write mesh yet, otherwise preservePatchTypes will be broken + // and zones won't be written + // checkmesh done after patch addition as well Info<< "done." << endl; diff --git a/applications/utilities/mesh/conversion/star3ToFoam/starMesh.C b/applications/utilities/mesh/conversion/star3ToFoam/starMesh.C index 898c0c8f1..80fb125de 100644 --- a/applications/utilities/mesh/conversion/star3ToFoam/starMesh.C +++ b/applications/utilities/mesh/conversion/star3ToFoam/starMesh.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -100,7 +100,7 @@ const Foam::label Foam::starMesh::sammAddressingTable[9][12] = // shape. This would imply that the table below needs to be split between // the regular shapes (3-9), which are OK, and the SAMM shapes, for which // the face lookup needs to be done based on the rotation. Thus, for a samm -// cell, firts find out the face index in the normal rotation using the cell +// cell, first find out the face index in the normal rotation using the cell // face permutation table and then use the index from the shape face lookup. // Additionally, have in mind that this silliness does not allow matches // on face 7 and 8 of the samm cell. diff --git a/applications/utilities/mesh/manipulation/polyDualMesh/meshDualiser.C b/applications/utilities/mesh/manipulation/polyDualMesh/meshDualiser.C index 23a912a55..69e6dee05 100644 --- a/applications/utilities/mesh/manipulation/polyDualMesh/meshDualiser.C +++ b/applications/utilities/mesh/manipulation/polyDualMesh/meshDualiser.C @@ -278,7 +278,7 @@ Foam::label Foam::meshDualiser::addInternalFace // << " points:" << UIndirectList(meshMod.points(), newFace)() // << " n:" << n // << " between dualowner:" << dualCell0 - // << " dualneigbour:" << dualCell1 + // << " dualneighbour:" << dualCell1 // << endl; } else @@ -305,7 +305,7 @@ Foam::label Foam::meshDualiser::addInternalFace // << " points:" << UIndirectList(meshMod.points(), newFace)() // << " n:" << n // << " between dualowner:" << dualCell1 - // << " dualneigbour:" << dualCell0 + // << " dualneighbour:" << dualCell0 // << endl; } return dualFacei; diff --git a/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUtils.C b/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUtils.C index 368d90001..c80d543e2 100644 --- a/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUtils.C +++ b/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUtils.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -153,7 +153,6 @@ vtkDataSet* Foam::vtkPVFoam::GetDataSetFromBlock } -// ununsed at the moment Foam::label Foam::vtkPVFoam::GetNumberOfDataSets ( vtkMultiBlockDataSet* output, diff --git a/applications/utilities/postProcessing/graphics/PVReaders/vtkPVblockMesh/vtkPVblockMeshUtils.C b/applications/utilities/postProcessing/graphics/PVReaders/vtkPVblockMesh/vtkPVblockMeshUtils.C index 4f1bd63f6..5f9adc29b 100644 --- a/applications/utilities/postProcessing/graphics/PVReaders/vtkPVblockMesh/vtkPVblockMeshUtils.C +++ b/applications/utilities/postProcessing/graphics/PVReaders/vtkPVblockMesh/vtkPVblockMeshUtils.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -147,7 +147,6 @@ vtkDataSet* Foam::vtkPVblockMesh::GetDataSetFromBlock } -// ununsed at the moment Foam::label Foam::vtkPVblockMesh::GetNumberOfDataSets ( vtkMultiBlockDataSet* output, diff --git a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterface/processorLduInterface.H b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterface/processorLduInterface.H index 9a9f9ddd8..a7916a91c 100644 --- a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterface/processorLduInterface.H +++ b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterface/processorLduInterface.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -90,7 +90,7 @@ public: //- Return processor number (rank in communicator) virtual int myProcNo() const = 0; - //- Return neigbour processor number (rank in communicator) + //- Return neighbour processor number (rank in communicator) virtual int neighbProcNo() const = 0; //- Return face transformation tensor diff --git a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/processorLduInterfaceField/processorLduInterfaceField.H b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/processorLduInterfaceField/processorLduInterfaceField.H index ac035fc82..a39ee80fe 100644 --- a/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/processorLduInterfaceField/processorLduInterfaceField.H +++ b/src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/processorLduInterfaceField/processorLduInterfaceField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -77,7 +77,7 @@ public: //- Return processor number virtual int myProcNo() const = 0; - //- Return neigbour processor number + //- Return neighbour processor number virtual int neighbProcNo() const = 0; //- Is the transform required diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaceFields/processorGAMGInterfaceField/processorGAMGInterfaceField.H b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaceFields/processorGAMGInterfaceField/processorGAMGInterfaceField.H index be57260c4..4eb0a1850 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaceFields/processorGAMGInterfaceField/processorGAMGInterfaceField.H +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaceFields/processorGAMGInterfaceField/processorGAMGInterfaceField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -166,7 +166,7 @@ public: return procInterface_.myProcNo(); } - //- Return neigbour processor number + //- Return neighbour processor number virtual int neighbProcNo() const { return procInterface_.neighbProcNo(); diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/cyclicGAMGInterface/cyclicGAMGInterface.H b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/cyclicGAMGInterface/cyclicGAMGInterface.H index 6ee0b5d3a..9773925b0 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/cyclicGAMGInterface/cyclicGAMGInterface.H +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/cyclicGAMGInterface/cyclicGAMGInterface.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -54,7 +54,7 @@ class cyclicGAMGInterface { // Private data - //- Neigbour patch number + //- Neighbour patch number label neighbPatchID_; //- Am I owner? @@ -124,7 +124,7 @@ public: //- Cyclic interface functions - //- Return neigbour processor number + //- Return neighbour processor number virtual label neighbPatchID() const { return neighbPatchID_; diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/processorGAMGInterface/processorGAMGInterface.H b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/processorGAMGInterface/processorGAMGInterface.H index 1c016aabf..b6d2a7981 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/processorGAMGInterface/processorGAMGInterface.H +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/processorGAMGInterface/processorGAMGInterface.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -159,7 +159,7 @@ public: return myProcNo_; } - //- Return neigbour processor number (rank in communicator) + //- Return neighbour processor number (rank in communicator) virtual int neighbProcNo() const { return neighbProcNo_; diff --git a/src/OpenFOAM/meshes/meshShapes/cell/cell.C b/src/OpenFOAM/meshes/meshShapes/cell/cell.C index e15205a45..daa8657f5 100644 --- a/src/OpenFOAM/meshes/meshShapes/cell/cell.C +++ b/src/OpenFOAM/meshes/meshShapes/cell/cell.C @@ -190,7 +190,7 @@ Foam::point Foam::cell::centre // relationship, which is not available on this level. Thus, all the // pyramids are believed to be positive with no checking. - // first calculate the aproximate cell centre as the average of all + // first calculate the approximate cell centre as the average of all // face centres vector cEst = Zero; scalar sumArea = 0; @@ -249,7 +249,7 @@ Foam::scalar Foam::cell::mag // WARNING! See cell::centre - // first calculate the aproximate cell centre as the average of all + // first calculate the approximate cell centre as the average of all // face centres vector cEst = Zero; scalar nCellFaces = 0; diff --git a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H index 6699795bf..4cd2b7f64 100644 --- a/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H +++ b/src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -139,7 +139,7 @@ public: return procPolyPatch_.myProcNo(); } - //- Return neigbour processor number + //- Return neighbour processor number int neighbProcNo() const { return procPolyPatch_.neighbProcNo(); diff --git a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.H b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.H index 99dc02960..6bc7e6f6e 100644 --- a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.H +++ b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -268,7 +268,7 @@ public: return myProcNo_; } - //- Return neigbour processor number + //- Return neighbour processor number int neighbProcNo() const { return neighbProcNo_; diff --git a/src/OpenFOAM/meshes/primitiveMesh/primitiveMeshEdges.C b/src/OpenFOAM/meshes/primitiveMesh/primitiveMeshEdges.C index 01c7ec471..8a6316dcf 100644 --- a/src/OpenFOAM/meshes/primitiveMesh/primitiveMeshEdges.C +++ b/src/OpenFOAM/meshes/primitiveMesh/primitiveMeshEdges.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -266,7 +266,7 @@ void Foam::primitiveMesh::calcEdges(const bool doFaceEdges) const } - // Like faces sort edges in order of increasing neigbouring point. + // Like faces sort edges in order of increasing neighbouring point. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Automatically if points are sorted into internal and external points // the edges will be sorted into diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H index bfe1b7570..dccf5d574 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -258,7 +258,7 @@ public: return procPatch_.myProcNo(); } - //- Return neigbour processor number + //- Return neighbour processor number virtual int neighbProcNo() const { return procPatch_.neighbProcNo(); diff --git a/src/finiteVolume/fvMesh/extendedStencil/cellToCell/extendedCentredCellToCellStencil.H b/src/finiteVolume/fvMesh/extendedStencil/cellToCell/extendedCentredCellToCellStencil.H index b38e53594..1472848a8 100644 --- a/src/finiteVolume/fvMesh/extendedStencil/cellToCell/extendedCentredCellToCellStencil.H +++ b/src/finiteVolume/fvMesh/extendedStencil/cellToCell/extendedCentredCellToCellStencil.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2013-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -54,7 +54,7 @@ class extendedCentredCellToCellStencil { // Private data - //- Swap map for getting neigbouring data + //- Swap map for getting neighbouring data autoPtr mapPtr_; //- Per cell the stencil. diff --git a/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedCentredCellToFaceStencil.H b/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedCentredCellToFaceStencil.H index f1a7ce9eb..b3451918f 100644 --- a/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedCentredCellToFaceStencil.H +++ b/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedCentredCellToFaceStencil.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -53,7 +53,7 @@ class extendedCentredCellToFaceStencil { // Private data - //- Swap map for getting neigbouring data + //- Swap map for getting neighbouring data autoPtr mapPtr_; //- Per face the stencil. diff --git a/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.H b/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.H index 1ce6ca120..63b4aa8e3 100644 --- a/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.H +++ b/src/finiteVolume/fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -66,7 +66,7 @@ class extendedUpwindCellToFaceStencil //- Does stencil contain upwind points only const bool pureUpwind_; - //- Swap map for getting neigbouring data + //- Swap map for getting neighbouring data autoPtr ownMapPtr_; autoPtr neiMapPtr_; diff --git a/src/finiteVolume/fvMesh/extendedStencil/faceToCell/extendedCentredFaceToCellStencil.H b/src/finiteVolume/fvMesh/extendedStencil/faceToCell/extendedCentredFaceToCellStencil.H index 3e3f01f50..1cedadc7e 100644 --- a/src/finiteVolume/fvMesh/extendedStencil/faceToCell/extendedCentredFaceToCellStencil.H +++ b/src/finiteVolume/fvMesh/extendedStencil/faceToCell/extendedCentredFaceToCellStencil.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -53,7 +53,7 @@ class extendedCentredFaceToCellStencil { // Private data - //- Swap map for getting neigbouring data + //- Swap map for getting neighbouring data autoPtr mapPtr_; //- Per face the stencil. diff --git a/src/finiteVolume/fvMesh/fvPatches/constraint/processor/processorFvPatch.H b/src/finiteVolume/fvMesh/fvPatches/constraint/processor/processorFvPatch.H index e61d122d1..904361cb2 100644 --- a/src/finiteVolume/fvMesh/fvPatches/constraint/processor/processorFvPatch.H +++ b/src/finiteVolume/fvMesh/fvPatches/constraint/processor/processorFvPatch.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -96,7 +96,7 @@ public: return procPolyPatch_.myProcNo(); } - //- Return neigbour processor number + //- Return neighbour processor number virtual int neighbProcNo() const { return procPolyPatch_.neighbProcNo(); diff --git a/src/lagrangian/intermediate/submodels/CloudFunctionObjects/ParticleErosion/ParticleErosion.C b/src/lagrangian/intermediate/submodels/CloudFunctionObjects/ParticleErosion/ParticleErosion.C index 3f85368d4..b7fbb3941 100644 --- a/src/lagrangian/intermediate/submodels/CloudFunctionObjects/ParticleErosion/ParticleErosion.C +++ b/src/lagrangian/intermediate/submodels/CloudFunctionObjects/ParticleErosion/ParticleErosion.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -97,7 +97,7 @@ Foam::ParticleErosion::ParticleErosion patchIDs_ = uniquePatchIDs.toc(); - // trigger ther creation of the Q field + // Trigger creation of the Q field preEvolve(); } diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIMethod/sweptFaceAreaWeightAMI/sweptFaceAreaWeightAMI.H b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIMethod/sweptFaceAreaWeightAMI/sweptFaceAreaWeightAMI.H index 519e68752..4d2e7a26f 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIMethod/sweptFaceAreaWeightAMI/sweptFaceAreaWeightAMI.H +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIMethod/sweptFaceAreaWeightAMI/sweptFaceAreaWeightAMI.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2017 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2017-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -198,7 +198,7 @@ private: //- Convert the source tris and normals to a projection. Most of the // time this does nothing, but if some of the normals point in the // reverse direction the projection will be reduced to span only the - // region in which the projection points forward throught the target + // region in which the projection points forward through the target // plane. Returns the number of edges in the projection (0, 3 or 4). label getSourceProjection ( diff --git a/src/meshTools/AMIInterpolation/GAMG/interfaces/cyclicACMIGAMGInterface/cyclicACMIGAMGInterface.H b/src/meshTools/AMIInterpolation/GAMG/interfaces/cyclicACMIGAMGInterface/cyclicACMIGAMGInterface.H index 08d9b114c..bf471d830 100644 --- a/src/meshTools/AMIInterpolation/GAMG/interfaces/cyclicACMIGAMGInterface/cyclicACMIGAMGInterface.H +++ b/src/meshTools/AMIInterpolation/GAMG/interfaces/cyclicACMIGAMGInterface/cyclicACMIGAMGInterface.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2013-2015 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2013-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -111,7 +111,7 @@ public: //- Cyclic interface functions - //- Return neigbour processor number + //- Return neighbour processor number virtual label neighbPatchID() const { return fineCyclicACMIInterface_.neighbPatchID(); diff --git a/src/meshTools/cellDist/cellDistFuncs.C b/src/meshTools/cellDist/cellDistFuncs.C index 2ed641a57..328259504 100644 --- a/src/meshTools/cellDist/cellDistFuncs.C +++ b/src/meshTools/cellDist/cellDistFuncs.C @@ -206,7 +206,7 @@ Foam::label Foam::cellDistFuncs::getPointNeighbours FatalErrorInFunction << "Problem: fast pointNeighbours routine included " << nb - << " which is not in proper neigbour list " << nbs.toc() + << " which is not in proper neighbour list " << nbs.toc() << abort(FatalError); } nbs.erase(nb); diff --git a/src/meshTools/meshSearch/meshSearch.C b/src/meshTools/meshSearch/meshSearch.C index 2846b9bfc..37a6af631 100644 --- a/src/meshTools/meshSearch/meshSearch.C +++ b/src/meshTools/meshSearch/meshSearch.C @@ -186,7 +186,7 @@ Foam::label Foam::meshSearch::findNearestFaceTree(const point& location) const if (!info.hit()) { - // Search with desparate span + // Search with desperate span info = tree.findNearest(location, Foam::sqr(great)); } diff --git a/src/meshTools/regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledBaseGAMGInterface.H b/src/meshTools/regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledBaseGAMGInterface.H index 4b850c645..74bcca170 100644 --- a/src/meshTools/regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledBaseGAMGInterface.H +++ b/src/meshTools/regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledBaseGAMGInterface.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -109,7 +109,7 @@ public: //- Cyclic interface functions - //- Return neigbour processor number + //- Return neighbour processor number virtual label neighbPatchID() const { return fineRegionCoupledLduInterface_.neighbPatchID(); diff --git a/src/sampling/probes/probesTemplates.C b/src/sampling/probes/probesTemplates.C index 5af572c34..c421730a2 100644 --- a/src/sampling/probes/probesTemplates.C +++ b/src/sampling/probes/probesTemplates.C @@ -47,7 +47,7 @@ public: { // Keep x. - // Note:chould check for y != unsetVal but multiple sample cells + // Note: should check for y != unsetVal but multiple sample cells // already handled in read(). } else diff --git a/src/sampling/sampledSet/sampledSet/sampledSet.H b/src/sampling/sampledSet/sampledSet/sampledSet.H index 1f146c9a8..3e0823108 100644 --- a/src/sampling/sampledSet/sampledSet/sampledSet.H +++ b/src/sampling/sampledSet/sampledSet/sampledSet.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -92,7 +92,7 @@ protected: //- Returns cell next to boundary face label getBoundaryCell(const label) const; - //- Returns the neigbour cell or the owner if face in on the boundary + //- Returns the neighbour cell or the owner if face in on the boundary label getNeighbourCell(const label) const; //- Return the cell in which the point on the sample line