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
fdc867f4
Commit
fdc867f4
authored
14 years ago
by
Jean-François Remacle
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
4d9d8541
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Mesh/HighOrder.cpp
+2
-1
2 additions, 1 deletion
Mesh/HighOrder.cpp
Mesh/highOrderTools.cpp
+7
-0
7 additions, 0 deletions
Mesh/highOrderTools.cpp
with
9 additions
and
1 deletion
Mesh/HighOrder.cpp
+
2
−
1
View file @
fdc867f4
...
@@ -1350,6 +1350,8 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete)
...
@@ -1350,6 +1350,8 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete)
setHighOrder
(
*
it
,
edgeVertices
,
faceVertices
,
linear
,
incomplete
,
nPts
,
setHighOrder
(
*
it
,
edgeVertices
,
faceVertices
,
linear
,
incomplete
,
nPts
,
displ2D
,
displ3D
);
displ2D
,
displ3D
);
highOrderTools
hot
(
m
);
// now we smooth mesh the internal vertices of the faces
// now we smooth mesh the internal vertices of the faces
// we do that model face by model face
// we do that model face by model face
std
::
vector
<
MElement
*>
bad
;
std
::
vector
<
MElement
*>
bad
;
...
@@ -1383,7 +1385,6 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete)
...
@@ -1383,7 +1385,6 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete)
double
t2
=
Cpu
();
double
t2
=
Cpu
();
if
(
!
linear
){
if
(
!
linear
){
highOrderTools
hot
(
m
);
hot
.
ensureMinimumDistorsion
(
0.1
);
hot
.
ensureMinimumDistorsion
(
0.1
);
checkHighOrderTriangles
(
"final mesh"
,
m
,
bad
,
worst
);
checkHighOrderTriangles
(
"final mesh"
,
m
,
bad
,
worst
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Mesh/highOrderTools.cpp
+
7
−
0
View file @
fdc867f4
...
@@ -73,8 +73,10 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold)
...
@@ -73,8 +73,10 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold)
}
}
// a == 0 -> straight
// a == 0 -> straight
// a == 1 -> curved
// a == 1 -> curved
int
ITER
=
1
;
while
(
1
){
while
(
1
){
double
a
=
0.5
*
(
a1
+
a2
);
double
a
=
0.5
*
(
a1
+
a2
);
if
(
ITER
>
10
)
a
=
0.
;
for
(
int
i
=
0
;
i
<
e
->
getNumVertices
();
i
++
){
for
(
int
i
=
0
;
i
<
e
->
getNumVertices
();
i
++
){
MVertex
*
v
=
e
->
getVertex
(
i
);
MVertex
*
v
=
e
->
getVertex
(
i
);
v
->
x
()
=
a
*
x
[
i
][
0
]
+
(
1.
-
a
)
*
X
[
i
][
0
];
v
->
x
()
=
a
*
x
[
i
][
0
]
+
(
1.
-
a
)
*
X
[
i
][
0
];
...
@@ -87,6 +89,8 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold)
...
@@ -87,6 +89,8 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold)
if
(
dist
>
0
&&
fabs
(
dist
-
threshold
)
<
.05
)
break
;
if
(
dist
>
0
&&
fabs
(
dist
-
threshold
)
<
.05
)
break
;
if
(
dist
<
threshold
)
a2
=
a
;
if
(
dist
<
threshold
)
a2
=
a
;
else
a1
=
a
;
else
a1
=
a
;
if
(
a
>
.99
||
a
<
.01
)
break
;
++
ITER
;
}
}
// printf("element done\n");
// printf("element done\n");
}
}
...
@@ -612,11 +616,14 @@ double highOrderTools::apply_incremental_displacement (double max_incr,
...
@@ -612,11 +616,14 @@ double highOrderTools::apply_incremental_displacement (double max_incr,
// uncurve elements that are invalid
// uncurve elements that are invalid
void
highOrderTools
::
ensureMinimumDistorsion
(
std
::
vector
<
MElement
*>
&
all
,
void
highOrderTools
::
ensureMinimumDistorsion
(
std
::
vector
<
MElement
*>
&
all
,
double
threshold
){
double
threshold
){
int
num
=
0
;
while
(
1
){
while
(
1
){
double
minD
;
double
minD
;
std
::
vector
<
MElement
*>
disto
;
std
::
vector
<
MElement
*>
disto
;
getDistordedElements
(
all
,
threshold
,
disto
,
minD
);
getDistordedElements
(
all
,
threshold
,
disto
,
minD
);
if
(
num
==
disto
.
size
())
break
;
if
(
!
disto
.
size
())
break
;
if
(
!
disto
.
size
())
break
;
num
=
disto
.
size
();
Msg
::
Info
(
"fixing %d bad curved elements (worst disto %g)"
,
disto
.
size
(),
minD
);
Msg
::
Info
(
"fixing %d bad curved elements (worst disto %g)"
,
disto
.
size
(),
minD
);
for
(
int
i
=
0
;
i
<
disto
.
size
();
i
++
){
for
(
int
i
=
0
;
i
<
disto
.
size
();
i
++
){
ensureMinimumDistorsion
(
disto
[
i
],
threshold
);
ensureMinimumDistorsion
(
disto
[
i
],
threshold
);
...
...
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