ENH: checkMesh : wedge & empty checking improved

- aspect ratio and cellDeterminant do not use 3rd direction
- wedges are properly check for having opposite one
This commit is contained in:
mattijs
2010-07-23 12:06:42 +01:00
parent c7bc9216d4
commit e3f20df12f
6 changed files with 415 additions and 56 deletions

View File

@ -1,8 +1,21 @@
#include "label.H"
#include "HashSet.H"
#include "labelVector.H"
namespace Foam
{
class polyMesh;
class wedgePolyPatch;
label findOppositeWedge(const polyMesh&, const wedgePolyPatch&);
bool checkWedges
(
const polyMesh&,
const bool report,
const Vector<label>&,
labelHashSet*
);
label checkGeometry(const polyMesh& mesh, const bool allGeometry);
}