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
25de5123
Commit
25de5123
authored
11 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
fix periodic rotation with common edge
parent
98ab903d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Mesh/meshGFace.cpp
+18
-18
18 additions, 18 deletions
Mesh/meshGFace.cpp
with
18 additions
and
18 deletions
Mesh/meshGFace.cpp
+
18
−
18
View file @
25de5123
...
...
@@ -203,8 +203,6 @@ static void copyMesh(GFace *source, GFace *target)
SVector3
(
mean_target
.
a
,
mean_target
.
b
,
mean_target
.
c
));
LINE
=
myLine
(
PLANE_SOURCE
,
PLANE_TARGET
);
// FIXME: this fails when the 2 planes have a common edge (= rotation axis)
// LINE is the axis of rotation
// let us compute the angle of rotation
count
=
0
;
...
...
@@ -219,21 +217,23 @@ static void copyMesh(GFace *source, GFace *target)
SPoint3
p_pt
=
LINE
.
orthogonalProjection
(
pt
);
SVector3
dist1
=
ps
-
pt
;
SVector3
dist2
=
p_ps
-
p_pt
;
if
(
dist2
.
norm
()
>
1.e-8
*
dist1
.
norm
()){
rotation
=
false
;
}
SVector3
t1
=
ps
-
p_ps
;
SVector3
t2
=
pt
-
p_pt
;
if
(
t1
.
norm
()
>
1.e-8
*
dist1
.
norm
()){
if
(
count
==
0
)
ANGLE
=
myAngle
(
t1
,
t2
,
LINE
.
t
);
else
{
double
ANGLE2
=
myAngle
(
t1
,
t2
,
LINE
.
t
);
if
(
fabs
(
ANGLE2
-
ANGLE
)
>
1.e-8
){
rotation
=
false
;
if
(
dist1
.
norm
()
>
CTX
::
instance
()
->
geom
.
tolerance
){
if
(
dist2
.
norm
()
>
1.e-8
*
dist1
.
norm
()){
rotation
=
false
;
}
SVector3
t1
=
ps
-
p_ps
;
SVector3
t2
=
pt
-
p_pt
;
if
(
t1
.
norm
()
>
1.e-8
*
dist1
.
norm
()){
if
(
count
==
0
)
ANGLE
=
myAngle
(
t1
,
t2
,
LINE
.
t
);
else
{
double
ANGLE2
=
myAngle
(
t1
,
t2
,
LINE
.
t
);
if
(
fabs
(
ANGLE2
-
ANGLE
)
>
1.e-8
){
rotation
=
false
;
}
}
}
count
++
;
count
++
;
}
}
}
...
...
@@ -256,7 +256,7 @@ static void copyMesh(GFace *source, GFace *target)
}
else
{
Msg
::
Error
(
"Only rotations or translations can be currently taken into account "
"for peridic faces: face %d not meshed"
,
target
->
tag
());
"for peri
o
dic faces: face %d not meshed"
,
target
->
tag
());
return
;
}
}
...
...
@@ -692,7 +692,7 @@ void modifyInitialMeshForTakingIntoAccountBoundaryLayers(GFace *gf)
itf
!=
_columns
->
endf
()
;
++
itf
){
MVertex
*
v
=
itf
->
first
;
int
nbCol
=
_columns
->
getNbColumns
(
v
);
for
(
int
i
=
0
;
i
<
nbCol
-
1
;
i
++
){
const
BoundaryLayerData
&
c1
=
_columns
->
getColumn
(
v
,
i
);
const
BoundaryLayerData
&
c2
=
_columns
->
getColumn
(
v
,
i
+
1
);
...
...
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