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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
c6dd15fe
Commit
c6dd15fe
authored
13 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
vtk types for second order elements
parent
c313cbbd
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
Geo/MHexahedron.h
+1
-1
1 addition, 1 deletion
Geo/MHexahedron.h
Geo/MLine.h
+1
-1
1 addition, 1 deletion
Geo/MLine.h
Geo/MQuadrangle.h
+1
-1
1 addition, 1 deletion
Geo/MQuadrangle.h
Geo/MTetrahedron.h
+1
-1
1 addition, 1 deletion
Geo/MTetrahedron.h
Geo/MTriangle.h
+1
-1
1 addition, 1 deletion
Geo/MTriangle.h
with
5 additions
and
5 deletions
Geo/MHexahedron.h
+
1
−
1
View file @
c6dd15fe
...
@@ -299,7 +299,7 @@ class MHexahedron20 : public MHexahedron {
...
@@ -299,7 +299,7 @@ class MHexahedron20 : public MHexahedron {
}
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_HEX_20
;
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_HEX_20
;
}
virtual
int
getTypeForUNV
()
const
{
return
116
;
}
// solid parabolic brick
virtual
int
getTypeForUNV
()
const
{
return
116
;
}
// solid parabolic brick
//
virtual int getTypeForVTK() const { return 25; }
virtual
int
getTypeForVTK
()
const
{
return
25
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CHEXA"
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CHEXA"
;
}
virtual
const
char
*
getStringForINP
()
const
{
return
"C3D20"
;
}
virtual
const
char
*
getStringForINP
()
const
{
return
"C3D20"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmB20n3D"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmB20n3D"
;
}
...
...
This diff is collapsed.
Click to expand it.
Geo/MLine.h
+
1
−
1
View file @
c6dd15fe
...
@@ -139,7 +139,7 @@ class MLine3 : public MLine {
...
@@ -139,7 +139,7 @@ class MLine3 : public MLine {
}
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_LIN_3
;
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_LIN_3
;
}
virtual
int
getTypeForUNV
()
const
{
return
24
;
}
// parabolic beam
virtual
int
getTypeForUNV
()
const
{
return
24
;
}
// parabolic beam
//
virtual int getTypeForVTK() const { return 21; }
virtual
int
getTypeForVTK
()
const
{
return
21
;
}
virtual
const
char
*
getStringForPOS
()
const
{
return
"SL2"
;
}
virtual
const
char
*
getStringForPOS
()
const
{
return
"SL2"
;
}
virtual
const
char
*
getStringForINP
()
const
{
return
"C1D3"
;
}
virtual
const
char
*
getStringForINP
()
const
{
return
"C1D3"
;
}
virtual
void
getNode
(
int
num
,
double
&
u
,
double
&
v
,
double
&
w
)
virtual
void
getNode
(
int
num
,
double
&
u
,
double
&
v
,
double
&
w
)
...
...
This diff is collapsed.
Click to expand it.
Geo/MQuadrangle.h
+
1
−
1
View file @
c6dd15fe
...
@@ -226,7 +226,7 @@ class MQuadrangle8 : public MQuadrangle {
...
@@ -226,7 +226,7 @@ class MQuadrangle8 : public MQuadrangle {
}
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_QUA_8
;
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_QUA_8
;
}
virtual
int
getTypeForUNV
()
const
{
return
95
;
}
// shell parabolic quadrilateral
virtual
int
getTypeForUNV
()
const
{
return
95
;
}
// shell parabolic quadrilateral
//
virtual int getTypeForVTK() const { return 23; }
virtual
int
getTypeForVTK
()
const
{
return
23
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CQUAD8"
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CQUAD8"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmB8n2D"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmB8n2D"
;
}
virtual
const
char
*
getStringForINP
()
const
{
return
"C2D8"
;
}
virtual
const
char
*
getStringForINP
()
const
{
return
"C2D8"
;
}
...
...
This diff is collapsed.
Click to expand it.
Geo/MTetrahedron.h
+
1
−
1
View file @
c6dd15fe
...
@@ -252,7 +252,7 @@ class MTetrahedron10 : public MTetrahedron {
...
@@ -252,7 +252,7 @@ class MTetrahedron10 : public MTetrahedron {
}
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_TET_10
;
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_TET_10
;
}
virtual
int
getTypeForUNV
()
const
{
return
118
;
}
// solid parabolic tetrahedron
virtual
int
getTypeForUNV
()
const
{
return
118
;
}
// solid parabolic tetrahedron
//
virtual int getTypeForVTK() const { return 24; }
virtual
int
getTypeForVTK
()
const
{
return
24
;
}
virtual
const
char
*
getStringForPOS
()
const
{
return
"SS2"
;
}
virtual
const
char
*
getStringForPOS
()
const
{
return
"SS2"
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CTETRA"
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CTETRA"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmT10n3D"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmT10n3D"
;
}
...
...
This diff is collapsed.
Click to expand it.
Geo/MTriangle.h
+
1
−
1
View file @
c6dd15fe
...
@@ -215,7 +215,7 @@ class MTriangle6 : public MTriangle {
...
@@ -215,7 +215,7 @@ class MTriangle6 : public MTriangle {
}
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_TRI_6
;
}
virtual
int
getTypeForMSH
()
const
{
return
MSH_TRI_6
;
}
virtual
int
getTypeForUNV
()
const
{
return
92
;
}
// thin shell parabolic triangle
virtual
int
getTypeForUNV
()
const
{
return
92
;
}
// thin shell parabolic triangle
//
virtual int getTypeForVTK() const { return 22; }
virtual
int
getTypeForVTK
()
const
{
return
22
;
}
virtual
const
char
*
getStringForPOS
()
const
{
return
"ST2"
;
}
virtual
const
char
*
getStringForPOS
()
const
{
return
"ST2"
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CTRIA6"
;
}
virtual
const
char
*
getStringForBDF
()
const
{
return
"CTRIA6"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmT6n2D"
;
}
virtual
const
char
*
getStringForDIFF
()
const
{
return
"ElmT6n2D"
;
}
...
...
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