openfoam/applications/utilities/mesh/manipulation/checkMesh/checkGeometry.H
mattijs e3f20df12f ENH: checkMesh : wedge & empty checking improved
- aspect ratio and cellDeterminant do not use 3rd direction
- wedges are properly check for having opposite one
2010-07-23 12:06:42 +01:00

22 lines
412 B
C++

#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);
}