Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
62eb29e9
Commit
62eb29e9
authored
23 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
some more diagnostics
parent
95ce8ec6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Mesh/2D_InitMesh.cpp
+19
-7
19 additions, 7 deletions
Mesh/2D_InitMesh.cpp
Mesh/2D_Mesh.cpp
+9
-3
9 additions, 3 deletions
Mesh/2D_Mesh.cpp
Mesh/2D_Mesh.h
+1
-1
1 addition, 1 deletion
Mesh/2D_Mesh.h
with
29 additions
and
11 deletions
Mesh/2D_InitMesh.cpp
+
19
−
7
View file @
62eb29e9
// $Id: 2D_InitMesh.cpp,v 1.
9
2001-0
8-13 09:38:14
geuzaine Exp $
// $Id: 2D_InitMesh.cpp,v 1.
10
2001-0
9-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
<
Num
Delaunay
;
i
++
)
{
for
(
i
=
0
;
i
<
List_Nbr
(
List
Delaunay
)
;
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
);
*/
}
}
...
...
This diff is collapsed.
Click to expand it.
Mesh/2D_Mesh.cpp
+
9
−
3
View file @
62eb29e9
// $Id: 2D_Mesh.cpp,v 1.3
4
2001-0
8-24 06:58:19
geuzaine Exp $
// $Id: 2D_Mesh.cpp,v 1.3
5
2001-0
9-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 ) */
...
...
This diff is collapsed.
Click to expand it.
Mesh/2D_Mesh.h
+
1
−
1
View file @
62eb29e9
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment