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
a2e02a62
Commit
a2e02a62
authored
13 years ago
by
Emilie Marchandise
Browse files
Options
Downloads
Patches
Plain Diff
added return in parametrize_conformal
parent
4bcea875
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
Geo/GFaceCompound.cpp
+1
-0
1 addition, 0 deletions
Geo/GFaceCompound.cpp
Mesh/CenterlineField.cpp
+10
-11
10 additions, 11 deletions
Mesh/CenterlineField.cpp
with
11 additions
and
11 deletions
Geo/GFaceCompound.cpp
+
1
−
0
View file @
a2e02a62
...
@@ -1784,6 +1784,7 @@ bool GFaceCompound::parametrize_conformal(int iter, MVertex *v1, MVertex *v2) co
...
@@ -1784,6 +1784,7 @@ bool GFaceCompound::parametrize_conformal(int iter, MVertex *v1, MVertex *v2) co
// vertices
// vertices
std
::
vector
<
MVertex
*>
vert
;
std
::
vector
<
MVertex
*>
vert
;
bool
hasOverlap
=
checkOverlap
(
vert
);
bool
hasOverlap
=
checkOverlap
(
vert
);
return
hasOverlap
;
// if ( hasOverlap && iter < 3){
// if ( hasOverlap && iter < 3){
// Msg::Info("Loop FE conformal iter (%d) v1=%d v2=%d", iter,
// Msg::Info("Loop FE conformal iter (%d) v1=%d v2=%d", iter,
// vert[0]->getNum(), vert[1]->getNum());
// vert[0]->getNum(), vert[1]->getNum());
...
...
This diff is collapsed.
Click to expand it.
Mesh/CenterlineField.cpp
+
10
−
11
View file @
a2e02a62
...
@@ -790,7 +790,7 @@ void Centerline::createClosedVolume(){
...
@@ -790,7 +790,7 @@ void Centerline::createClosedVolume(){
else
boundEdges
.
push_back
(
*
it
);
else
boundEdges
.
push_back
(
*
it
);
}
}
}
}
//printf("boundEdges size =%d \n", boundEdges.size());
current
->
setFactory
(
"Gmsh"
);
current
->
setFactory
(
"Gmsh"
);
std
::
vector
<
std
::
vector
<
GFace
*>
>
myFaceLoops
;
std
::
vector
<
std
::
vector
<
GFace
*>
>
myFaceLoops
;
std
::
vector
<
GFace
*>
myFaces
;
std
::
vector
<
GFace
*>
myFaces
;
...
@@ -997,7 +997,7 @@ void Centerline::cutByDisk(SVector3 &PT, SVector3 &NORM, double &maxRad){
...
@@ -997,7 +997,7 @@ void Centerline::cutByDisk(SVector3 &PT, SVector3 &NORM, double &maxRad){
double
Centerline
::
operator
()
(
double
x
,
double
y
,
double
z
,
GEntity
*
ge
){
double
Centerline
::
operator
()
(
double
x
,
double
y
,
double
z
,
GEntity
*
ge
){
if
(
update_needed
){
if
(
update_needed
){
std
::
ifstream
input
;
std
::
ifstream
input
;
input
.
open
(
fileName
.
c_str
());
input
.
open
(
fileName
.
c_str
());
if
(
StatFile
(
fileName
))
Msg
::
Fatal
(
"Centerline file '%s' does not exist"
,
fileName
.
c_str
());
if
(
StatFile
(
fileName
))
Msg
::
Fatal
(
"Centerline file '%s' does not exist"
,
fileName
.
c_str
());
...
@@ -1031,8 +1031,7 @@ double Centerline::operator() (double x, double y, double z, GEntity *ge){
...
@@ -1031,8 +1031,7 @@ double Centerline::operator() (double x, double y, double z, GEntity *ge){
void
Centerline
::
operator
()
(
double
x
,
double
y
,
double
z
,
SMetric3
&
metr
,
GEntity
*
ge
){
void
Centerline
::
operator
()
(
double
x
,
double
y
,
double
z
,
SMetric3
&
metr
,
GEntity
*
ge
){
//printf("in operator metric xyz centerline \n");
if
(
update_needed
){
if
(
update_needed
){
std
::
ifstream
input
;
std
::
ifstream
input
;
input
.
open
(
fileName
.
c_str
());
input
.
open
(
fileName
.
c_str
());
if
(
StatFile
(
fileName
))
Msg
::
Fatal
(
"Centerline file '%s' does not exist"
,
fileName
.
c_str
());
if
(
StatFile
(
fileName
))
Msg
::
Fatal
(
"Centerline file '%s' does not exist"
,
fileName
.
c_str
());
...
@@ -1043,7 +1042,7 @@ void Centerline::operator() (double x, double y, double z, SMetric3 &metr, GEnt
...
@@ -1043,7 +1042,7 @@ void Centerline::operator() (double x, double y, double z, SMetric3 &metr, GEnt
double
xyz
[
3
]
=
{
x
,
y
,
z
};
double
xyz
[
3
]
=
{
x
,
y
,
z
};
//take xyz = closest point on boundary in case we are on the planar
in/out faces
//take xyz = closest point on boundary in case we are on the planar
IN/OUT FACES or in VOLUME
bool
isCompound
=
(
ge
->
dim
()
==
2
&&
ge
->
geomType
()
==
GEntity
::
CompoundSurface
)
?
true
:
false
;
bool
isCompound
=
(
ge
->
dim
()
==
2
&&
ge
->
geomType
()
==
GEntity
::
CompoundSurface
)
?
true
:
false
;
std
::
list
<
GFace
*>
cFaces
;
std
::
list
<
GFace
*>
cFaces
;
if
(
isCompound
)
cFaces
=
((
GFaceCompound
*
)
ge
)
->
getCompounds
();
if
(
isCompound
)
cFaces
=
((
GFaceCompound
*
)
ge
)
->
getCompounds
();
...
@@ -1064,14 +1063,14 @@ void Centerline::operator() (double x, double y, double z, SMetric3 &metr, GEnt
...
@@ -1064,14 +1063,14 @@ void Centerline::operator() (double x, double y, double z, SMetric3 &metr, GEnt
double
lc
=
2
*
M_PI
*
d
/
nbPoints
;
double
lc
=
2
*
M_PI
*
d
/
nbPoints
;
SVector3
p0
(
nodes
[
index2
[
0
]][
0
],
nodes
[
index2
[
0
]][
1
],
nodes
[
index2
[
0
]][
2
]);
SVector3
p0
(
nodes
[
index2
[
0
]][
0
],
nodes
[
index2
[
0
]][
1
],
nodes
[
index2
[
0
]][
2
]);
SVector3
p1
(
nodes
[
index2
[
1
]][
0
],
nodes
[
index2
[
1
]][
1
],
nodes
[
index2
[
1
]][
2
]);
SVector3
p1
(
nodes
[
index2
[
1
]][
0
],
nodes
[
index2
[
1
]][
1
],
nodes
[
index2
[
1
]][
2
]);
SVector3
dir
0
=
p1
-
p0
;
SVector3
dir
_t
=
p1
-
p0
;
SVector3
dir1
,
dir2
;
SVector3
dir
_n
1
,
dir
_n
2
;
buildOrthoBasis
(
dir0
,
dir1
,
dir2
);
buildOrthoBasis
(
dir0
,
dir1
,
dir2
);
double
lc
A
=
3.
*
lc
;
double
lc
_t
=
3.
*
lc
;
double
lam
1
=
1.
/
(
lc
A
*
lc
A
);
double
lam
_t
=
1.
/
(
lc
_t
*
lc
_t
);
double
lam
2
=
1.
/
(
lc
*
lc
);
double
lam
_n
=
1.
/
(
lc
*
lc
);
metr
=
SMetric3
(
lam
1
,
lam
2
,
lam
2
,
dir
0
,
dir1
,
dir2
);
metr
=
SMetric3
(
lam
_t
,
lam
_n
,
lam
_n
,
dir
_t
,
dir
_n
1
,
dir
_n
2
);
delete
[]
index2
;
delete
[]
index2
;
delete
[]
dist2
;
delete
[]
dist2
;
...
...
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