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
f9107096
Commit
f9107096
authored
13 years ago
by
Bastien Gorissen
Browse files
Options
Downloads
Patches
Plain Diff
Remove old smoothing code
parent
8e594ae0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Mesh/CMakeLists.txt
+0
-1
0 additions, 1 deletion
Mesh/CMakeLists.txt
Mesh/HighOrder.cpp
+129
-105
129 additions, 105 deletions
Mesh/HighOrder.cpp
Mesh/HighOrder.h
+1
-5
1 addition, 5 deletions
Mesh/HighOrder.h
with
130 additions
and
111 deletions
Mesh/CMakeLists.txt
+
0
−
1
View file @
f9107096
...
@@ -24,7 +24,6 @@ CenterlineField.cpp
...
@@ -24,7 +24,6 @@ CenterlineField.cpp
BoundaryLayers.cpp
BoundaryLayers.cpp
BDS.cpp
BDS.cpp
HighOrder.cpp
HighOrder.cpp
highOrderSmoother.cpp
highOrderTools.cpp
highOrderTools.cpp
meshPartition.cpp
meshPartition.cpp
meshRefine.cpp
meshRefine.cpp
...
...
This diff is collapsed.
Click to expand it.
Mesh/HighOrder.cpp
+
129
−
105
View file @
f9107096
This diff is collapsed.
Click to expand it.
Mesh/HighOrder.h
+
1
−
5
View file @
f9107096
...
@@ -19,16 +19,12 @@ typedef std::map<std::pair<MVertex*, MVertex*>, std::vector<MVertex*> > edgeCont
...
@@ -19,16 +19,12 @@ typedef std::map<std::pair<MVertex*, MVertex*>, std::vector<MVertex*> > edgeCont
// are the high order representation of the face
// are the high order representation of the face
typedef
std
::
map
<
MFace
,
std
::
vector
<
MVertex
*>
,
Less_Face
>
faceContainer
;
typedef
std
::
map
<
MFace
,
std
::
vector
<
MVertex
*>
,
Less_Face
>
faceContainer
;
class
highOrderSmoother
;
void
SetOrder1
(
GModel
*
m
);
void
SetOrder1
(
GModel
*
m
);
void
SetOrderN
(
GModel
*
m
,
int
order
,
bool
linear
=
true
,
bool
incomplete
=
false
);
void
SetOrderN
(
GModel
*
m
,
int
order
,
bool
linear
=
true
,
bool
incomplete
=
false
);
MTriangle
*
setHighOrder
(
MTriangle
*
t
,
GFace
*
gf
,
MTriangle
*
setHighOrder
(
MTriangle
*
t
,
GFace
*
gf
,
edgeContainer
&
edgeVertices
,
edgeContainer
&
edgeVertices
,
faceContainer
&
faceVertices
,
faceContainer
&
faceVertices
,
bool
linear
,
bool
incomplete
,
int
nPts
=
1
,
bool
linear
,
bool
incomplete
,
int
nPts
=
1
);
highOrderSmoother
*
displ2D
=
0
,
highOrderSmoother
*
displ3D
=
0
);
void
checkHighOrderTriangles
(
const
char
*
cc
,
GModel
*
m
,
void
checkHighOrderTriangles
(
const
char
*
cc
,
GModel
*
m
,
std
::
vector
<
MElement
*>
&
bad
,
double
&
minJGlob
);
std
::
vector
<
MElement
*>
&
bad
,
double
&
minJGlob
);
...
...
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