Standardized cell, patch and face loop index names

This commit is contained in:
Henry Weller
2016-04-25 10:28:32 +01:00
parent 6a27f7af46
commit 8c4f6b8fcb
849 changed files with 13266 additions and 13266 deletions

View File

@ -331,14 +331,14 @@ int main(int argc, char *argv[])
scalar surfaceArea = 0;
forAll(surf, faceI)
forAll(surf, facei)
{
const labelledTri& f = surf[faceI];
const labelledTri& f = surf[facei];
if (f[0] == f[1] || f[0] == f[2] || f[1] == f[2])
{
WarningInFunction
<< "Illegal triangle " << faceI << " vertices " << f
<< "Illegal triangle " << facei << " vertices " << f
<< " coords " << f.points(surf.points()) << endl;
}
else