mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Standardized cell, patch, face and processor loop index names
This commit is contained in:
@ -244,16 +244,16 @@ int main(int argc, char *argv[])
|
||||
|
||||
newPatches.setSize(nRegions1 + nRegions2);
|
||||
|
||||
label newPatchI = 0;
|
||||
label newPatchi = 0;
|
||||
|
||||
forAll(surface1.patches(), patchi)
|
||||
{
|
||||
newPatches[newPatchI++] = surface1.patches()[patchi];
|
||||
newPatches[newPatchi++] = surface1.patches()[patchi];
|
||||
}
|
||||
|
||||
forAll(surface2.patches(), patchi)
|
||||
{
|
||||
newPatches[newPatchI++] = surface2.patches()[patchi];
|
||||
newPatches[newPatchi++] = surface2.patches()[patchi];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user