GIT: Initial state after latest Foundation merge

This commit is contained in:
Andrew Heather
2016-09-20 14:49:08 +01:00
4571 changed files with 115696 additions and 74609 deletions

View File

@ -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-2016 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
@ -33,16 +33,17 @@ Description
is suppressed.
Usage
- surfaceMeshInfo surfaceFile [OPTION]
\b surfaceMeshInfo surfaceFile [OPTION]
\param -areas \n
Report area for each face.
Options:
- \par -areas
Report area for each face.
\param -scale \<scale\> \n
Specify a scaling factor when reading files.
- \par -scale \<scale\>
Specify a scaling factor when reading files.
\param -xml \n
Write output in XML format.
- \par -xml
Write output in XML format.
Note
The filename extensions are used to determine the file format type.
@ -148,9 +149,9 @@ int main(int argc, char *argv[])
}
}
forAll(surf, faceI)
forAll(surf, facei)
{
const scalar fArea(surf[faceI].mag(surf.points()));
const scalar fArea(surf[facei].mag(surf.points()));
areaTotal += fArea;
if (writeAreas)