Skip to content
Snippets Groups Projects
Commit 62eb29e9 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

some more diagnostics

parent 95ce8ec6
No related branches found
No related tags found
No related merge requests found
// $Id: 2D_InitMesh.cpp,v 1.9 2001-08-13 09:38:14 geuzaine Exp $ // $Id: 2D_InitMesh.cpp,v 1.10 2001-09-05 09:06:36 geuzaine Exp $
/* /*
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
#include "2D_Mesh.h" #include "2D_Mesh.h"
static int pointA,pointB,Counter,Stagnant,StopNow; static int pointA,pointB,Counter,Stagnant,StopNow;
static Tree_T *ETree,*EDToSwap; static Tree_T *ETree=NULL,*EDToSwap=NULL;
extern PointRecord *gPointArray; extern PointRecord *gPointArray;
...@@ -126,6 +126,9 @@ int crossED ( ED * e ){ ...@@ -126,6 +126,9 @@ int crossED ( ED * e ){
if(t>1. || t<0.)return(0); if(t>1. || t<0.)return(0);
if(q>1. || q<0.)return(0); if(q>1. || q<0.)return(0);
//printf("t=%g q=%g det=%g\n", t, q, det);
return(1); return(1);
} }
...@@ -185,6 +188,11 @@ void SwapED ( void *data , void *dummy){ ...@@ -185,6 +188,11 @@ void SwapED ( void *data , void *dummy){
if(Stagnant && Counter <= StopNow)return; if(Stagnant && Counter <= StopNow)return;
else if(Stagnant)Counter++; else if(Stagnant)Counter++;
if(!e->Liste[0] || !e->Liste[1]){
Msg(GERROR, "Initial mesh is wrong. Try new isotropic algorithm.");
return;
}
if(e->from != e->Liste[0]->t.a && e->from != e->Liste[0]->t.b && if(e->from != e->Liste[0]->t.a && e->from != e->Liste[0]->t.b &&
e->from != e->Liste[0]->t.c ) e->from != e->Liste[0]->t.c )
return; return;
...@@ -270,7 +278,7 @@ int verifie_cas_scabreux (int pa, int pb, ContourRecord **ListContours, int Nc){ ...@@ -270,7 +278,7 @@ int verifie_cas_scabreux (int pa, int pb, ContourRecord **ListContours, int Nc){
} }
void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
int NumContours , int NumDelaunay){ int NumContours){
ED *pEdge; ED *pEdge;
ED Edge; ED Edge;
...@@ -285,7 +293,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, ...@@ -285,7 +293,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
c++; c++;
if(c>max)break; if(c>max)break;
ETree = Tree_Create ( sizeof (Edge) , compareED ); ETree = Tree_Create ( sizeof (Edge) , compareED );
for (i=0;i< NumDelaunay;i++) { for (i=0;i< List_Nbr(ListDelaunay);i++) {
del_P = *(Delaunay**)List_Pointer(ListDelaunay, i); del_P = *(Delaunay**)List_Pointer(ListDelaunay, i);
...@@ -298,6 +306,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, ...@@ -298,6 +306,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
} }
else { else {
Edge.Liste[0] = del_P; Edge.Liste[0] = del_P;
Edge.Liste[1] = NULL;
Tree_Add (ETree,&Edge); Tree_Add (ETree,&Edge);
} }
...@@ -309,6 +318,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, ...@@ -309,6 +318,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
} }
else { else {
Edge.Liste[0] = del_P; Edge.Liste[0] = del_P;
Edge.Liste[1] = NULL;
Tree_Add (ETree,&Edge); Tree_Add (ETree,&Edge);
} }
...@@ -320,6 +330,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, ...@@ -320,6 +330,7 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
} }
else { else {
Edge.Liste[0] = del_P; Edge.Liste[0] = del_P;
Edge.Liste[1] = NULL;
Tree_Add (ETree,&Edge); Tree_Add (ETree,&Edge);
} }
} }
...@@ -348,9 +359,10 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, ...@@ -348,9 +359,10 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
if(!ok){ if(!ok){
return; return;
} }
Msg(INFO, "Swapping (%d missing edges)", ok); Msg(INFO, "Swapping (%d missing edges)", ok);
EDToSwap = NULL; //EDToSwap = NULL;
if(EDToSwap)Tree_Delete(EDToSwap); if(EDToSwap)Tree_Delete(EDToSwap);
EDToSwap = Tree_Create (sizeof(ED),compareED2); EDToSwap = Tree_Create (sizeof(ED),compareED2);
for(k=0;k<NumContours;k++){ for(k=0;k<NumContours;k++){
...@@ -379,10 +391,10 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, ...@@ -379,10 +391,10 @@ void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
Tree_Action (EDToSwap , SwapED); Tree_Action (EDToSwap , SwapED);
Tree_Action (EDToSwap , AddInETree); Tree_Action (EDToSwap , AddInETree);
}while(Tree_Nbr(EDToSwap)); }while(Tree_Nbr(EDToSwap));
/*
Tree_Delete(EDToSwap); Tree_Delete(EDToSwap);
Tree_Delete(ETree); Tree_Delete(ETree);
*/
} }
......
// $Id: 2D_Mesh.cpp,v 1.34 2001-08-24 06:58:19 geuzaine Exp $ // $Id: 2D_Mesh.cpp,v 1.35 2001-09-05 09:06:36 geuzaine Exp $
/* /*
Maillage Delaunay d'une surface (Point insertion Technique) Maillage Delaunay d'une surface (Point insertion Technique)
...@@ -317,10 +317,16 @@ int mesh_domain (ContourPeek * ListContours, int numcontours, ...@@ -317,10 +317,16 @@ int mesh_domain (ContourPeek * ListContours, int numcontours,
for(i= 0;i<doc->numTriangles;i++){ for(i= 0;i<doc->numTriangles;i++){
del_P = &doc->delaunay[i] ; del_P = &doc->delaunay[i] ;
List_Add(del_L, &del_P); if((del_P->t.a == del_P->t.b) &&
(del_P->t.a == del_P->t.c)){
Msg(GERROR, "Initial mesh is wrong. Try the new isotropic algorithm.");
}
else
List_Add(del_L, &del_P);
} }
doc->numTriangles = List_Nbr(del_L);
verify_edges (del_L, ListContours, numcontours, doc->numTriangles); verify_edges (del_L, ListContours, numcontours);
verify_inside (doc->delaunay, doc->numTriangles); verify_inside (doc->delaunay, doc->numTriangles);
/* creation des liens ( triangles voisins ) */ /* creation des liens ( triangles voisins ) */
......
...@@ -48,7 +48,7 @@ int CreateLinks(List_T * ListDelaunay , int NumDelaunay, ...@@ -48,7 +48,7 @@ int CreateLinks(List_T * ListDelaunay , int NumDelaunay,
void makepermut (int numpoints); void makepermut (int numpoints);
void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour, void verify_edges (List_T *ListDelaunay, ContourRecord **ListContour,
int NumContours , int NumDelaunay); int NumContours);
void verify_inside (Delaunay * ListDelaunay , int NumDelaunay ); void verify_inside (Delaunay * ListDelaunay , int NumDelaunay );
void PushgPointArray(PointRecord *ptr); void PushgPointArray(PointRecord *ptr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment