netgen/libsrc/meshing/improve2.hpp

85 lines
1.9 KiB
C++
Raw Normal View History

2009-01-13 04:40:13 +05:00
#ifndef FILE_IMPROVE2
#define FILE_IMPROVE2
///
class MeshOptimize2d
{
int faceindex = 0;
int improveedges = 0;
double metricweight = 0.;
int writestatus = 1;
Mesh& mesh;
const NetgenGeometry& geo;
2009-01-13 04:40:13 +05:00
public:
///
MeshOptimize2d(Mesh& amesh) : mesh(amesh), geo(*mesh.GetGeometry())
{}
2014-08-20 01:58:36 +06:00
virtual ~MeshOptimize2d() { ; }
2009-01-13 04:40:13 +05:00
///
void ImproveMesh (const MeshingParameters & mp);
void ImproveMeshJacobian (const MeshingParameters & mp);
void ImproveVolumeMesh ();
2019-07-09 13:39:16 +05:00
void ProjectBoundaryPoints(NgArray<int> & surfaceindex,
const NgArray<Point<3>* > & from, NgArray<Point<3>* > & dest);
2009-01-13 04:40:13 +05:00
void EdgeSwapping (int usemetric);
void CombineImprove ();
void SplitImprove ();
2009-01-13 04:40:13 +05:00
void GenericImprove ();
2009-01-13 04:40:13 +05:00
void SetFaceIndex (int fi) { faceindex = fi; }
void SetImproveEdges (int ie) { improveedges = ie; }
void SetMetricWeight (double mw) { metricweight = mw; }
void SetWriteStatus (int ws) { writestatus = ws; }
/// liefert zu einem 3d-Punkt die geominfo (Dreieck) und liefert 1, wenn erfolgreich,
/// 0, wenn nicht (Punkt ausserhalb von chart)
///
void CheckMeshApproximation (Mesh & mesh);
///
friend class Opti2SurfaceMinFunction;
///
friend class Opti2EdgeMinFunction;
///
friend double Opti2FunctionValueGrad (const Vector & x, Vector & grad);
///
friend double Opti2EdgeFunctionValueGrad (const Vector & x, Vector & grad);
};
extern void CalcTriangleBadness (double x2, double x3, double y3,
double metricweight,
double h, double & badness,
double & g1x, double & g1y);
2013-02-03 20:40:27 +06:00
extern double CalcTriangleBadness (const Point<3> & p1,
const Point<3> & p2,
const Point<3> & p3,
2009-01-13 04:40:13 +05:00
double metricweight,
double h);
2013-02-03 20:40:27 +06:00
extern double CalcTriangleBadness (const Point<3> & p1,
const Point<3> & p2,
const Point<3> & p3,
const Vec<3> & n,
2009-01-13 04:40:13 +05:00
double metricweight,
double h);
#endif