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
799cdfde
Commit
799cdfde
authored
12 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
cleanup
parent
aebf62b2
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Common/CommandLine.cpp
+3
-6
3 additions, 6 deletions
Common/CommandLine.cpp
with
3 additions
and
6 deletions
Common/CommandLine.cpp
+
3
−
6
View file @
799cdfde
...
@@ -58,20 +58,17 @@ std::vector<std::pair<std::string, std::string> > GetUsage()
...
@@ -58,20 +58,17 @@ std::vector<std::pair<std::string, std::string> > GetUsage()
s
.
push_back
(
mp
(
"-match"
,
"Match geometries and meshes"
));
s
.
push_back
(
mp
(
"-match"
,
"Match geometries and meshes"
));
s
.
push_back
(
mp
(
"Mesh options:"
,
""
));
s
.
push_back
(
mp
(
"Mesh options:"
,
""
));
s
.
push_back
(
mp
(
"-1, -2, -3"
,
"Perform 1D, 2D or 3D mesh generation, then exit"
));
s
.
push_back
(
mp
(
"-1, -2, -3"
,
"Perform 1D, 2D or 3D mesh generation, then exit"
));
s
.
push_back
(
mp
(
"-o file"
,
"Specify output file name"
));
s
.
push_back
(
mp
(
"-format string"
,
"Select output mesh format (auto (default), msh, "
s
.
push_back
(
mp
(
"-format string"
,
"Select output mesh format (auto (default), msh, "
"msh1, msh2, unv, vrml, ply2, stl, mesh, bdf, cgns, "
"msh1, msh2, unv, vrml, ply2, stl, mesh, bdf, cgns, "
"p3d, diff, med, ...)"
));
"p3d, diff, med, ...)"
));
s
.
push_back
(
mp
(
"-
vmsh float"
,
"Select msh file version
"
));
s
.
push_back
(
mp
(
"-
bin"
,
"Use binary format when available
"
));
s
.
push_back
(
mp
(
"-refine"
,
"Perform uniform mesh refinement, then exit"
));
s
.
push_back
(
mp
(
"-refine"
,
"Perform uniform mesh refinement, then exit"
));
s
.
push_back
(
mp
(
"-part int"
,
"Partition after batch mesh generation"
));
s
.
push_back
(
mp
(
"-part int"
,
"Partition after batch mesh generation"
));
s
.
push_back
(
mp
(
"-partWeight tri|quad|tet|prism|hex int"
,
"Weight of a triangle/quad/etc. "
s
.
push_back
(
mp
(
"-partWeight tri|quad|tet|prism|hex int"
,
"Weight of a triangle/quad/etc. "
"during partitioning"
));
"during partitioning"
));
s
.
push_back
(
mp
(
"-renumber"
,
"Renumber the mesh elements after batch mesh generation"
));
s
.
push_back
(
mp
(
"-saveall"
,
"Save all elements (discard physical group definitions)"
));
s
.
push_back
(
mp
(
"-saveall"
,
"Save all elements (discard physical group definitions)"
));
s
.
push_back
(
mp
(
"-o file"
,
"Specify output file name"
));
s
.
push_back
(
mp
(
"-bin"
,
"Use binary format when available"
));
s
.
push_back
(
mp
(
"-parametric"
,
"Save vertices with their parametric coordinates"
));
s
.
push_back
(
mp
(
"-parametric"
,
"Save vertices with their parametric coordinates"
));
s
.
push_back
(
mp
(
"-numsubedges"
,
"Set num of subdivisions for high order element display"
));
s
.
push_back
(
mp
(
"-algo string"
,
"Select mesh algorithm (meshadapt, del2d, front2d, "
s
.
push_back
(
mp
(
"-algo string"
,
"Select mesh algorithm (meshadapt, del2d, front2d, "
"delquad, del3d, front3d, mmg3d)"
));
"delquad, del3d, front3d, mmg3d)"
));
s
.
push_back
(
mp
(
"-smooth int"
,
"Set number of mesh smoothing steps"
));
s
.
push_back
(
mp
(
"-smooth int"
,
"Set number of mesh smoothing steps"
));
...
@@ -80,7 +77,6 @@ std::vector<std::pair<std::string, std::string> > GetUsage()
...
@@ -80,7 +77,6 @@ std::vector<std::pair<std::string, std::string> > GetUsage()
s
.
push_back
(
mp
(
"-optimize_ho"
,
"Optimize high order meshes"
));
s
.
push_back
(
mp
(
"-optimize_ho"
,
"Optimize high order meshes"
));
s
.
push_back
(
mp
(
"-ho_[min,max,nlayers]"
,
"High-order optimization parameters"
));
s
.
push_back
(
mp
(
"-ho_[min,max,nlayers]"
,
"High-order optimization parameters"
));
s
.
push_back
(
mp
(
"-optimize_lloyd"
,
"Optimize 2D meshes using Lloyd algorithm"
));
s
.
push_back
(
mp
(
"-optimize_lloyd"
,
"Optimize 2D meshes using Lloyd algorithm"
));
s
.
push_back
(
mp
(
"-microstructure"
,
"Generate polycrystal Voronoi geometry"
));
s
.
push_back
(
mp
(
"-clscale float"
,
"Set global mesh element size scaling factor"
));
s
.
push_back
(
mp
(
"-clscale float"
,
"Set global mesh element size scaling factor"
));
s
.
push_back
(
mp
(
"-clmin float"
,
"Set minimum mesh element size"
));
s
.
push_back
(
mp
(
"-clmin float"
,
"Set minimum mesh element size"
));
s
.
push_back
(
mp
(
"-clmax float"
,
"Set maximum mesh element size"
));
s
.
push_back
(
mp
(
"-clmax float"
,
"Set maximum mesh element size"
));
...
@@ -104,6 +100,7 @@ std::vector<std::pair<std::string, std::string> > GetUsage()
...
@@ -104,6 +100,7 @@ std::vector<std::pair<std::string, std::string> > GetUsage()
s
.
push_back
(
mp
(
"Display options:"
,
""
));
s
.
push_back
(
mp
(
"Display options:"
,
""
));
s
.
push_back
(
mp
(
"-n"
,
"Hide all meshes and post-processing views on startup"
));
s
.
push_back
(
mp
(
"-n"
,
"Hide all meshes and post-processing views on startup"
));
s
.
push_back
(
mp
(
"-nodb"
,
"Disable double buffering"
));
s
.
push_back
(
mp
(
"-nodb"
,
"Disable double buffering"
));
s
.
push_back
(
mp
(
"-numsubedges"
,
"Set num of subdivisions for high order element display"
));
s
.
push_back
(
mp
(
"-fontsize int"
,
"Specify the font size for the GUI"
));
s
.
push_back
(
mp
(
"-fontsize int"
,
"Specify the font size for the GUI"
));
s
.
push_back
(
mp
(
"-theme string"
,
"Specify FLTK GUI theme"
));
s
.
push_back
(
mp
(
"-theme string"
,
"Specify FLTK GUI theme"
));
s
.
push_back
(
mp
(
"-display string"
,
"Specify display"
));
s
.
push_back
(
mp
(
"-display string"
,
"Specify display"
));
...
...
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