Corrected spelling and typo's in comments
Resolves bug report https://bugs.openfoam.org/view.php?id=2845
This commit is contained in:
@ -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
|
||||
@ -759,7 +759,7 @@ int main(int argc, char *argv[])
|
||||
<< endl;
|
||||
|
||||
// Create some default patch names/types. These will be overwritten
|
||||
// by any problem desciption (if it is there)
|
||||
// by any problem description (if it is there)
|
||||
foamPatchTypes.setSize(foamPatchStarts.size());
|
||||
foamPatchNames.setSize(foamPatchStarts.size());
|
||||
|
||||
|
||||
@ -577,7 +577,7 @@ void readDOFS
|
||||
DynamicList<labelList>& dofVertices
|
||||
)
|
||||
{
|
||||
Info<< "Starting reading contraints at line " << is.lineNumber() << '.'
|
||||
Info<< "Starting reading constraints at line " << is.lineNumber() << '.'
|
||||
<< endl;
|
||||
|
||||
string line;
|
||||
@ -942,7 +942,7 @@ int main(int argc, char *argv[])
|
||||
Info<< "Using " << dofVertIndices.size()
|
||||
<< " DOF sets to detect boundary faces."<< endl;
|
||||
|
||||
// Renumber vertex numbers on contraints
|
||||
// Renumber vertex numbers on constraints
|
||||
forAll(dofVertIndices, patchi)
|
||||
{
|
||||
inplaceRenumber(unvToFoam, dofVertIndices[patchi]);
|
||||
@ -1227,7 +1227,7 @@ int main(int argc, char *argv[])
|
||||
forAll(indizes, i)
|
||||
{
|
||||
const label old = oldIndizes[i];
|
||||
label noveau = -1;
|
||||
label nouveau = -1;
|
||||
label c1 = -1, c2 = -1;
|
||||
if (faceToCell[0].found(old))
|
||||
{
|
||||
@ -1253,7 +1253,7 @@ int main(int argc, char *argv[])
|
||||
const face& f = boundaryFaces[old];
|
||||
if (mag(centers[j]- f.centre(points)) < small)
|
||||
{
|
||||
noveau = j;
|
||||
nouveau = j;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1269,13 +1269,13 @@ int main(int argc, char *argv[])
|
||||
|| (c2 == own[j] && c1 == nei[j])
|
||||
)
|
||||
{
|
||||
noveau = j;
|
||||
nouveau = j;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
assert(noveau > -1);
|
||||
indizes[i] = noveau;
|
||||
assert(nouveau > -1);
|
||||
indizes[i] = nouveau;
|
||||
}
|
||||
fZones[cnt] = new faceZone
|
||||
(
|
||||
|
||||
@ -277,12 +277,12 @@ void Foam::conformalVoronoiMesh::createEdgePointGroupByCirculating
|
||||
masterPtVec
|
||||
);
|
||||
|
||||
// Specialise for size = 1 && baffle
|
||||
// Specialize for size = 1 && baffle
|
||||
if (mag((normalDir & nextNormalDir) - 1) < small)
|
||||
{
|
||||
if (inside)
|
||||
{
|
||||
// Info<< "Specialise for size 1 and baffle" << endl;
|
||||
// Info<< "Specialize for size 1 and baffle" << endl;
|
||||
|
||||
vector s = ppDist*(edDir ^ normal);
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012-2016 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012-2018 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -332,11 +332,11 @@ bool Foam::featurePointConformer::createSpecialisedFeaturePoint
|
||||
{
|
||||
convexEdgePlaneDNormal = convexNormal;
|
||||
|
||||
plane planeD(featPt, convexEdgePlaneDNormal);
|
||||
plane planned(featPt, convexEdgePlaneDNormal);
|
||||
|
||||
externalPtE =
|
||||
internalPtB
|
||||
+ 2.0*planeD.distance(internalPtB)
|
||||
+ 2.0*planned.distance(internalPtB)
|
||||
*convexEdgePlaneDNormal;
|
||||
|
||||
pts.append
|
||||
@ -768,11 +768,11 @@ bool Foam::featurePointConformer::createSpecialisedFeaturePoint
|
||||
{
|
||||
concaveEdgePlaneDNormal = concaveNormal;
|
||||
|
||||
plane planeD(featPt, concaveEdgePlaneDNormal);
|
||||
plane planned(featPt, concaveEdgePlaneDNormal);
|
||||
|
||||
externalPtE =
|
||||
internalPtB
|
||||
- 2.0*planeD.distance(internalPtB)
|
||||
- 2.0*planned.distance(internalPtB)
|
||||
*concaveEdgePlaneDNormal;
|
||||
|
||||
pts.append
|
||||
|
||||
@ -571,7 +571,7 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
|
||||
Info<< "Refining backgroud mesh according to cell size specification" << nl
|
||||
Info<< "Refining background mesh according to cell size specification" << nl
|
||||
<< endl;
|
||||
|
||||
backgroundMeshDecomposition backgroundMesh
|
||||
|
||||
@ -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
|
||||
@ -62,7 +62,7 @@ int main(int argc, char *argv[])
|
||||
boundBox bb(points);
|
||||
|
||||
Info<< "bounding box: min = " << bb.min()
|
||||
<< " max = " << bb.max() << " metres."
|
||||
<< " max = " << bb.max() << " meters."
|
||||
<< endl;
|
||||
|
||||
|
||||
|
||||
@ -610,7 +610,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
argList::addNote
|
||||
(
|
||||
"Renumber mesh to minimise bandwidth"
|
||||
"Renumber mesh to minimize bandwidth"
|
||||
);
|
||||
|
||||
#include "addRegionOption.H"
|
||||
@ -946,7 +946,7 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
else
|
||||
{
|
||||
// Detemines sorted back to original cell ordering
|
||||
// Determines sorted back to original cell ordering
|
||||
cellOrder = renumberPtr().renumber
|
||||
(
|
||||
mesh,
|
||||
|
||||
Reference in New Issue
Block a user