Further standardization of loop index naming: pointI -> pointi, patchI -> patchi

This commit is contained in:
Henry Weller
2016-05-18 21:20:42 +01:00
parent ac632e7984
commit 67de20df25
365 changed files with 4877 additions and 4877 deletions

View File

@ -731,22 +731,22 @@ Foam::labelList Foam::meshRefinement::markFacesOnProblemCells
forAll(cPoints, i)
{
label pointI = cPoints[i];
label pointi = cPoints[i];
if (pointLevel[pointI] <= cellLevel[celli])
if (pointLevel[pointi] <= cellLevel[celli])
{
// Anchor point
if (isBoundaryPoint[pointI])
if (isBoundaryPoint[pointi])
{
nBoundaryAnchors++;
}
else
{
// Anchor point which is not on the surface
nonBoundaryAnchor = pointI;
nonBoundaryAnchor = pointi;
}
}
else if (isBoundaryPoint[pointI])
else if (isBoundaryPoint[pointi])
{
nNonAnchorBoundary++;
}
@ -835,9 +835,9 @@ Foam::labelList Foam::meshRefinement::markFacesOnProblemCells
forAllConstIter(labelHashSet, nonBoundaryAnchors, iter)
{
label pointI = iter.key();
label pointi = iter.key();
const labelList& pCells = mesh_.pointCells(pointI, dynPCells);
const labelList& pCells = mesh_.pointCells(pointi, dynPCells);
// Count number of 'hasSevenBoundaryAnchorPoints' cells.
label n = 0;