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
57eccb26
Commit
57eccb26
authored
18 years ago
by
Jean-François Remacle
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
71b63a2a
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Mesh/BDS.cpp
+3
-3
3 additions, 3 deletions
Mesh/BDS.cpp
Mesh/BackgroundMesh.cpp
+2
-2
2 additions, 2 deletions
Mesh/BackgroundMesh.cpp
Mesh/meshGEdge.cpp
+4
-4
4 additions, 4 deletions
Mesh/meshGEdge.cpp
Mesh/meshGFace.cpp
+50
-12
50 additions, 12 deletions
Mesh/meshGFace.cpp
with
59 additions
and
21 deletions
Mesh/BDS.cpp
+
3
−
3
View file @
57eccb26
// $Id: BDS.cpp,v 1.
69
2006-12-0
1
1
6:16:50
remacle Exp $
// $Id: BDS.cpp,v 1.
70
2006-12-0
5
1
4:22:05
remacle Exp $
//
//
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
//
//
...
@@ -1005,8 +1005,8 @@ bool test_move_point_parametric_triangle (BDS_Point * p, double u, double v, BDS
...
@@ -1005,8 +1005,8 @@ bool test_move_point_parametric_triangle (BDS_Point * p, double u, double v, BDS
double
area_final
=
fabs
(
a
[
1
]
*
b
[
2
]
-
a
[
2
]
*
b
[
1
]);
double
area_final
=
fabs
(
a
[
1
]
*
b
[
2
]
-
a
[
2
]
*
b
[
1
]);
if
(
area_final
<
0.1
*
area_init
)
return
false
;
if
(
area_final
<
0.1
*
area_init
)
return
false
;
double
ori_final
=
gmsh
::
orient2d
(
pa
,
pb
,
pc
);
double
ori_final
=
gmsh
::
orient2d
(
pa
,
pb
,
pc
);
// allow to move a point when a triangle was flat
return
ori_init
*
ori_final
>
0
;
return
ori_init
*
ori_final
>
=
0
;
}
}
bool
BDS_Mesh
::
smooth_point_parametric
(
BDS_Point
*
p
,
GFace
*
gf
)
bool
BDS_Mesh
::
smooth_point_parametric
(
BDS_Point
*
p
,
GFace
*
gf
)
...
...
This diff is collapsed.
Click to expand it.
Mesh/BackgroundMesh.cpp
+
2
−
2
View file @
57eccb26
// $Id: BackgroundMesh.cpp,v 1.
9
2006-1
1-30 18:06:58 geuzain
e Exp $
// $Id: BackgroundMesh.cpp,v 1.
10
2006-1
2-05 14:22:05 remacl
e Exp $
//
//
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
//
//
...
@@ -179,7 +179,7 @@ double BGM_MeshSize ( GEntity *ge, double U, double V , double X, double Y, doub
...
@@ -179,7 +179,7 @@ double BGM_MeshSize ( GEntity *ge, double U, double V , double X, double Y, doub
double
l1
=
1.e22
;
double
l1
=
1.e22
;
if
(
CTX
.
mesh
.
lc_from_curvature
&&
ge
->
dim
()
<
3
)
if
(
CTX
.
mesh
.
lc_from_curvature
&&
ge
->
dim
()
<
3
)
l1
=
std
::
max
(
l3
/
3
00
,
LC_MVertex_CURV
(
ge
,
U
,
V
));
l1
=
std
::
max
(
l3
/
1
00
,
LC_MVertex_CURV
(
ge
,
U
,
V
));
return
std
::
min
(
l
,
l1
)
;
return
std
::
min
(
l
,
l1
)
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Mesh/meshGEdge.cpp
+
4
−
4
View file @
57eccb26
// $Id: meshGEdge.cpp,v 1.2
3
2006-1
1-30 11:32:26
remacle Exp $
// $Id: meshGEdge.cpp,v 1.2
4
2006-1
2-05 14:22:05
remacle Exp $
//
//
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
//
//
...
@@ -222,7 +222,7 @@ void meshGEdge :: operator() (GEdge *ge)
...
@@ -222,7 +222,7 @@ void meshGEdge :: operator() (GEdge *ge)
// first compute the length of the curve by integrating one
// first compute the length of the curve by integrating one
_myGEdgeLength
=
Integration
(
_myGEdgeBounds
.
low
(),
_myGEdgeBounds
.
high
(),
_myGEdgeLength
=
Integration
(
_myGEdgeBounds
.
low
(),
_myGEdgeBounds
.
high
(),
F_One
,
Points
,
1.e-
4
);
F_One
,
Points
,
1.e-
8
);
ge
->
setLength
(
_myGEdgeLength
);
ge
->
setLength
(
_myGEdgeLength
);
List_Reset
(
Points
);
List_Reset
(
Points
);
...
@@ -235,12 +235,12 @@ void meshGEdge :: operator() (GEdge *ge)
...
@@ -235,12 +235,12 @@ void meshGEdge :: operator() (GEdge *ge)
int
N
;
int
N
;
if
(
ge
->
meshAttributes
.
Method
==
TRANSFINI
){
if
(
ge
->
meshAttributes
.
Method
==
TRANSFINI
){
a
=
Integration
(
_myGEdgeBounds
.
low
(),
_myGEdgeBounds
.
high
(),
a
=
Integration
(
_myGEdgeBounds
.
low
(),
_myGEdgeBounds
.
high
(),
F_Transfinite
,
Points
,
1.e-
7
);
F_Transfinite
,
Points
,
1.e-
8
);
N
=
ge
->
meshAttributes
.
nbPointsTransfinite
;
N
=
ge
->
meshAttributes
.
nbPointsTransfinite
;
}
}
else
{
else
{
a
=
Integration
(
_myGEdgeBounds
.
low
(),
_myGEdgeBounds
.
high
(),
a
=
Integration
(
_myGEdgeBounds
.
low
(),
_myGEdgeBounds
.
high
(),
F_Lc
,
Points
,
1.e-
4
);
F_Lc
,
Points
,
1.e-
8
);
N
=
std
::
max
(
ge
->
minimumMeshSegments
()
+
1
,
(
int
)(
a
+
1.
));
N
=
std
::
max
(
ge
->
minimumMeshSegments
()
+
1
,
(
int
)(
a
+
1.
));
}
}
const
double
b
=
a
/
(
double
)(
N
-
1
);
const
double
b
=
a
/
(
double
)(
N
-
1
);
...
...
This diff is collapsed.
Click to expand it.
Mesh/meshGFace.cpp
+
50
−
12
View file @
57eccb26
// $Id: meshGFace.cpp,v 1.3
7
2006-12-0
3 00:04:31 geuzain
e Exp $
// $Id: meshGFace.cpp,v 1.3
8
2006-12-0
5 14:22:05 remacl
e Exp $
//
//
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
//
//
...
@@ -273,6 +273,7 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
...
@@ -273,6 +273,7 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
}
}
double
OLDminL
=
1.E22
,
OLDmaxL
=
0
;
while
(
1
)
while
(
1
)
{
{
// double stot = 0;
// double stot = 0;
...
@@ -313,8 +314,10 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
...
@@ -313,8 +314,10 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
++
it
;
++
it
;
}
}
if
(
OLDminL
==
minL
&&
OLDmaxL
==
maxL
)
break
;
OLDminL
=
minL
;
OLDmaxL
=
maxL
;
if
((
minL
>
0.4
&&
maxL
<
1.5
)
||
IT
>
NIT
)
break
;
if
((
minL
>
1.
/
sqrt
(
2.0
)
&&
maxL
<
sqrt
(
2.0
)
)
||
IT
>
NIT
)
break
;
NN1
=
m
.
edges
.
size
();
NN1
=
m
.
edges
.
size
();
...
@@ -336,12 +339,12 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
...
@@ -336,12 +339,12 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
coord
*
(
*
it
)
->
p1
->
u
+
(
1
-
coord
)
*
(
*
it
)
->
p2
->
u
,
coord
*
(
*
it
)
->
p1
->
u
+
(
1
-
coord
)
*
(
*
it
)
->
p2
->
u
,
coord
*
(
*
it
)
->
p1
->
v
+
(
1
-
coord
)
*
(
*
it
)
->
p2
->
v
,
gf
);
coord
*
(
*
it
)
->
p1
->
v
+
(
1
-
coord
)
*
(
*
it
)
->
p2
->
v
,
gf
);
double
l1
=
0.5
*
(
(
*
it
)
->
p1
->
lc
()
+
(
*
it
)
->
p2
->
lc
()
);
double
l1
=
0.5
*
(
(
*
it
)
->
p1
->
lc
()
+
(
*
it
)
->
p2
->
lc
()
);
double
l2
=
BGM_MeshSize
(
gf
,
//
double l2 = BGM_MeshSize(gf,
(
coord
*
(
*
it
)
->
p1
->
u
+
(
1
-
coord
)
*
(
*
it
)
->
p2
->
u
)
*
m
.
scalingU
,
//
(coord * (*it)->p1->u + (1 - coord) * (*it)->p2->u)*m.scalingU,
(
coord
*
(
*
it
)
->
p1
->
v
+
(
1
-
coord
)
*
(
*
it
)
->
p2
->
v
)
*
m
.
scalingV
,
//
(coord * (*it)->p1->v + (1 - coord) * (*it)->p2->v)*m.scalingV,
mid
->
X
,
mid
->
Y
,
mid
->
Z
);
//
mid->X,mid->Y,mid->Z);
mid
->
lc
()
=
std
::
min
(
l1
,
l2
);
//
mid->lc() = std::min(l1,l2);
//
mid->lc() = l
2
;
mid
->
lc
()
=
l
1
;
m
.
split_edge
(
*
it
,
mid
);
m
.
split_edge
(
*
it
,
mid
);
nb_split
++
;
nb_split
++
;
}
}
...
@@ -422,14 +425,49 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
...
@@ -422,14 +425,49 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT)
++
itp
;
++
itp
;
}
}
}
}
IT
++
;
// recompute mesh sizes takin into account curvature , BGMESH & co
Msg
(
DEBUG1
,
" iter %d minL %g maxL %g %d split %d swap %d collapse %d smooth"
,
IT
,
minL
,
maxL
,
nb_split
,
nb_swap
,
nb_collaps
,
nb_smooth
);
m
.
cleanup
();
m
.
cleanup
();
if
(
IT
%
5
==
0
&&
(
CTX
.
mesh
.
lc_from_curvature
||
BGMExists
()))
{
std
::
set
<
BDS_Point
*
,
PointLessThan
>::
iterator
itp
=
m
.
points
.
begin
();
while
(
itp
!=
m
.
points
.
end
())
{
BDS_Point
*
p
=
*
itp
;
if
(
p
->
g
->
classif_degree
==
2
)
{
double
l2
=
BGM_MeshSize
(
gf
,
p
->
u
*
m
.
scalingU
,
p
->
v
*
m
.
scalingV
,
p
->
X
,
p
->
Y
,
p
->
Z
);
p
->
config_modified
=
true
;
p
->
lc
()
=
std
::
min
(
p
->
lc
(),
l2
);
}
++
itp
;
}
for
(
int
ITERA
=
0
;
ITERA
<
6
;
ITERA
++
);
{
it
=
m
.
edges
.
begin
();
while
(
it
!=
m
.
edges
.
end
())
{
BDS_Edge
*
e
=
*
it
;
if
(
!
e
->
deleted
)
{
double
l1
=
e
->
p1
->
lc
();
double
l2
=
e
->
p2
->
lc
();
if
(
l1
>
1.3
*
l2
)
e
->
p1
->
lc
()
=
1.5
*
l2
;
if
(
l2
>
1.3
*
l1
)
e
->
p2
->
lc
()
=
1.5
*
l1
;
}
++
it
;
}
}
}
IT
++
;
Msg
(
DEBUG1
,
" iter %3d minL %8.3f maxL %8.3f : %6d splits, %6d swaps, %6d collapses, %6d moves"
,
IT
,
minL
,
maxL
,
nb_split
,
nb_swap
,
nb_collaps
,
nb_smooth
);
if
(
nb_split
==
0
&&
nb_collaps
==
0
)
break
;
}
}
}
}
bool
recover_medge
(
BDS_Mesh
*
m
,
GEdge
*
ge
)
bool
recover_medge
(
BDS_Mesh
*
m
,
GEdge
*
ge
)
{
{
...
@@ -771,7 +809,7 @@ void gmsh2DMeshGenerator ( GFace *gf )
...
@@ -771,7 +809,7 @@ void gmsh2DMeshGenerator ( GFace *gf )
// goto hhh;
// goto hhh;
// start mesh generation
// start mesh generation
RefineMesh
(
gf
,
*
m
,
1
5
);
RefineMesh
(
gf
,
*
m
,
1
00
);
// OptimizeMesh (gf,*m,2);
// OptimizeMesh (gf,*m,2);
...
@@ -1246,7 +1284,7 @@ bool gmsh2DMeshGeneratorPeriodic ( GFace *gf )
...
@@ -1246,7 +1284,7 @@ bool gmsh2DMeshGeneratorPeriodic ( GFace *gf )
// goto hhh;
// goto hhh;
// start mesh generation
// start mesh generation
RefineMesh
(
gf
,
*
m
,
1
5
);
RefineMesh
(
gf
,
*
m
,
1
00
);
// OptimizeMesh (gf,*m,2);
// OptimizeMesh (gf,*m,2);
...
...
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