GMSH
GMSH
GMSH
16 November 2020
Christophe Geuzaine
Jean-François Remacle
Copyright
c 1997-2020 Christophe Geuzaine, Jean-François Remacle
Permission is granted to make and distribute verbatim copies of this manual provided the copy-
right notice and this permission notice are preserved on all copies.
i
Short Contents
Obtaining Gmsh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Copying conditions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
2 How to read this reference manual? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3 Running Gmsh on your system . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
4 General tools . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
5 Geometry module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
6 Mesh module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
7 Solver module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
8 Post-processing module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
9 File formats . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
A Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127
B Options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 169
C Compiling the source code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 245
D Gmsh API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 249
E Information for developers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 325
F Frequently asked questions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 327
G Version history . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
H Copyright and credits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 349
I License . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 353
Concept index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 359
Syntax index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 361
iii
Table of Contents
Obtaining Gmsh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Copying conditions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.1 Geometry: model entity creation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.2 Mesh: finite element mesh generation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.3 Solver: external solver interface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.4 Post-processing: scalar, vector and tensor field visualization . . . . . . . . . . . . . . . . . . . . . . . . 6
1.5 What Gmsh is pretty good at . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.6 . . . and what Gmsh is not so good at . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
1.7 Bug reports . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
4 General tools . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.1 Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.2 Expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.2.1 Floating point expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.2.2 Character expressions. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
4.2.3 Color expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
4.3 Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
4.4 Built-in functions. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
4.5 User-defined macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
4.6 Loops and conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
4.7 General commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
4.8 General options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
5 Geometry module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
5.1 Geometry commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
5.1.1 Points . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
5.1.2 Curves . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
5.1.3 Surfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
5.1.4 Volumes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
5.1.5 Extrusions. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
5.1.6 Boolean operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
5.1.7 Transformations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
5.1.8 Miscellaneous. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
5.2 Geometry options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
iv Gmsh 4.7.1
6 Mesh module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
6.1 Choosing the right unstructured algorithm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
6.2 Elementary entities vs. physical groups . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
6.3 Mesh commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
6.3.1 Specifying mesh element sizes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
6.3.2 Structured grids . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
6.3.3 Miscellaneous. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
6.4 Mesh options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
7 Solver module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
8 Post-processing module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
8.1 Post-processing commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
8.2 Post-processing plugins . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
8.3 Post-processing options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
Obtaining Gmsh
The source code and various pre-compiled versions of Gmsh (for Windows, Mac and Unix) can
be downloaded from https://gmsh.info. Gmsh is also directly available in pre-packaged form
in various Linux and BSD distributions (Debian, Ubuntu, FreeBSD, ...).
If you use Gmsh, we would appreciate that you mention it in your work by citing the follow-
ing paper: “C. Geuzaine and J.-F. Remacle, Gmsh: a three-dimensional finite element mesh
generator with built-in pre- and post-processing facilities. International Journal for Numerical
Methods in Engineering, Volume 79, Issue 11, pages 1309-1331, 2009”. A preprint of that pa-
per as well as other references and the latest news about Gmsh development are available on
https://gmsh.info.
Copying conditions 3
Copying conditions
Gmsh is “free software”; this means that everyone is free to use it and to redistribute it on a
free basis. Gmsh is not in the public domain; it is copyrighted and there are restrictions on its
distribution, but these restrictions are designed to permit everything that a good cooperating
citizen would want to do. What is not allowed is to try to prevent others from further sharing
any version of Gmsh that they might get from you.
Specifically, we want to make sure that you have the right to give away copies of Gmsh, that
you receive source code or else can get it if you want it, that you can change Gmsh or use pieces
of Gmsh in new free programs, and that you know you can do these things.
To make sure that everyone has such rights, we have to forbid you to deprive anyone else of
these rights. For example, if you distribute copies of Gmsh, you must give the recipients all the
rights that you have. You must make sure that they, too, receive or can get the source code.
And you must tell them their rights.
Also, for our own protection, we must make certain that everyone finds out that there is no
warranty for Gmsh. If Gmsh is modified by someone else and passed on, we want their recipients
to know that what they have is not what we distributed, so that any problems introduced by
others will not reflect on our reputation.
The precise conditions of the license for Gmsh are found in the General Public
License that accompanies the source code (see Appendix I [License], page 353).
Further information about this license is available from the GNU Project webpage
https://www.gnu.org/copyleft/gpl-faq.html. Detailed copyright information can be found
in Appendix H [Copyright and credits], page 349.
If you want to integrate parts of Gmsh into a closed-source software, or want to sell a modified
closed-source version of Gmsh, you will need to obtain a different license. Please contact us
directly for more information.
Chapter 1: Overview 5
1 Overview
Gmsh is a three-dimensional finite element mesh generator with a build-in CAD engine and
post-processor. Its design goal is to provide a fast, light and user-friendly meshing tool with
parametric input and advanced visualization capabilities.
Gmsh is built around four modules: geometry, mesh, solver and post-processing. All geometri-
cal, mesh, solver and post-processing instructions are prescribed either interactively using the
graphical user interface (GUI) or in text files using Gmsh’s own scripting language. Interactive
actions generate language bits in the input files, and vice versa. A programming API is also
available, for integrating Gmsh in your own C++, C, Python or Julia code: see Appendix D
[Gmsh API], page 249. A brief description of the four modules is given hereafter.
specified by values associated with points in the geometry, or defined by general “fields” (for
example related to the distance to some boundary, to a arbitrary scalar field defined on another
mesh, etc.): see Section 6.3.1 [Specifying mesh element sizes], page 47. For each meshing step,
all structured mesh directives are executed first, and serve as additional constraints for the
unstructured parts.
API], page 249). Using the OpenCASCADE geometry kernel, Gmsh gives access to all
usual constructive solid geometry operations;
• import geometries from other CAD software in standard exchange formats. Gmsh uses
OpenCASCADE to import such files, including label and color information from STEP and
IGES files;
• generate 1D, 2D and 3D simplicial (i.e., using line segments, triangles and tetrahedra) finite
element meshes (see Chapter 6 [Mesh module], page 45), with fine control over the element
size (see Section 6.3.1 [Specifying mesh element sizes], page 47);
• create simple extruded geometries and meshes (see Section 5.1 [Geometry commands],
page 35, and Section 6.3 [Mesh commands], page 47), and allow to automatically couple
such structured meshes with unstructured ones (using a layer of pyramids in 3D);
• generate high-order (curved) meshes that conform to the CAD model geometry. High-order
mesh optimization tools allow to guarantee the validity of such curved meshes;
• interact with external solvers by defining ONELAB parameters, shared between Gmsh and
the solvers and easily modifiable in the GUI (see Chapter 7 [Solver module], page 71);
• visualize and export computational results in a great variety of ways. Gmsh can dis-
play scalar, vector and tensor datasets, perform various operations on the resulting post-
processing views (see Chapter 8 [Post-processing module], page 73), can export plots in
many different formats (see Section B.1 [General options list], page 169), and can generate
complex animations (see Chapter 4 [General tools], page 21, and Section A.8 [t8], page 140);
• run on low end machines and/or machines with no graphical interface. Gmsh can be
compiled with or without the GUI (see Appendix C [Compiling the source code], page 245),
and all versions can be used either interactively or directly from the command line (see
Chapter 3 [Running Gmsh on your system], page 11);
• configure your preferred options. Gmsh has a large number of configuration options that
can be set interactively using the GUI, scattered inside script files, changed through the
API, set in per-user configuration files and specified on the command-line (see Chapter 3
[Running Gmsh on your system], page 11 and Appendix B [Options], page 169);
• and do all the above on various platforms (Windows, Mac and Unix), for free (see [Copying
conditions], page 3)!
See Appendix F [Frequently asked questions], page 327, and the bug tracking system to see
which problems we already know about.
Chapter 2: How to read this reference manual? 9
For more information about available options (and how to reset them to their default values), see
Appendix B [Options], page 169. A full list of options with their current values is also available
in the ‘Help->Current Options’ menu.
-clmax value
Set maximum mesh element size (Mesh.MeshSizeMax)
-clcurv value
Compute mesh element size from curvature, with given minimum num-
ber of elements per 2*pi radians (Mesh.MeshSizeFromCurvature and
Mesh.MinimumElementsPerTwoPi)
-aniso_max value
Set maximum anisotropy for bamg (Mesh.AnisoMax)
-smooth_ratio value
Set smoothing ration between mesh sizes at nodes of a same edge for bamg
(Mesh.SmoothRatio)
-epslc1d value
Set accuracy of evaluation of mesh size field for 1D mesh
(Mesh.LcIntegrationPrecision)
-swapangle value
Set the threshold angle (in degrees) between two adjacent faces below which a swap
is allowed (Mesh.AllowSwapAngle)
-rand value
Set random perturbation factor (Mesh.RandomFactor)
-bgm file Load background mesh from file
-check Perform various consistency checks on mesh
-ignore_periocity
Ignore periodic boundaries (Mesh.IgnorePeriodicity)
Post-processing:
-link int Select link mode between views (PostProcessing.Link)
-combine Combine views having identical names into multi-time-step views
Solver:
-listen Always listen to incoming connection requests (Solver.AlwaysListen)
-minterpreter string
Name of Octave interpreter (Solver.OctaveInterpreter)
-pyinterpreter string
Name of Python interpreter (Solver.OctaveInterpreter)
-run Run ONELAB solver(s)
Display:
-n Hide all meshes and post-processing views on startup (View.Visible,
Mesh.[Points,Lines,SurfaceEdges,...])
-nodb Disable double buffering (General.DoubleBuffer)
-numsubedges
Set num of subdivisions for high order element display (Mesh.NumSubEdges)
-fontsize int
Specify the font size for the GUI (General.FontSize)
Chapter 3: Running Gmsh on your system 15
-theme string
Specify FLTK GUI theme (General.FltkTheme)
-display string
Specify display (General.Display)
-camera Use camera mode view (General.CameraMode)
-stereo OpenGL quad-buffered stereo rendering (General.Stereo)
-gamepad Use gamepad controller if available
Other:
-, -parse_and_exit
Parse input files, then exit
-new Create new model before merge next file
-merge Merge next files
-open Open next files
-log filename
Log all messages to filename
-a, -g, -m, -s, -p
Start in automatic, geometry, mesh, solver or post-processing mode
(General.InitialModule)
-pid Print process id on stdout
-watch pattern
Pattern of files to merge as they become available (General.WatchFilePattern)
-bg file Load background (image or PDF) file (General.BackgroundImageFileName)
-v int Set verbosity level (General.Verbosity)
-nopopup Don’t popup dialog windows in scripts (General.NoPopup)
-string "string"
Parse command string at startup
-setnumber name value
Set constant or option number name=value
-setstring name value
Set constant or option string name=value
-option file
Parse option file at startup
-convert files
Convert files into latest binary formats, then exit
-nt int Set number of threads (General.NumThreads)
-cpu Report CPU times for all operations
-version Show version number
-info Show detailed version information
-help Show command line usage
-help_options
Show all options
16 Gmsh 4.7.1
s Go to solver module
x Toogle x coordinate freeze in geometry creation mode
y Toogle y coordinate freeze in geometry creation mode
z Toogle z coordinate freeze in geometry creation mode
Shift+a Bring all windows to front
Shift+g Show geometry options
Shift+m Show mesh options
Shift+o Show general options
Shift+p Show post-processing options
Shift+s Show solver options
Shift+u Show post-processing view plugins
Shift+w Show post-processing view options
Shift+x Move only along x coordinate in geometry creation mode
Shift+y Move only along y coordinate in geometry creation mode
Shift+z Move only along z coordinate in geometry creation mode
Shift+Escape
Enable full mouse selection
Ctrl+d Attach/detach menu
Ctrl+e Export project
Ctrl+f Enter full screen
Ctrl+i Show statistics window
Ctrl+j Save model options
Ctrl+l Show message console
Ctrl+m Minimize window
Ctrl+n Create new project file
Ctrl+o Open project file
Ctrl+q Quit
Ctrl+r Rename project file
Ctrl+s Save mesh in default format
Shift+Ctrl+c
Show clipping plane window
Shift+Ctrl+h
Show current options and workspace window
Shift+Ctrl+j
Save options as default
Shift+Ctrl+m
Show manipulator window
18 Gmsh 4.7.1
Shift+Ctrl+n
Show option window
Shift+Ctrl+o
Merge file(s)
Shift+Ctrl+u
Show plugin window
Shift+Ctrl+v
Show visibility window
Alt+a Loop through axes modes
Alt+b Hide/show bounding boxes
Alt+c Loop through predefined color schemes
Alt+e Hide/Show element outlines for visible post-pro views
Alt+f Change redraw mode (fast/full)
Alt+h Hide/show all post-processing views
Alt+i Hide/show all post-processing view scales
Alt+l Hide/show geometry lines
Alt+m Toggle visibility of all mesh entities
Alt+n Hide/show all post-processing view annotations
Alt+o Change projection mode (orthographic/perspective)
Alt+p Hide/show geometry points
Alt+r Loop through range modes for visible post-pro views
Alt+s Hide/show geometry surfaces
Alt+t Loop through interval modes for visible post-pro views
Alt+v Hide/show geometry volumes
Alt+w Enable/disable all lighting
Alt+x Set X view
Alt+y Set Y view
Alt+z Set Z view
Alt+1 Set 1:1 view
Alt+Shift+a
Hide/show small axes
Alt+Shift+b
Hide/show mesh volume faces
Alt+Shift+c
Loop through predefined colormaps
Alt+Shift+d
Hide/show mesh surface faces
Alt+Shift+l
Hide/show mesh lines
Chapter 3: Running Gmsh on your system 19
Alt+Shift+p
Hide/show mesh points
Alt+Shift+s
Hide/show mesh surface edges
Alt+Shift+t
Same as Alt+t, but with numeric mode included
Alt+Shift+v
Hide/show mesh volume edges
Alt+Shift+x
Set -X view
Alt+Shift+y
Set -Y view
Alt+Shift+z
Set -Z view
Alt+Shift+1
Reset bounding box around visible entities
Alt+Ctrl++1
Sync scale between viewports
Chapter 4: General tools 21
4 General tools
This chapter describes the general commands and options that can be used in Gmsh’s script files.
By “general”, we mean “not specifically related to one of the geometry, mesh, solver or post-
processing modules”. Commands peculiar to these modules will be introduced in Chapter 5
[Geometry module], page 35, Chapter 6 [Mesh module], page 45, Chapter 7 [Solver module],
page 71, and Chapter 8 [Post-processing module], page 73, respectively.
If you plan to use Gmsh through its API (see Appendix D [Gmsh API], page 249) instead of
the built-in scripting language, you can skip this chapter entirely.
4.1 Comments
Gmsh script files support both C and C++ style comments:
1. any text comprised between /* and */ pairs is ignored;
2. the rest of a line after a double slash // is ignored.
These commands won’t have the described effects inside double quotes or inside keywords. Also
note that ‘white space’ (spaces, tabs, new line characters) is ignored inside all expressions.
4.2 Expressions
The two constant types used in Gmsh scripts are real and string (there is no integer type).
These types have the same meaning and syntax as in the C or C++ programming languages.
DefineNumber(expression, onelab-options )
Such expressions are used in most of Gmsh’s scripting commands. When ~{expression } is
appended to a string string, the result is a new string formed by the concatenation of string, _
(an underscore) and the value of the expression. This is most useful in loops (see Section 4.6
[Loops and conditionals], page 28), where it permits to define unique strings automatically. For
example,
For i In {1:3}
x~{i} = i;
EndFor
is the same as
x_1 = 1;
x_2 = 2;
x_3 = 3;
The brackets [] permit to extract one item from a list (parentheses can also be used instead of
brackets). The # permits to get the size of a list. The operators operator-unary-left, operator-
unary-right, operator-binary, operator-ternary-left and operator-ternary-right are defined in
Section 4.3 [Operators], page 25. For the definition of built-in-functions, see Section 4.4 [Built-in
functions], page 26. The various real-options are listed in Appendix B [Options], page 169. Find
searches for occurrences of the first expression in the second (both of which can be lists). StrFind
searches the first char-expression for any occurrence of the second char-expression. StrCmp com-
pares the two strings (returns an integer greater than, equal to, or less than 0, according as
the first string is greater than, equal to, or less than the second string). StrLen returns the
length of the string. TextAttributes creates attributes for text strings. Exists checks if a
variable with the given name exists (i.e., has been defined previously), and FileExists checks
if the file with the given name exists. StringToName creates a name from the provided string.
GetNumber allows to get the value of a ONELAB variable (the optional second argument is the
default value returned if the variable does not exist). GetValue allows to ask the user for a
value interactively (the second argument is the value returned in non-interactive mode). For
example, inserting GetValue("Value of parameter alpha?", 5.76) in an input file will query
the user for the value of a certain parameter alpha, assuming the default value is 5.76. If the
option General.NoPopup is set (see Section B.1 [General options list], page 169), no question is
asked and the default value is automatically used.
DefineNumber allows to define a ONELAB variable in-line. The expression given as the first
argument is the default value; this is followed by the various ONELAB options. See the ONELAB
tutorial wiki for more information.
List of expressions are also widely used, and are defined as:
expression-list :
expression-list-item <, expression-list-item > ...
with
expression-list-item :
expression |
expression : expression |
expression : expression : expression |
string [ ] | string ( ) |
List [ string ] |
List [ expression-list-item ] |
List [ { expression-list } ] |
Unique [ expression-list-item ] |
Abs [ expression-list-item ] |
ListFromFile [ expression-char ] |
Chapter 4: General tools 23
char-expression :
"string " |
string | string [ expression ] |
Today | OnelabAction | GmshExecutableName |
CurrentDirectory | CurrentDir | CurrentFileName
StrPrefix ( char-expression ) |
StrRelative ( char-expression ) |
StrCat ( char-expression <,...> ) |
Str ( char-expression <,...> ) |
StrChoice ( expression, char-expression, char-expression ) |
StrSub( char-expression, expression, expression ) |
StrSub( char-expression, expression ) |
UpperCase ( char-expression ) |
AbsolutePath ( char-expression ) |
DirName ( char-expression ) |
Sprintf ( char-expression , expression-list ) |
Sprintf ( char-expression ) |
Sprintf ( char-option ) |
GetEnv ( char-expression ) |
GetString ( char-expression <,char-expression >) |
GetStringValue ( char-expression , char-expression ) |
StrReplace ( char-expression , char-expression , char-expression )
NameToString ( string ) | N2S ( string ) |
<Physical> Point|Curve|Surface|Volume { expression } |
DefineString(char-expression, onelab-options )
Today returns the current date. OnelabAction returns the current ONELAB action (e.g.
check or compute). GmshExecutableName returns the full path of the Gmsh executable.
CurrentDirectory (or CurrentDir) and CurrentFileName return the directory and file name
of the script being parsed. StrPrefix and StrRelative take the prefix (e.g. to remove the
extension) or the relative path of a given file name. StrCat and Str concatenate character
expressions (Str adds a newline character after each string except the last). StrChoice returns
the first or second char-expression depending on the value of expression. StrSub returns the
portion of the string that starts at the character position given by the first expression and spans
the number of characters given by the second expression or until the end of the string (whichever
comes first; or always if the second expression is not provided). UpperCase converts the char-
expression to upper case. AbsolutePath returns the absolute path of a file. DirName returns
the directory of a file. Sprintf is equivalent to the sprintf C function (where char-expression
is a format string that can contain floating point formatting characters: %e, %g, etc.) The
various char-options are listed in Appendix B [Options], page 169. GetEnvThe gets the value
of an environment variable from the operating system. GetString allows to get a ONELAB
string value (the second optional argument is the default value returned if the variable does not
exist). GetStringValue asks the user for a value interactively (the second argument is the value
used in non-interactive mode). StrReplace’s arguments are: input string, old substring, new
substring (brackets can be used instead of parentheses in Str and Sprintf). Physical Point,
etc., or Point, etc., retrieve the name of the physical or elementary entity, if any. NameToString
converts a variable name into a string.
DefineString allows to define a ONELAB variable in-line. The char-expression given as the
first argument is the default value; this is followed by the various ONELAB options. See the
ONELAB tutorial wiki for more information.
Chapter 4: General tools 25
Character expressions are mostly used to specify non-numeric options and input/output file
names. See Section A.8 [t8], page 140, for an interesting usage of char-expressions in an anima-
tion script.
List of character expressions are defined as:
char-expression-list :
char-expression <,...>
4.3 Operators
Gmsh’s operators are similar to the corresponding operators in C and C++. Here is the list of
the unary, binary and ternary operators currently implemented.
operator-unary-left:
- Unary minus.
! Logical not.
operator-unary-right:
++ Post-incrementation.
-- Post-decrementation.
operator-binary:
^ Exponentiation.
* Multiplication.
/ Division.
% Modulo.
+ Addition.
- Subtraction.
== Equality.
!= Inequality.
> Greater.
>= Greater or equality.
26 Gmsh 4.7.1
< Less.
<= Less or equality.
&& Logical ‘and’.
|| Logical ‘or’. (Warning: the logical ‘or’ always implies the evaluation of both argu-
ments. That is, unlike in C or C++, the second operand of || is evaluated even if
the first one is true).
operator-ternary-left:
?
operator-ternary-right:
: The only ternary operator, formed by operator-ternary-left and operator-ternary-
right, returns the value of its second argument if the first argument is non-zero;
otherwise it returns the value of its third argument.
The evaluation priorities are summarized below1 (from stronger to weaker, i.e., * has a highest
evaluation priority than +). Parentheses () may be used anywhere to change the order of
evaluation:
1. (), [], ., #
2. ^
3. !, ++, --, - (unary)
4. *, /, %
5. +, -
6. <, >, <=, >=
7. ==, !=
8. &&
9. ||
10. ?:
11. =, +=, -=, *=, /=
Ceil ( expression )
Rounds expression up to the nearest integer.
Cos ( expression )
Cosine of expression.
Cosh ( expression )
Hyperbolic cosine of expression.
Exp ( expression )
Returns the value of e (the base of natural logarithms) raised to the power of ex-
pression.
Fabs ( expression )
Absolute value of expression.
Fmod ( expression, expression )
Remainder of the division of the first expression by the second, with the sign of the
first.
Floor ( expression )
Rounds expression down to the nearest integer.
Hypot ( expression, expression )
Returns the square root of the sum of the square of its two arguments.
Log ( expression )
Natural logarithm of expression (expression > 0).
Log10 ( expression )
Base 10 logarithm of expression (expression > 0).
Max ( expression, expression )
Maximum of the two arguments.
Min ( expression, expression )
Minimum of the two arguments.
Modulo ( expression, expression )
see Fmod( expression, expression ).
Rand ( expression )
Random number between zero and expression.
Round ( expression )
Rounds expression to the nearest integer.
Sqrt ( expression )
Square root of expression (expression >= 0).
Sin ( expression )
Sine of expression.
Sinh ( expression )
Hyperbolic sine of expression.
Tan ( expression )
Tangent of expression.
Tanh ( expression )
Hyperbolic tangent of expression.
28 Gmsh 4.7.1
Else The body enclosed between Else and the matching EndIf is evaluated if none of
the expression of the previous matching codes If and ElseIf were non-zero.
EndIf Ends a matching If command.
See Section A.5 [t5], page 135, for an example of For and If commands. Gmsh does not provide
any Else (or similar) command at the time of this writing.
string = { };
Creates a new expression list identifier string with an empty list.
string [] = { expression-list };
Creates a new expression list identifier string with the list expression-list, or affects
expression-list to an existing expression list identifier. Parentheses are also allowed
instead of square brackets; although not recommended, brackets and parentheses
can also be completely ommitted.
string [ { expression-list } ] = { expression-list };
Affects each item in the right hand side expression-list to the elements (indexed by
the left hand side expression-list) of an existing expression list identifier. The two
expression-lists must contain the same number of items. Parentheses can also be
used instead of brackets.
string += expression ;
Adds and affects expression to an existing expression identifier.
string -= expression ;
Subtracts and affects expression to an existing expression identifier.
string *= expression ;
Multiplies and affects expression to an existing expression identifier.
string /= expression ;
Divides and affects expression to an existing expression identifier.
string += { expression-list };
Appends expression-list to an existing expression list or creates a new expression
list with expression-list.
string -= { expression-list };
Removes the items in expression-list from the existing expression list.
string [ { expression-list } ] += { expression-list };
Adds and affects, item per item, the right hand side expression-list to an existing
expression list identifier. Parentheses can also be used instead of brackets.
string [ { expression-list } ] -= { expression-list };
Subtracts and affects, item per item, the right hand side expression-list to an existing
expression list identifier. Parentheses can also be used instead of brackets.
string [ { expression-list } ] *= { expression-list };
Multiplies and affects, item per item, the right hand side expression-list to an ex-
isting expression list identifier. Parentheses can also be used instead of brackets.
string [ { expression-list } ] /= { expression-list };
Divides and affects, item per item, the right hand side expression-list to an existing
expression list identifier. Parentheses can also be used instead of brackets.
string = char-expression ;
Creates a new character expression identifier string with a given char-expression.
string [] = Str( char-expression-list ) ;
Creates a new character expression list identifier string with a given char-
expression-list. Parentheses can also be used instead of brackets.
string [] += Str( char-expression-list ) ;
Appends a character expression list to an existing list. Parentheses can also be used
instead of brackets.
Chapter 4: General tools 31
Merge char-expression ;
Merges a file named char-expression. This command is equivalent to the ‘File-
>Merge’ menu in the GUI. If the path in char-expression is not absolute, char-
expression is appended to the path of the current file. This operation triggers a
synchronization of the CAD model with the internal Gmsh model.
ShapeFromFile( char-expression );
Merges a BREP, STEP or IGES file and returns the tags of the highest-dimensional
entities. Only available with the OpenCASCADE geometry kernel.
Draw; Redraws the scene.
SplitCurrentWindowHorizontal expression ;
Splits the current window horizontally, with the ratio given by expression.
SplitCurrentWindowVertical expression ;
Splits the current window vertically, with the ratio given by expression.
SetCurrentWindow expression ;
Sets the current window by speficying its index (starting at 0) in the list of all
windows. When new windows are created by splits, new windows are appended at
the end of the list.
UnsplitWindow;
Restore a single window.
SetChanged;
Force the mesh and post-processing vertex arrays to be regenerated. Useful e.g. for
creating animations with changing clipping planes, etc.
BoundingBox;
Recomputes the bounding box of the scene (which is normally computed only after
new model entities are added or after files are included or merged). The bounding
box is computed as follows:
1. If there is a mesh (i.e., at least one mesh node), the bounding box is taken as
the box enclosing all the mesh nodes;
2. If there is no mesh but there is a geometry (i.e., at least one geometrical point),
the bounding box is taken as the box enclosing all the geometrical points;
3. If there is no mesh and no geometry, but there are some post-processing views,
the bounding box is taken as the box enclosing all the primitives in the views.
This operation triggers a synchronization of the CAD model with the internal Gmsh
model.
BoundingBox { expression, expression, expression, expression, expression,
expression };
Forces the bounding box of the scene to the given expressions (X min, X max, Y
min, Y max, Z min, Z max). Beware that order of the coordinates is different than
in the BoundingBox commands for model entities: see Section 4.2.1 [Floating point
expressions], page 21.
Delete Model;
Deletes the current model (all model entities and their associated meshes).
Delete Physicals;
Deletes all physical groups.
Delete Variables;
Deletes all the expressions.
Chapter 4: General tools 33
Delete Options;
Deletes the current options and revert to the default values.
Delete string ;
Deletes the expression string.
Print char-expression ;
Prints the graphic window in a file named char-expression, using the current
Print.Format (see Section B.1 [General options list], page 169). If the path in
char-expression is not absolute, char-expression is appended to the path of the cur-
rent file. This operation triggers a synchronization of the CAD model with the
internal Gmsh model.
Sleep expression ;
Suspends the execution of Gmsh during expression seconds.
SystemCall char-expression ;
Executes a (blocking) system call.
NonBlockingSystemCall char-expression ;
Executes a (non-blocking) system call.
OnelabRun ( char-expression <, char-expression > )
Runs a ONELAB client (first argument is the client name, second optional argue-
ment is the command line).
SetName char-expression ;
Changes the name of the current model.
SetFactory(char-expression );
Changes the current geometry kernel (i.e. determines the CAD kernel that is used
for all subsequent geometrical commands). Currently available kernels: "Built-in"
and "OpenCASCADE".
SyncModel;
Forces an immediate transfer from the old geometrical database into the new one
(this transfer normally occurs right after a file is read).
NewModel;
Creates a new current model.
Include char-expression ;
Includes the file named char-expression at the current position in the input file. The
include command should be given on a line of its own. If the path in char-expression
is not absolute, char-expression is appended to the path of the current file.
5 Geometry module
Geometries can be constructed in Gmsh using different underlying CAD kernels. Selecting the
CAD kernel in .geo files is done with the SetFactory command. In the Gmsh API, the kernel
appears explicitly in all the relevant functions from the gmsh/model namespace, with geo or occ
prefixes for the built-in and OpenCASCADE kernel, respectively.
The built-in CAD kernel (SetFactory("Built-in")) provides a simple CAD engine based on a
bottom-up boundary representation approach: you need to first define points (using the Point
command: see below), then curves (using Line, Circle, Spline, . . . , commands or by extruding
points), then surfaces (using for example the Plane Surface or Surface commands, or by
extruding curves), and finally volumes (using the Volume command or by extruding surfaces).
The OpenCASCADE kernel (SetFactory("OpenCASCADE")) allows to build models in the same
bottom-up manner, or by using a constructive solid geometry approach where solids are defined
first. Boolean operations can then be performed to modify them.
These geometrical model entities are also referred to as “elementary entities” in Gmsh, and are
assigned tags (stricly positive global identification numbers) when they are created:
1. each point must possess a unique tag;
2. each curve must possess a unique tag;
3. each surface must possess a unique tag;
4. each volume must possess a unique tag.
Elementary entities can then be manipulated in various ways, for example using the Translate,
Rotate, Scale or Symmetry commands. They can be deleted with the Delete command, pro-
vided that no higher-dimension entity references them. Zero or negative tags are reserved by
the system for special uses: do not use them in your scripts.
Groups of elementary entities can also be defined and are called “physical” groups. These
physical groups cannot be modified by geometry commands: their only purpose is to assemble
elementary entities into larger groups so that they can be referred to later as single entities.
As is the case with elementary entities, each physical point, physical curve, physical surface or
physical volume must be assigned a unique tag. See Chapter 6 [Mesh module], page 45, for more
information about how physical groups affect the way meshes are saved.
5.1.1 Points
Point ( expression ) = { expression, expression, expression <, expression > };
Creates a point. The expression inside the parentheses is the point’s tag; the three
first expressions inside the braces on the right hand side give the three X, Y and Z
coordinates of the point in the three-dimensional Euclidean space; the optional last
expression sets the prescribed mesh element size at that point. See Section 6.3.1
[Specifying mesh element sizes], page 47, for more information about how this value
is used in the meshing process.
36 Gmsh 4.7.1
5.1.2 Curves
Line ( expression ) = { expression, expression };
Creates a straight line segment. The expression inside the parentheses is the line
segment’s tag; the two expressions inside the braces on the right hand side give tags
of the start and end points of the segment.
Bezier ( expression ) = { expression-list };
Creates a Bezier curve. The expression-list contains the tags of the control points.
BSpline ( expression ) = { expression-list };
Creates a cubic BSpline. The expression-list contains the tags of the control points.
Creates a periodic curve if the first and last points are identical.
Spline ( expression ) = { expression-list };
Creates a spline going through the points in expression-list. With the built-in ge-
ometry kernel this constructs a Catmull-Rom spline. With the OpenCASCADE
kernel, this constructs a C2 BSpline. Creates a periodic curve if the first and last
points are identical.
Circle ( expression ) = { expression, expression, expression <, ...> };
Creates a circle arc. The three expressions on the right-hand-side define the start
point, the center and the end point of the arc. With the built-in geometry kernel the
arc should be strictly smaller than Pi. With the OpenCASCADE kernel additional
expressions can be provided to define a full circle (4th expression is the radius) or a
circle arc between two angles (next 2 expressions).
Ellipse ( expression ) = { expression, expression, expression, <, ...> };
Creates an ellipse arc. If four expressions are provided on the right-hand-side they
define the start point, the center point, a point anywhere on the major axis and
the end point. If the first point is a major axis point, the third expression can be
ommitted. With the OpenCASCADE kernel, if between 5 and 7 expressions are
provided, the first three define the coordinates of the center, the next two define the
major (along the x-axis) and minor radii (along the y-axis), and the next two the
start and end angle. Note that OpenCASCADE does not allow creating ellipse arcs
with the major radius smaller than the minor radius.
Compound Spline | BSpline ( expression ) = { expression-list } Using expression ;
Creates a spline or a BSpline from control points sampled on the curves in expression-
list. Using expression specifies the number of intervals on each curve to compute
the sampling points. Compound splines and BSplines are only available with the
built-in geometry kernel.
Curve Loop ( expression ) = { expression-list };
Creates an oriented loop of curves, i.e. a closed wire. The expression inside the
parentheses is the curve loop’s tag; the expression-list on the right hand side should
contain the tags of all the curves that constitute the curve loop. A curve loop must
Chapter 5: Geometry module 37
be a closed loop, and the curves should be ordered and oriented (using negative
tags to specify reverse orientation). If the orientation is correct, but the ordering
is wrong, Gmsh will actually reorder the list internally to create a consistent loop.
Although Gmsh supports it, it is not recommended to specify multiple curve loops
(or subloops) in a single Curve Loop command. (Curve loops are used to create
surfaces: see Section 5.1.3 [Surfaces], page 37.)
Wire ( expression ) = { expression-list };
Creates a path made of curves. Wires are only available with the OpenCASCADE
kernel. They are used to create ThruSections and extrusions along paths.
Physical Curve ( expression | char-expression <, expression > ) <+|->= {
expression-list };
Creates a physical curve. The expression inside the parentheses is the physical
curve’s tag; the expression-list on the right hand side should contain the tags of all
the elementary curves that need to be grouped inside the physical curve. If a char-
expression is given instead instead of expression inside the parentheses, a string
label is associated with the physical tag, which can be either provided explicitly
(after the comma) or not (in which case a unique tag is automatically created). In
some mesh file formats (e.g. MSH2), specifying negative tags in the expression-list
will reverse the orientation of the mesh elements belonging to the corresponding
elementary curves in the saved mesh file.
5.1.3 Surfaces
Plane Surface ( expression ) = { expression-list };
Creates a plane surface. The expression inside the parentheses is the plane surface’s
tag; the expression-list on the right hand side should contain the tags of all the curve
loops defining the surface. The first curve loop defines the exterior boundary of the
surface; all other curve loops define holes in the surface. A curve loop defining a
hole should not have any curves in common with the exterior curve loop (in which
case it is not a hole, and the two surfaces should be defined separately). Likewise,
a curve loop defining a hole should not have any curves in common with another
curve loop defining a hole in the same surface (in which case the two curve loops
should be combined).
Surface ( expression ) = { expression-list } < In Sphere { expression } >;
Creates a surface filling. With the built-in kernel, the first curve loop should be
composed of either three or four curves. With the built-in kernel, the optional In
Sphere argument forces the surface to be a spherical patch (the extra parameter
gives the tag of the center of the sphere).
BSpline Surface ( expression ) = { expression-list };
Creates a BSpline surface filling. Only a single curve loop made of 2, 3 or 4 BSpline
curves can be provided. BSpline Surface is only available with the OpenCAS-
CADE kernel.
Bezier Surface ( expression ) = { expression-list };
Creates a Bezier surface filling. Only a single curve loop made of 2, 3 or 4 Bezier
curves can be provided. Bezier Surface is only available with the OpenCASCADE
kernel.
Disk ( expression ) = { expression-list };
Creates a disk. When four expressions are provided on the right hand side (3
coordinates of the center and the radius), the disk is circular. A fifth expression
defines the radius along Y, leading to an ellipse. Disk is only available with the
OpenCASCADE kernel.
38 Gmsh 4.7.1
5.1.4 Volumes
Volume ( expression ) = { expression-list };
Creates a volume. The expression inside the parentheses is the volume’s tag; the
expression-list on the right hand side should contain the tags of all the surface loops
defining the volume. The first surface loop defines the exterior boundary of the
volume; all other surface loops define holes in the volume. A surface loop defining
a hole should not have any surfaces in common with the exterior surface loop (in
which case it is not a hole, and the two volumes should be defined separately).
Likewise, a surface loop defining a hole should not have any surfaces in common
with another surface loop defining a hole in the same volume (in which case the two
surface loops should be combined).
Sphere ( expression ) = { expression-list };
Creates a sphere, defined by the 3 coordinates of its center and a radius. Additional
expressions define 3 angle limits. Sphere is only available with the OpenCASCADE
kernel.
Box ( expression ) = { expression-list };
Creates a box, defined by the 3 coordinates of a point and the 3 extents. Box is only
available with the OpenCASCADE kernel.
Cylinder ( expression ) = { expression-list };
Creates a cylinder, defined by the 3 coordinates of the center of the first circular
face, the 3 components of the vector defining its axis and its radius. An addi-
tional expression defines the angular opening. Cylinder is only available with the
OpenCASCADE kernel.
Chapter 5: Geometry module 39
5.1.5 Extrusions
Curves, surfaces and volumes can also be created through extrusion of points, curves and sur-
faces, respectively. Here is the syntax of the geometrical extrusion commands (go to Section 6.3.2
[Structured grids], page 63, to see how these commands can be extended in order to also extrude
the mesh):
extrude:
5.1.7 Transformations
Geometrical transformations can be applied to elementary entities, or to copies of elementary en-
tities (using the Duplicata command: see below). The syntax of the transformation commands
is:
transform:
42 Gmsh 4.7.1
with
transform-list :
<Physical> Point | Curve | Surface | Volume
{ expression-list-or-all }; ... |
Duplicata { <Physical> Point | Curve | Surface | Volume
{ expression-list-or-all }; ... } |
transform
5.1.8 Miscellaneous
Here is a list of all other geometry commands currently available:
Coherence;
Removes all duplicate elementary entities (e.g., points having identical
coordinates). Note that with the built-in geometry kernel Gmsh executes the
Coherence command automatically after each geometrical transformation, unless
Geometry.AutoCoherence is set to zero (see Section B.2 [Geometry options list],
page 196). With the OpenCASCADE geoemtry kernel, Coherence is simply a
shortcut for a BooleanFragments operation on all entities.
< Recursive > Delete { <Physical> Point | Curve | Surface | Volume {
expression-list-or-all }; ... }
Deletes all elementary entities whose tags are given in expression-list-or-all. If an
entity is linked to another entity (for example, if a point is used as a control point
of a curve), Delete has no effect (the curve will have to be deleted before the point
can). The Recursive variant deletes the entities as well as all its sub-entities of
lower dimension. This operation triggers a synchronization of the CAD model with
the internal Gmsh model.
Delete Embedded { <Physical> Point | Curve | Surface | Volume {
expression-list-or-all }; ... }
Deletes all the embedded entities in the elementary entities whose tags are given in
expression-list-or-all. This operation triggers a synchronization of the CAD model
with the internal Gmsh model.
SetMaxTag Point | Curve | Surface | Volume ( expression )
Forces the maximum tag for a category of entities to a given value, so that subse-
quently created entities in the same category will not have tags smaller than the
given value.
< Recursive > Hide { <Physical> Point | Curve | Surface | Volume {
expression-list-or-all }; ... }
Hide the entities listed in expression-list-or-all, if General.VisibilityMode is set
to 0 or 1.
Hide { : }
Hide all entities, if General.VisibilityMode is set to 0 or 1.
< Recursive > Show { <Physical> Point | Curve | Surface | Volume {
expression-list-or-all }; ... }
Show the entities listed in expression-list-or-all, if General.VisibilityMode is set
to 0 or 1.
Show { : }
Show all entities, if General.VisibilityMode is set to 0 or 1.
44 Gmsh 4.7.1
6 Mesh module
Gmsh’s mesh module regroups several 1D, 2D and 3D meshing algorithms, all producing grids
conforming in the sense of finite elements (see Section 1.2 [Mesh], page 5):
• The 2D unstructured algorithms generate triangles and/or quadrangles (when recombina-
tion commands or options are used). The 3D unstructured algorithms generate tetrahedra,
or tetrahedra and pyramids (when the boundary mesh contains quadrangles).
• The 2D structured algorithms (transfinite and extrusion) generate triangles by default, but
quadrangles can be obtained by using the Recombine commands (see Section 6.3.2 [Struc-
tured grids], page 63, and Section 6.3.3 [Miscellaneous mesh commands], page 65). The 3D
structured algorithms generate tetrahedra, hexahedra, prisms and pyramids, depending on
the type of the surface meshes they are based on.
All meshes can be subdivided to generate fully quadrangular or fully hexahedral meshes with
the Mesh.SubdivisionAlgorihm option (see Section B.3 [Mesh options list], page 204).
meshes of plane surfaces the “Delaunay” algorithm is the fastest; it usually also handles com-
plex mesh size fields better than the “Frontal-Delaunay”. When the “Delaunay” or “Frontal-
Delaunay” algorithms fail, “MeshAdapt” is automatically triggered. The “Automatic” algorithm
uses “Delaunay” for plane surfaces and “MeshAdapt” for all other surfaces.
Several 3D unstructured algorithms are also available:
• The “Delaunay” algorithm is split into three separate steps. First, an initial mesh of the
union of all the volumes in the model is performed, without inserting points in the volume.
The surface mesh is then recovered using H. Si’s boundary recovery algorithm Tetgen/BR.
Then a three-dimensional version of the 2D Delaunay algorithm described above is applied
to insert points in the volume to respect the mesh size constraints.
• The “Frontal” algorithm uses J. Schoeberl’s Netgen algorithm8 .
• The “HXT” algorithm9 is a new efficient and parallel reimplementaton of the Delaunay
algorithm.
• Other experimental algorithms with specific features are also available. In particular,
“MMG3D”10 allows to generate anisotropic tetrahedralizations.
The “Delaunay” algorithm is currently the most robust and is the only one that supports the
automatic generation of hybrid meshes with pyramids. Embedded model entities and the Field
mechanism to specify element sizes (see Section 6.3.1 [Specifying mesh element sizes], page 47)
are currently only supported by the “Delaunay” and “HXT” algorithms.
If your version of Gmsh is compiled with OpenMP support (see Appendix C [Compiling the
source code], page 245), most of the meshing steps can be performed in parallel:
• 1D and 2D meshing is parallelized using a coarse-grained approach, i.e. curves (resp. sur-
faces) are each meshed sequentially, but several curves (resp. surfaces) can be meshed at
the same time.
• 3D meshing using HXT is parallelized using a fine-grained approach, i.e. the actual meshing
procedure for a single volume is done is parallel.
The number of threads can be controlled with the -nt flag on the command line (see Section 3.3
[Command-line options], page 12), or with the General.NumThreads, Mesh.MaxNumThreads1D,
Mesh.MaxNumThreads2D and Mesh.MaxNumThreads3D options (see Section B.1 [General options
list], page 169 and Section B.3 [Mesh options list], page 204).
line. In some formats (e.g. MSH2), setting Mesh.SaveAll=1 will however discard all physical
group definitions.
4. Finally, using the Gmsh API you can also specify a global mesh size callback in C++, C,
Python or Julia using gmsh/model/mesh/setSizeCallback (see Section D.4 [Namespace
gmsh/model/mesh], page 263).
All the aforementioned methods can be used simultaneously, in which case the smallest ele-
ment size is selected at any given point. In addition, boundary mesh sizes (on curves or sur-
faces) are interpolated inside the enclosed entity (surface or volume, respectively) if the option
Mesh.MeshSizeExtendFromBoundary is set (it is by default).
All element sizes are further constrained in the interval [ Mesh.MeshSizeMin, Mesh.MeshSizeMax
] (which can also be provided on the command line with -clmin and -clmax). The resulting
value is then finally multiplied by Mesh.MeshSizeFactor (-clscale on the command line).
Note that when the element size is fully specified by a background mesh field, it is thus often
desirable to set
Mesh.MeshSizeFromPoints = 0;
Mesh.MeshSizeFromCurvature = 0;
Mesh.MeshSizeExtendFromBoundary = 0;
to prevent over-refinement inside an entity due to small mesh sizes on its boundary.
Here are the mesh commands that are related to the specification of mesh element sizes:
MeshSize { expression-list } = expression ;
Modify the prescribed mesh element size of the points whose tags are listed in
expression-list. The new value is given by expression.
Field[expression ] = string ;
Create a new field (with tag expression), of type string.
Field[expression ].string = char-expression | expression | expression-list ;
Set the option string of the expression-th field.
Background Field = expression ;
Select the expression-th field as the one used to compute element sizes. Only one
background field can be given; if you want to combine several field, use the Min or
Max field (see below).
Here is the list of all available fields with their associated options:
Attractor
Compute the distance to the given points, curves or surfaces. (Curves are replaced by
NumPointsPerCurve equidistant points, to which the distance is actually computed.
In the same way, surfaces are replaced by a point cloud, sampled according to
NumPointsPerCurve and the size of their bounding box). The Attractor field is
deprecated: use the Distance field instead.
Options:
CurvesList
Tags of curves in the geometric model
type: list
default value: {}
FieldX Tag of the field to use as x coordinate
type: integer
default value: -1
FieldY Tag of the field to use as y coordinate
type: integer
default value: -1
Chapter 6: Mesh module 49
CurvesList
Tags of curves in the geometric model
type: list
default value: {}
DistMax Maxmium distance, above this distance from the curves, prescribe the
maximum mesh sizes
type: float
default value: 0.5
DistMin Minimum distance, below this distance from the curves, prescribe the
minimum mesh sizes
type: float
default value: 0.1
NumPointsPerCurve
Number of points used to discretized each curve
type: integer
default value: 20
SizeMaxNormal
Maximum mesh size in the direction normal to the closest curve
type: float
default value: 0.5
SizeMaxTangent
Maximum mesh size in the direction tangeant to the closest curve
type: float
default value: 0.5
50 Gmsh 4.7.1
SizeMinNormal
Minimum mesh size in the direction normal to the closest curve
type: float
default value: 0.05
SizeMinTangent
Minimum mesh size in the direction tangeant to the closest curve
type: float
default value: 0.5
AutomaticMeshSizeField
Compute a mesh size field that is quite automatic Takes into account surface cur-
vatures and closeness of objects
Options:
If Thickness is > 0, the mesh size is interpolated between VIn and VOut in a layer
around the ball of the prescribed thickness.
Options:
Radius Radius
type: float
default value: 0
Thickness
Thickness of a transition layer outside the ball
type: float
default value: 0
Chapter 6: Mesh module 51
AnisoMax Threshold angle for creating a mesh fan in the boundary layer
type: float
default value: 10000000000
CurvesList
Tags of curves in the geometric model for which a boundary layer is
needed
type: list
default value: {}
ExcludedSurfacesList
Tags of surfaces in the geometric model where the boundary layer should
not be contructed
type: list
default value: {}
FanPointsList
Tags of points in the geometric model for which a fan is created
type: list
default value: {}
FanPointsSizesList
Number of elements in the fan for each fan node. If not present default
value mesh.boundaryLayerFanPoints
type: list
default value: {}
IntersectMetrics
Intersect metrics of all surfaces
type: integer
default value: 0
52 Gmsh 4.7.1
PointsList
Tags of points in the geometric model for which a boundary layer ends
type: list
default value: {}
Quads Generate recombined elements in the boundary layer
type: integer
default value: 0
Ratio Size ratio between two successive layers
type: float
default value: 1.1
Size Mesh size normal to the curve
type: float
default value: 0.1
SizeFar Element size far from the curves
type: float
default value: 1
SizesList
Mesh size normal to the curve, per point (overwrites Size when defined)
type: list double
default value: {}
Thickness
Maximal thickness of the boundary layer
type: float
default value: 0.01
Box The value of this field is VIn inside the box, VOut outside the box. The box is
defined by
If Thickness is > 0, the mesh size is interpolated between VIn and VOut in a layer
around the box of the prescribed thickness.
Options:
Thickness
Thickness of a transition layer outside the box
type: float
default value: 0
VIn Value inside the box
type: float
default value: 0
VOut Value outside the box
type: float
default value: 0
XMax Maximum X coordinate of the box
type: float
default value: 0
Chapter 6: Mesh module 53
F = div(norm(grad(Field[InField])))
Options:
Radius Radius
type: float
default value: 0
VIn Value inside the cylinder
type: float
default value: 0
VOut Value outside the cylinder
type: float
default value: 0
XAxis X component of the cylinder axis
type: float
default value: 0
54 Gmsh 4.7.1
CurvesList
Tags of curves in the geometric model
type: list
default value: {}
FieldX Id of the field to use as x coordinate
type: integer
default value: -1
FieldY Id of the field to use as y coordinate
type: integer
default value: -1
FieldZ Id of the field to use as z coordinate
type: integer
default value: -1
NumPointsPerCurve
Number of points used to discretized each curve (and surface, relative
to their bounding box size)
type: integer
default value: 20
PointsList
Tags of points in the geometric model
type: list
default value: {}
SurfacesList
Tags of surfaces in the geometric model
type: list
default value: {}
Chapter 6: Mesh module 55
ExternalProcess
**This Field is experimental**
Call an external process that received coordinates triple (x,y,z) as binary double
precision numbers on stdin and is supposed to write the field value on stdout as a
binary double precision number.
NaN,NaN,NaN is sent as coordinate to indicate the end of the process.
double xyz[3];
setmode(fileno(stdin),O BINARY);
setmode(fileno(stdout),O BINARY);
while(read(fileno(stdin), &xyz, 3*sizeof(double)) == 3*sizeof(double)) {
if (xyz[0] != xyz[0])
break;
double f = f = 0.01 + 0.09 * xyz[1];
write(fileno(stdout), &f, sizeof(double));
}
}
Options:
CommandLine
Command line to launch
type: string
default value: ""
Frustum This field is an extended cylinder with inner (i) and outer (o) radiuseson both
endpoints (1 and 2). Length scale is bilinearly interpolated betweenthese locations
(inner and outer radiuses, endpoints 1 and 2)The field values for a point P are given
by : u = P1P.P1P2/||P1P2|| r = || P1P - u*P1P2 || Ri = (1-u)*R1i + u*R2i
Ro = (1-u)*R1o + u*R2o v = (r-Ri)/(Ro-Ri) lc = (1-v)*( (1-u)*v1i + u*v2i ) + v*(
(1-u)*v1o + u*v2o ) where (u,v) in [0,1]x[0,1]
Options:
FieldsList
Field indices
type: list
default value: {}
Laplacian
Compute finite difference the Laplacian of Field[InField]:
58 Gmsh 4.7.1
F = G(x+d,y,z) + G(x-d,y,z) +
G(x,y+d,z) + G(x,y-d,z) +
G(x,y,z+d) + G(x,y,z-d) - 6 * G(x,y,z),
F = Field[InField](atan(y/x), asin(z/sqrt(x^2+y^2+z^2))
Options:
FromStereo
If = 1, the mesh is in stereographic coordinates: xi = 2Rx/(R+z), eta
= 2Ry/(R+z)
type: integer
default value: 0
InField Tag of the field to evaluate
type: integer
default value: 1
RadiusStereo
Radius of the sphere of the stereograpic coordinates
type: float
default value: 6371000
MathEval Evaluate a mathematical expression. The expression can contain x, y, z for spatial
coordinates, F0, F1, ... for field values, and and mathematical functions.
Options:
FieldsList
Field indices
type: list
default value: {}
MaxEigenHessian
Compute the maximum eigenvalue of the Hessian matrix of Field[InField], with the
gradients evaluated by finite differences:
F = max(eig(grad(grad(Field[InField]))))
Options:
F = (G(x+delta,y,z) + G(x-delta,y,z) +
G(x,y+delta,z) + G(x,y-delta,z) +
G(x,y,z+delta) + G(x,y,z-delta) +
G(x,y,z)) / 7,
where G = Field[InField]
Options:
FieldsList
Field indices
type: list
default value: {}
MinAniso Take the intersection of a list of possibly anisotropic fields.
Options:
FieldsList
Field indices
type: list
default value: {}
Octree Pre compute another field on an octree to speed-up evalution
Options:
F = Field[InField](FX,FY,FZ)
See the MathEval Field help to get a description of valid FX, FY and FZ expressions.
Options:
CropNegativeValues
return LC MAX instead of a negative value (this option is needed for
backward compatibility with the BackgroundMesh option
type: boolean
default value: 1
Chapter 6: Mesh module 61
ViewIndex
Post-processing view index
type: integer
default value: 0
ViewTag Post-processing view tag
type: integer
default value: -1
Restrict Restrict the application of a field to a given list of geometrical points, curves, surfaces
or volumes.
Options:
CurvesList
Curve tags
type: list
default value: {}
InField Input field tag
type: integer
default value: 1
PointsList
Point tags
type: list
default value: {}
SurfacesList
Surface tags
type: list
default value: {}
VolumesList
Volume tags
type: list
default value: {}
Structured
Linearly interpolate between data provided on a 3D rectangular structured grid.
Ox Oy Oz
Dx Dy Dz
nx ny nz
v(0,0,0) v(0,0,1) v(0,0,2) ...
v(0,1,0) v(0,1,1) v(0,1,2) ...
v(0,2,0) v(0,2,1) v(0,2,2) ...
... ... ...
v(1,0,0) ... ...
where O are the coordinates of the first node, D are the distances between nodes in
each direction, n are the numbers of nodes in each direction, and v are the values
on each node.
Options:
62 Gmsh 4.7.1
DistMax Distance from entity after which element size will be SizeMax
type: float
default value: 10
DistMin Distance from entity up to which element size will be SizeMin
type: float
default value: 1
InField Tag of the field to evaluate
type: integer
default value: 0
Sigmoid True to interpolate between SizeMin and LcMax using a sigmoid, false
to interpolate linearly
type: boolean
default value: 0
SizeMax Element size outside DistMax
type: float
default value: 1
SizeMin Element size inside DistMin
type: float
default value: 0.1
StopAtDistMax
True to not impose element size outside DistMax (i.e., F = a very big
value if Field[InField] > DistMax)
Chapter 6: Mesh module 63
type: boolean
default value: 0
as quadrangles, if possible. Lateral surfaces between two QuadTri regions will always
be meshed as quadrangles.
Note that the QuadTri algorithms will handle all potential meshing conflicts along
the lateral surfaces of the extrusion. In other words, QuadTri will not subdivide a
lateral that must remain as quadrangles, nor will it leave a lateral as quadrangles
if it must be divided. The user should therefore feel free to mix different types of
neighboring regions with a QuadTri meshed region; the mesh should work. However,
be aware that the top surface of the QuadTri extrusion will always be meshed as
triangles, unless it is extruded back onto the original source in a toroidal loop (a
case which also works with QuadTri).
QuadTriNoNewVerts and QuadTriAddVerts may be used interchangeably, but
QuadTriAddVerts often gives better element quality.
If the user wishes to interface a structured extrusion to a tetrahedral volume without
modifying the original structured mesh, the user may create dedicated interface
volumes around the structured geometry and apply a QuadTri algorithm to those
volumes only.
Extrude { { expression-list }, { expression-list }, expression } { extrude-list
layers }
Extrudes both the geometry and the mesh using a rotation (see Section 5.1.5 [Extru-
sions], page 39). The layers option is defined as above. With the built-in geometry
kernel the angle should be strictly smaller than Pi. With the OpenCASCADE kernel
the angle should be strictly smaller than 2 Pi.
Extrude { { expression-list }, { expression-list }, { expression-list },
expression } { extrude-list layers }
Extrudes both the geometry and the mesh using a combined translation and rotation
(see Section 5.1.5 [Extrusions], page 39). The layers option is defined as above. With
the built-in geometry kernel the angle should be strictly smaller than Pi. With the
OpenCASCADE kernel the angle should be strictly smaller than 2 Pi.
Extrude { Surface { expression-list }; layers < Using Index[expr ]; > < Using
View[expr ]; > < ScaleLastLayer; > }
Extrudes a boundary layer from the specified surfaces. If no view is specified, the
boundary layer is created using gouraud-shaped (smoothed) normal field. Specifying
a boundary layer index allows to extrude several independent boundary layers (with
independent normal smoothing).
ScaleLastLayer scales the height of the last (top) layer of each normal’s extrusion
by the average length of the edges in all the source elements that contain the source
node (actually, the average of the averages for each element–edges actually touching
the source node are counted twice). This allows the height of the last layer to vary
along with the size of the source elements in order to achieve better element qual-
ity. For example, in a boundary layer extruded with the Layers definition ’Layers{
{1,4,2}, {0.5, 0.6, 1.6} },’ a source node adjacent to elements with an overall average
edge length of 5.0 will extrude to have a last layer height = (1.6-0.6) * 5.0 = 5.0.
Transfinite Curve { expression-list-or-all } = expression < Using Progression |
Bump expression >;
Selects the curves in expression-list to be meshed with the 1D transfinite algorithm.
The expression on the right hand side gives the number of nodes that will be cre-
ated on the curve (this overrides any other mesh element size prescription—see
Section 6.3.1 [Specifying mesh element sizes], page 47). The optional argument
‘Using Progression expression ’ instructs the transfinite algorithm to distribute
Chapter 6: Mesh module 65
6.3.3 Miscellaneous
Here is a list of all other mesh commands currently available:
Mesh expression ;
Generates expression-D mesh. This operation triggers a synchronization of the CAD
model with the internal Gmsh model.
RefineMesh;
Refines the current mesh by splitting all elements. If Mesh.SecondOrderLinear is
set, the new nodes are inserted by linear interpolatinon. Otherwise they are snapped
on the actual geometry. This operation triggers a synchronization of the CAD model
with the internal Gmsh model.
OptimizeMesh char-expression ;
Optimizes the current mesh with the given algorithm (currently "Gmsh" for de-
fault tetrahedral mesh optimizer, "Netgen" for Netgen optimizer, "HighOrder"
for direct high-order mesh optimizer, "HighOrderElastic" for high-order elastic
smoother, "HighOrderFastCurving" for fast curving algorithm, "Laplace2D" for
Laplace smoothing, "Relocate2D" and "Relocate3D" for node relocation).
AdaptMesh { expression-list } { expression-list } { { expression-list < , ... > } };
Performs adaptive mesh generation. Documentation not yet available.
66 Gmsh 4.7.1
7 Solver module
Solvers and other external codes can be driven by Gmsh through the ONELAB interface (see
http://www.onelab.info), which allows to have them share parameters and modeling informa-
tion. To add a new external solver, you need to specify its name (Solver.Name0, Solver.Name1,
etc.) and the path to the executable (Solver.Executable0, Solver.Executable1, etc.). The
list of all the solver options is given in Section B.4 [Solver options list], page 222. Examples on
how to interface solvers are available in the source distribution (in the utils/solvers directory). A
full-featured solver interfaced in this manner is GetDP (https://getdp.info), a general finite
element solver using mixed finite elements.
Using the Gmsh API, you can also directly embed Gmsh in your own solver, and use ONELAB
for interactive parameter definition and modification. See custom gui.py and custom gui.cpp)
for examples.
Chapter 8: Post-processing module 73
8 Post-processing module
Gmsh’s post-processing module can handle multiple scalar, vector or tensor datasets along with
the geometry and the mesh. The datasets can be given in several formats: in human-readable
“parsed” format (these are just part of a standard input script, but are usually put in separate
files with a ‘.pos’ extension), in native MSH files (ASCII or binary files with ‘.msh’ extensions:
see Chapter 9 [File formats], page 105), or in standard third-party formats.
Once loaded into Gmsh, scalar fields can be displayed as iso-curves, iso-surfaces or color maps,
whereas vector fields can be represented either by three-dimensional arrows or by displacement
maps. Tensor fields can be displayed as Von-Mises effective stresses, min/max eigenvalues,
eigenvectors, ellipses or ellipsoids. (To display other (combinations of) components, you can
use the Force scalar or Force vector options, or use Plugin(MathEval): see Section 8.2
[Post-processing plugins], page 77.)
In Gmsh’s jargon, each dataset, along with the visualization options, is called a “post-processing
view”, or simply a “view”. Each view is given a name, and can be manipulated either individually
(each view has its own button in the GUI and can be referred to by its index in a script or in the
API) or globally (see the PostProcessing.Link option in Section B.5 [Post-processing options
list], page 226).
By default, Gmsh treats all post-processing views as three-dimensional plots, i.e., draws the
scalar, vector and tensor primitives (points, curves, triangles, tetrahedra, etc.) in 3D space. But
Gmsh can also represent each post-processing view containing scalar points as two-dimensional
(“X-Y”) plots, either space- or time-oriented:
• in a ‘2D space’ plot, the scalar points are taken in the same order as they are defined in the
post-processing view: the abscissa of the 2D graph is the curvilinear abscissa of the curve
defined by the point series, and only one curve is drawn using the values associated with
the points. If several time steps are available, each time step generates a new curve;
• in a ‘2D time’ plot, one curve is drawn for each scalar point in the view and the abscissa is
the time step.
Although visualization is usually mostly an interactive task, Gmsh exposes all the post-
processing commands and options to the user in its scripting language and through the API
to permit a complete automation of the post-processing process (see e.g., Section A.8 [t8],
page 140, and Section A.9 [t9], page 143).
The two following sections summarize all available post-processing commands and options. Most
options apply to both 2D and 3D plots (colormaps, point/line sizes, interval types, time step
selection, etc.), but some are peculiar to 3D (lightning, element selection, etc.) or 2D plots
(abscissa labels, etc.). Note that 2D plots can be positioned explicitly inside the graphical
window, or be automatically positioned in order to avoid overlaps.
Sample post-processing files in human-readable “parsed” format and in the native MSH file
format are available in the tutorial directory of Gmsh’s distribution (‘.pos’ and ‘.msh’ files).
The “parsed” format is defined in the next section (cf. the View command); the MSH format is
defined in Chapter 9 [File formats], page 105.
Note that Alias creates a logical duplicate of the view without actually duplicating
the data in memory. This is very useful when you want multiple simultaneous
renderings of the same large dataset (usually with different display options), but
you cannot afford to store all copies in memory. If what you really want is multiple
physical copies of the data, just merge the file containing the post-processing view
multiple times.
AliasWithOptions View[expression ];
Creates an alias of the expression-th post-processing view and copies all the options
of the expression-th view to the new aliased view.
CopyOptions View[expression, expression ];
Copy all the options from the first expression-th post-processing view to the second
one.
Combine ElementsByViewName;
Combines all the post-processing views having the same name into new views. The
combination is done “spatially”, i.e., simply by appending the elements at the end
of the new views.
Combine ElementsFromAllViews | Combine Views;
Combines all the post-processing views into a single new view. The combination is
done “spatially”, i.e., simply by appending the elements at the end of the new view.
Combine ElementsFromVisibleViews;
Combines all the visible post-processing views into a single new view. The combi-
nation is done “spatially”, i.e., simply by appending the elements at the end of the
new view.
Combine TimeStepsByViewName | Combine TimeSteps;
Combines the data from all the post-processing views having the same name into
new multi-time-step views. The combination is done “temporally”, i.e., as if the
data in each view corresponds to a different time instant. The combination will fail
if the meshes in all the views are not identical.
Combine TimeStepsFromAllViews;
Combines the data from all the post-processing views into a new multi-time-step
view. The combination is done “temporally”, i.e., as if the data in each view corre-
sponds to a different time instant. The combination will fail if the meshes in all the
views are not identical.
Combine TimeStepsFromVisibleViews;
Combines the data from all the visible post-processing views into a new multi-time-
step view. The combination is done “temporally”, i.e., as if the data in each view
corresponds to a different time instant. The combination will fail if the meshes in
all the views are not identical.
Delete View[expression ];
Deletes (removes) the expression-th post-processing view. Note that post-processing
view indices start at 0.
Delete Empty Views;
Deletes (removes) all the empty post-processing views.
Background Mesh View[expression ];
Applies the expression-th post-processing view as the current background mesh.
Note that post-processing view indices start at 0.
Chapter 8: Post-processing module 75
J is faster to compute but gives information only on element validity while the other
measures also give information on element quality. The IGE measure is related to
the error on the gradient of the finite element solution. It is the scaled Jacobian for
quads and hexes and a new measure for triangles and tetrahedra. The ICN measure
78 Gmsh 4.7.1
is related to the condition number of the stiffness matrix. (See the article "Effi-
cient computation of the minimum of shape quality measures on curvilinear finite
elements" for details.)
Parameters:
- ‘JacobianDeterminant’: compute J?
- ‘HidingThreshold’: hide all elements for which min(mu) is strictly greater than (if
‘ThresholdGreater’ == 1) or less than (if ‘ThresholdGreater’ == 0) the thresh-
old, where mu is ICN if ‘ICNMeasure’ == 1, IGE if ‘IGEMeasure’ == 1 or
min(J)/max(J) if ‘JacobianDeterminant’ == 1.
If ‘ThreeD’ is equal to 1, the plugin inserts the string in model coordinates at the
position (‘X’,‘Y’,‘Z’). If ‘ThreeD’ is equal to 0, the plugin inserts the string in screen
coordinates at the position (‘X’,‘Y’).
Chapter 8: Post-processing module 79
ShrinkFactor
Default value: 0
Plugin(Crack)
Plugin(Crack) creates a crack around the physical group ‘PhysicalGroup’ of dimen-
sion ‘Dimension’ (1 or 2), embedded in a mesh of dimension ‘Dimension’ + 1. The
plugin duplicates the nodes and the elements on the crack and stores them in a
new discrete curve (‘Dimension’ = 1) or surface (‘Dimension’ = 2). The elements
touching the crack on the “negative” side are modified to use the newly generated
nodes.If ‘OpenBoundaryPhysicalGroup’ is given (> 0), its nodes are duplicated and
the crack will be left open on that (part of the) boundary. Otherwise, the lips of
the crack are sealed, i.e., its nodes are not duplicated. For 1D cracks, ‘NormalX’,
‘NormalY’ and ‘NormalZ’ provide the reference normal of the surface in which the
crack is supposed to be embedded. Numeric options:
Dimension
Default value: 1
PhysicalGroup
Default value: 1
OpenBoundaryPhysicalGroup
Default value: 0
NormalX Default value: 0
NormalY Default value: 0
NormalZ Default value: 1
Plugin(Curl)
Plugin(Curl) computes the curl of the field in the view ‘View’.
The number of points along U, V, W is set with the options ‘NumPointsU’, ‘Num-
PointsV’ and ‘NumPointsW’.
If ‘ConnectPoints’ is zero, the plugin creates points; otherwise, the plugin generates
hexahedra, quadrangles, lines or points depending on the values of ‘NumPointsU’,
‘NumPointsV’ and ‘NumPointsW’.
If ‘Boundary’ is zero, the plugin interpolates the view inside the box; otherwise the
plugin interpolates the view at its boundary.
The number of points along U and V is set with the options ‘NumPointsU’ and
‘NumPointsV’.
If ‘ConnectPoints’ is zero, the plugin creates points; otherwise, the plugin generates
quadrangles, lines or points depending on the values of ‘NumPointsU’ and ‘Num-
PointsV’.
Y1 Default value: 0
Z1 Default value: 0
X2 Default value: 0
Y2 Default value: 1
Z2 Default value: 0
NumPointsU
Default value: 20
NumPointsV
Default value: 20
ConnectPoints
Default value: 1
View Default value: -1
Plugin(CutMesh)
Plugin(CutMesh) cuts the mesh of the current GModel with the zero value of the
levelset defined with the view ’View’.Sub-elements are created in the new model
(polygons in 2D and polyhedra in 3D) and border elements are created on the zero-
levelset.
If ‘Split’ is nonzero, the plugin splits the meshalong the edges of the cut elements
in the positive side.
If ‘ConnectPoints’ is set, the plugin creates surface or line elements; otherwise, the
plugin generates points.
NumPointsU
Default value: 180
MinV Default value: 0
MaxV Default value: 6.2832
NumPointsV
Default value: 180
ConnectPoints
Default value: 0
View Default value: -1
Plugin(CutPlane)
Plugin(CutPlane) cuts the view ‘View’ with the plane ‘A’*X + ‘B’*Y + ‘C’*Z + ‘D’
= 0.
If ‘ExtractVolume’ is nonzero, the plugin extracts the elements on one side of the
plane (depending on the sign of ‘ExtractVolume’).
If ‘ExtractVolume’ is nonzero, the plugin extracts the elements inside (if ‘ExtractVol-
ume’ < 0) or outside (if ‘ExtractVolume’ > 0) the sphere.
ExtractVolume
Default value: 0
RecurLevel
Default value: 4
TargetError
Default value: 0
View Default value: -1
Plugin(DiscretizationError)
Plugin(DiscretizationError) computes the error between the mesh and the geometry.
It does so by supersampling the elements and computing the distance between the
supersampled points dans their projection on the geometry. Numeric options:
SuperSamplingNodes
Default value: 10
Plugin(Distance)
Plugin(Distance) computes distances to entities in a mesh.
Plugin(Eigenvalues)
Plugin(Eigenvalues) computes the three real eigenvalues of each tensor in the view
‘View’.
Plugin(FieldFromAmplitudePhase)
Plugin(FieldFromAmplitudePhase) builds a complex field ’u’ from amplitude ’a’
(complex) and phase ’phi’ given in two different ’Views’ u = a * exp(k*phi), with k
the wavenumber.
If ‘PhysicalGroup’ is nonzero, the plugin only creates points for the elements be-
longing to the group. Numeric options:
Order Default value: 0
Dimension
Default value: 2
PhysicalGroup
Default value: 0
Plugin(Gradient)
Plugin(Gradient) computes the gradient of the field in the view ‘View’.
Define physical groups in order to specify the computation domain and the relative
subdomain. Otherwise the whole mesh is the domain and the relative subdomain is
empty.
Plugin(HomologyComputation) creates new views, one for each basis element. The
resulting basis chains of desired dimension together with the mesh are saved to the
given file. String options:
DomainPhysicalGroups
Default value: ""
SubdomainPhysicalGroups
Default value: ""
ReductionImmunePhysicalGroups
Default value: ""
DimensionOfChainsToSave
Default value: "0, 1, 2, 3"
Filename Default value: "homology.msh"
Numeric options:
ComputeHomology
Default value: 1
ComputeCohomology
Default value: 0
HomologyPhysicalGroupsBegin
Default value: -1
CohomologyPhysicalGroupsBegin
Default value: -1
CreatePostProcessingViews
Default value: 1
ReductionOmit
Default value: 1
88 Gmsh 4.7.1
ReductionCombine
Default value: 3
PostProcessSimplify
Default value: 1
ReductionHeuristic
Default value: 1
Plugin(HomologyPostProcessing)
Plugin(HomologyPostProcessing) operates on representative basis chains of homol-
ogy and cohomology spaces. Functionality:
Options:
’PhysicalGroupsToTraceResults’: Trace the resulting (co)chains to the given physi-
cal groups.
’PhysicalGroupsToProjectResults’: Project the resulting (co)chains to the comple-
ment of the given physical groups.
’NameForResultChains’: Post-processing view name prefix for the results.
’ApplyBoundaryOperatorToResults’: Apply boundary operator to the resulting
chains.
String options:
TransformationMatrix
Default value: "1, 0; 0, 1"
PhysicalGroupsOfOperatedChains
Default value: "1, 2"
PhysicalGroupsOfOperatedChains2
Default value: ""
PhysicalGroupsToTraceResults
Default value: ""
PhysicalGroupsToProjectResults
Default value: ""
NameForResultChains
Default value: "c"
Numeric options:
ApplyBoundaryOperatorToResults
Default value: 0
Chapter 8: Post-processing module 89
Plugin(Integrate)
Plugin(Integrate) integrates a scalar field over all the elements of the view ‘View’
(if ‘Dimension’ < 0), or over all elements of the prescribed dimension (if ‘Dimension’
> 0). If the field is a vector field,the circulation/flux of the field over line/surface
elements is calculated.
If ‘OverTime’ = i > -1 , the plugin integrates the scalar view over time instead of over
space, starting at iteration i.If ‘Visible’ = 1, the plugin only integrates overvisible
entities.
If ‘ExtractVolume’ is nonzero, the plugin extracts the isovolume with values greater
(if ‘ExtractVolume’ > 0) or smaller (if ‘ExtractVolume’ < 0) than the isosurface
‘Value’.
If ‘OtherTimeStep’ < 0, the plugin uses, for each time step in ‘View’, the corre-
sponding time step in ‘OtherView’. If ‘OtherView’ < 0, the plugin uses ‘View’ as
the value source.
Plugin(Isosurface) creates as many list-based views as there are time steps in ‘View’.
Numeric options:
Value Default value: 0
ExtractVolume
Default value: 0
RecurLevel
Default value: 4
90 Gmsh 4.7.1
TargetError
Default value: 0
View Default value: -1
OtherTimeStep
Default value: -1
OtherView
Default value: -1
Plugin(Lambda2)
Plugin(Lambda2) computes the eigenvalues Lambda(1,2,3) of the tensor (S ik S kj
+ Om ik Om kj), where S ij = 0.5 (ui,j + uj,i) and Om ij = 0.5 (ui,j - uj,i) are
respectively the symmetric and antisymmetric parts of the velocity gradient tensor.
If ‘View’ contains tensor elements, the plugin directly uses the tensors as the values
of the velocity gradient tensor; if ‘View’ contains vector elements, the plugin uses
them as the velocities from which to derive the velocity gradient tensor.
If only ‘Expression0’ is given (and ‘Expression1’, ..., ‘Expression8’ are all empty),
the plugin creates a scalar view. If ‘Expression0’, ‘Expression1’ and/or ‘Expression2’
are given (and ‘Expression3’, ..., ‘Expression8’ are all empty) the plugin creates a
vector view. Otherwise the plugin creates a tensor view.
Chapter 8: Post-processing module 91
In addition to the usual mathematical functions (Exp, Log, Sqrt, Sin, Cos, Fabs,
etc.) and operators (+, -, *, /, ^), all expressions can contain:
- the symbols v0, v1, v2, ..., vn, which represent the n components in ‘View’;
- the symbols w0, w1, w2, ..., wn, which represent the n components of ‘OtherView’,
at time step ‘OtherTimeStep’;
If ‘TimeStep’ < 0, the plugin extracts data from all the time steps in the view.
Plugin(MathEval) creates one new view.If ‘PhysicalRegion’ < 0, the plugin is run
on all physical regions.
PhysicalRegion
Default value: -1
Plugin(MeshSizeFieldView)
Plugin(MeshSizeFieldView) evaluates the mesh size field ‘MeshSizeField’ on speci-
fied ‘Component‘ (0 for scalar) of the post-processing view ‘View’. Numeric options:
MeshSizeField
Default value: 0
View Default value: -1
Component
Default value: 0
Plugin(MeshSubEntities)
Plugin(MeshSubEntities) creates mesh elements for the entities of dimension ‘Out-
putDimension’ (0 for vertices, 1 for edges, 2 for faces) of the ‘InputPhysicalGroup’
of dimension ‘InputDimension’. The plugin creates new elements belonging to ‘Out-
putPhysicalGroup’. Numeric options:
InputDimension
Default value: 1
InputPhysicalGroup
Default value: 1
OuputDimension
Default value: 0
OuputPhysicalGroup
Default value: 2000
Plugin(MeshVolume)
Plugin(MeshVolume) computes the volume of the mesh.
If ‘View’ < 0, the plugin is run on the current view. If ‘OverTime’ = 1, the plugin
calculates the min/max over space and time. If ‘Argument’ = 1, the plugin calculates
the min/max and the argmin/argmax. If ‘Visible’ = 1, the plugin is only applied to
visible entities.
- the usual mathematical functions (Log, Sqrt, Sin, Cos, Fabs, ...) and operators (+,
-, *, /, ^);
- the symbols Time and TimeStep, to retrieve the current time and time step values;
- the symbols v0, v1, v2, ..., v8, to retrieve each component of the field in ‘View’ at
the ‘TimeStep’-th time step;
- the symbols w0, w1, w2, ..., w8, to retrieve each component of the field in ‘Oth-
erView’ at the ‘OtherTimeStep’-th time step. If ‘OtherView’ and ‘View’ are based
on different spatial grids, or if their data types are different, ‘OtherView’ is inter-
polated onto ‘View’.
If ‘TimeStep’ < 0, the plugin automatically loops over all the time steps in ‘View’
and evaluates the expressions for each one.
Expression6
Default value: ""
Expression7
Default value: ""
Expression8
Default value: ""
Numeric options:
TimeStep Default value: -1
View Default value: -1
OtherTimeStep
Default value: -1
OtherView
Default value: -1
ForceInterpolation
Default value: 0
Plugin(ModulusPhase)
Plugin(ModulusPhase) interprets the time steps ‘realPart’ and ‘imaginaryPart’ in
the view ‘View’ as the real and imaginary parts of a complex field and replaces them
with their corresponding modulus and phase.
Parameters: the wavenumber, the angular discretisation (phi in [0, 2*Pi] and theta
in [0, Pi]) of the far field sphere and the indices of the views containing the complex-
valued E and H fields. If ‘Normalize’ is set, the far field is normalized to 1. If ‘dB’ is
set, the far field is computed in dB. If ‘NegativeTime’ is set, E and H are assumed to
have exp(-iwt) time dependency; otherwise they are assume to have exp(+iwt) time
dependency. If ‘MatlabOutputFile’ is given the raw far field data is also exported
in Matlab format.
If ‘ViewTag’ is positive, force that tag for the created view. The view type is de-
termined by ‘Type’ (NodeData or ElementData). In the case of an ElementData
type, the view can be restricted to a specific physical group with a positive ‘Physi-
calGroup’. String options:
Type Default value: "NodeData"
Numeric options:
NumComp Default value: 1
Value Default value: 0
ViewTag Default value: -1
PhysicalGroup
Default value: -1
Plugin(Particles)
Plugin(Particles) computes the trajectory of particules in the force field given by
the ‘TimeStep’-th time step of a vector view ‘View’.
96 Gmsh 4.7.1
The plugin takes as input a grid defined by the 3 points (‘X0’,‘Y0’,‘Z0’) (origin),
(‘X1’,‘Y1’,‘Z1’) (axis of U) and (‘X2’,‘Y2’,‘Z2’) (axis of V).
The number of particles along U and V that are to be transported is set with the
options ‘NumPointsU’ and ‘NumPointsV’. The equation
is then solved with the initial conditions X(t=0) chosen as the grid, dX/dt(t=0)=0,
and with F interpolated from the vector view.
Time stepping is done using a Newmark scheme with step size ‘DT’ and ‘MaxIter’
maximum number of iterations.
Plugin(Particles) creates one new list-based view containing multi-step vector points.
Numeric options:
X0 Default value: 0
Y0 Default value: 0
Z0 Default value: 0
X1 Default value: 1
Y1 Default value: 0
Z1 Default value: 0
X2 Default value: 0
Y2 Default value: 1
Z2 Default value: 0
NumPointsU
Default value: 10
NumPointsV
Default value: 1
A2 Default value: 1
A1 Default value: 0
A0 Default value: 0
DT Default value: 0.1
MaxIter Default value: 100
TimeStep Default value: 0
View Default value: -1
Plugin(Probe)
Plugin(Probe) gets the value of the view ‘View’ at the point (‘X’,‘Y’,‘Z’).
X Default value: 0
Y Default value: 0
Z Default value: 0
View Default value: -1
Plugin(Remove)
Plugin(Remove) removes the marked items from the list-based view ‘View’.
The plugin creates the topology of the partitioned entities if ‘CreateTopology’ is set.
String options:
MappingX Default value: "t"
MappingY Default value: "t"
MappingZ Default value: "t"
Numeric options:
NumSlicesX
Default value: 4
Chapter 8: Post-processing module 99
NumSlicesY
Default value: 1
NumSlicesZ
Default value: 1
CreateTopology
Default value: 1
Plugin(Skin)
Plugin(Skin) extracts the boundary (skin) of the current mesh (if ‘FromMesh’ = 1),
or from the the view ‘View’ (in which case it creates a new view). If ‘View’ < 0 and
‘FromMesh’ = 0, the plugin is run on the current view.
If ‘Visible’ is set, the plugin only extracts the skin of visible entities. Numeric
options:
Visible Default value: 1
FromMesh Default value: 0
View Default value: -1
Plugin(Smooth)
Plugin(Smooth) averages the values at the nodes of the view ‘View’.
Parameters
- PhysicalVolumes: list of the physical volumes upon which the tree must be built.
- PhysicalSurfaces: list of the physical surfaces upon which the tree must be built.
- PhysicalCurves: list of the physical curves upon which the tree must be built.
- OutputPhysical: physical tag of the generated tree (-1 will select a new tag auto-
matically).
Note - Lists must be comma separated integers and spaces are ignored.
Remark - This plugin does not overwrite a physical group.Therefore, if an existing
physical tag is used in OutputPhysical, the edges of the tree will be /added/ to the
specified group. String options:
PhysicalVolumes
Default value: ""
PhysicalSurfaces
Default value: ""
PhysicalCurves
Default value: ""
Numeric options:
100 Gmsh 4.7.1
OutputPhysical
Default value: -1
Plugin(SphericalRaise)
Plugin(SphericalRaise) transforms the coordinates of the elements in the view
‘View’ using the values associated with the ‘TimeStep’-th time step.
Instead of elevating the nodes along the X, Y and Z axes as with the
View[‘View’].RaiseX, View[‘View’].RaiseY and View[‘View’].RaiseZ options, the
raise is applied along the radius of a sphere centered at (‘Xc’, ‘Yc’, ‘Zc’).
To produce a standard radiation pattern, set ‘Offset’ to minus the radius of the
sphere the original data lives on.
The plugin takes as input a grid defined by the 3 points (‘X0’,‘Y0’,‘Z0’) (origin),
(‘X1’,‘Y1’,‘Z1’) (axis of U) and (‘X2’,‘Y2’,‘Z2’) (axis of V).
The number of points along U and V that are to be transported is set with the
options ‘NumPointsU’ and ‘NumPointsV’. The equation
dX(t)/dt = V(x,y,z)
is then solved with the initial condition X(t=0) chosen as the grid and with V(x,y,z)
interpolated on the vector view.
The time stepping scheme is a RK44 with step size ‘DT’ and ‘MaxIter’ maximum
number of iterations.
If ‘TimeStep’ < 0, the plugin tries to compute streamlines of the unsteady flow.
Plugin(StreamLines) creates one new list-based view. This view contains multi-step
vector points if ‘OtherView’ < 0, or single-step scalar lines if ‘OtherView’ >= 0.
Numeric options:
Chapter 8: Post-processing module 101
X0 Default value: 0
Y0 Default value: 0
Z0 Default value: 0
X1 Default value: 1
Y1 Default value: 0
Z1 Default value: 0
X2 Default value: 0
Y2 Default value: 1
Z2 Default value: 0
NumPointsU
Default value: 10
NumPointsV
Default value: 1
DT Default value: 0.1
MaxIter Default value: 100
TimeStep Default value: 0
View Default value: -1
OtherView
Default value: -1
Plugin(Summation)
Plugin(Summation) sums every time steps of ’Reference View’ and (every) ’Other
View X’and store the result in a new view.
If ’View 0’ < 0 then the current view is selected.
If ’View 1...8’ < 0 then this view is skipped.
Views can have diffrent number of time steps
Warning: the Plugin assume that every views sharethe same mesh and that meshes
do not move between time steps! String options:
Resuling View Name
Default value: "default"
Numeric options:
View 0 Default value: -1
View 1 Default value: -1
View 2 Default value: -1
View 3 Default value: -1
View 4 Default value: -1
View 5 Default value: -1
View 6 Default value: -1
View 7 Default value: -1
102 Gmsh 4.7.1
Plugin(Tetrahedralize)
Plugin(Tetrahedralize) tetrahedralizes the points in the view ‘View’.
String options:
SeedsFile
Default value: "seeds.txt"
Numeric options:
ComputeBestSeeds
Default value: 0
ComputeMicrostructure
Default value: 1
Plugin(Warp)
Plugin(Warp) transforms the elements in the view ‘View’ by adding to their node
coordinates the vector field stored in the ‘TimeStep’-th time step of the view ‘Oth-
erView’, scaled by ‘Factor’.
If ‘OtherView’ < 0, the vector field is taken as the field of surface normals multi-
plied by the ‘TimeStep’ value in ‘View’. (The smoothing of the surface normals is
controlled by the ‘SmoothingAngle’ parameter.)
9 File formats
This chapter describes Gmsh’s native “MSH” file format, used to store meshes and associated
post-processing datasets. The MSH format exists in two flavors: ASCII and binary. The format
has a version number that is independent of Gmsh’s main version number.
(Remember that for small post-processing datasets you can also use human-readable “parsed”
post-processing views, as described in Section 8.1 [Post-processing commands], page 73. Such
“parsed” views do not require an underlying mesh, and can therefore be easier to use in some
cases.)
$Entities
numPoints(size_t) numCurves(size_t)
numSurfaces(size_t) numVolumes(size_t)
pointTag(int) X(double) Y(double) Z(double)
numPhysicalTags(size_t) physicalTag(int) ...
...
curveTag(int) minX(double) minY(double) minZ(double)
maxX(double) maxY(double) maxZ(double)
numPhysicalTags(size_t) physicalTag(int) ...
numBoundingPoints(size_t) pointTag(int) ...
...
surfaceTag(int) minX(double) minY(double) minZ(double)
maxX(double) maxY(double) maxZ(double)
numPhysicalTags(size_t) physicalTag(int) ...
numBoundingCurves(size_t) curveTag(int) ...
...
volumeTag(int) minX(double) minY(double) minZ(double)
maxX(double) maxY(double) maxZ(double)
numPhysicalTags(size_t) physicalTag(int) ...
numBoundngSurfaces(size_t) surfaceTag(int) ...
...
$EndEntities
$PartitionedEntities
numPartitions(size_t)
numGhostEntities(size_t)
ghostEntityTag(int) partition(int)
...
numPoints(size_t) numCurves(size_t)
numSurfaces(size_t) numVolumes(size_t)
pointTag(int) parentDim(int) parentTag(int)
numPartitions(size_t) partitionTag(int) ...
X(double) Y(double) Z(double)
numPhysicalTags(size_t) physicalTag(int) ...
...
curveTag(int) parentDim(int) parentTag(int)
numPartitions(size_t) partitionTag(int) ...
minX(double) minY(double) minZ(double)
maxX(double) maxY(double) maxZ(double)
Chapter 9: File formats 107
$Nodes
numEntityBlocks(size_t) numNodes(size_t)
minNodeTag(size_t) maxNodeTag(size_t)
entityDim(int) entityTag(int) parametric(int; 0 or 1)
numNodesInBlock(size_t)
nodeTag(size_t)
...
x(double) y(double) z(double)
< u(double; if parametric and entityDim >= 1) >
< v(double; if parametric and entityDim >= 2) >
< w(double; if parametric and entityDim == 3) >
...
...
$EndNodes
$Elements
numEntityBlocks(size_t) numElements(size_t)
minElementTag(size_t) maxElementTag(size_t)
entityDim(int) entityTag(int) elementType(int; see below)
numElementsInBlock(size_t)
elementTag(size_t) nodeTag(size_t) ...
...
...
$EndElements
$Periodic
numPeriodicLinks(size_t)
entityDim(int) entityTag(int) entityTagMaster(int)
numAffine(size_t) value(double) ...
numCorrespondingNodes(size_t)
nodeTag(size_t) nodeTagMaster(size_t)
...
...
108 Gmsh 4.7.1
$EndPeriodic
$GhostElements
numGhostElements(size_t)
elementTag(size_t) partitionTag(int)
numGhostPartitions(size_t) ghostPartitionTag(int) ...
...
$EndGhostElements
$Parametrizations
numCurveParam(size_t) numSurfaceParam(size_t)
curveTag(int) numNodes(size_t)
nodeX(double) nodeY(double) nodeZ(double) nodeU(double)
...
...
surfaceTag(int) numNodes(size_t) numTriangles(size_t)
nodeX(double) nodeY(double) nodeZ(double)
nodeU(double) nodeV(double)
curvMaxX(double) curvMaxY(double) curvMaxZ(double)
curvMinX(double) curvMinY(double) curvMinZ(double)
...
nodeIndex1(int) nodeIndex2(int) nodeIndex3(int)
...
...
$EndParametrizations
$NodeData
numStringTags(ASCII int)
stringTag(string) ...
numRealTags(ASCII int)
realTag(ASCII double) ...
numIntegerTags(ASCII int)
integerTag(ASCII int) ...
nodeTag(size_t) value(double) ...
...
$EndNodeData
$ElementData
numStringTags(ASCII int)
stringTag(string) ...
numRealTags(ASCII int)
realTag(ASCII double) ...
numIntegerTags(ASCII int)
integerTag(ASCII int) ...
elementTag(size_t) value(double) ...
...
$EndElementData
$ElementNodeData
numStringTags(ASCII int)
stringTag(string) ...
numRealTags(ASCII int)
Chapter 9: File formats 109
$InterpolationScheme
name(string)
numElementTopologies(ASCII int)
elementTopology
numInterpolationMatrices(ASCII int)
numRows(ASCII int) numColumns(ASCII int) value(ASCII double) ...
$EndInterpolationScheme
In the format description above, elementType is e.g.:
1 2-node line.
2 3-node triangle.
3 4-node quadrangle.
4 4-node tetrahedron.
5 8-node hexahedron.
6 6-node prism.
7 5-node pyramid.
8 3-node second order line (2 nodes associated with the vertices and 1 with the edge).
9 6-node second order triangle (3 nodes associated with the vertices and 3 with the
edges).
10 9-node second order quadrangle (4 nodes associated with the vertices, 4 with the
edges and 1 with the face).
11 10-node second order tetrahedron (4 nodes associated with the vertices and 6 with
the edges).
12 27-node second order hexahedron (8 nodes associated with the vertices, 12 with the
edges, 6 with the faces and 1 with the volume).
13 18-node second order prism (6 nodes associated with the vertices, 9 with the edges
and 3 with the quadrangular faces).
14 14-node second order pyramid (5 nodes associated with the vertices, 8 with the
edges and 1 with the quadrangular face).
15 1-node point.
16 8-node second order quadrangle (4 nodes associated with the vertices and 4 with
the edges).
17 20-node second order hexahedron (8 nodes associated with the vertices and 12 with
the edges).
18 15-node second order prism (6 nodes associated with the vertices and 9 with the
edges).
19 13-node second order pyramid (5 nodes associated with the vertices and 8 with the
edges).
110 Gmsh 4.7.1
20 9-node third order incomplete triangle (3 nodes associated with the vertices, 6 with
the edges)
21 10-node third order triangle (3 nodes associated with the vertices, 6 with the edges,
1 with the face)
22 12-node fourth order incomplete triangle (3 nodes associated with the vertices, 9
with the edges)
23 15-node fourth order triangle (3 nodes associated with the vertices, 9 with the edges,
3 with the face)
24 15-node fifth order incomplete triangle (3 nodes associated with the vertices, 12 with
the edges)
25 21-node fifth order complete triangle (3 nodes associated with the vertices, 12 with
the edges, 6 with the face)
26 4-node third order edge (2 nodes associated with the vertices, 2 internal to the edge)
27 5-node fourth order edge (2 nodes associated with the vertices, 3 internal to the
edge)
28 6-node fifth order edge (2 nodes associated with the vertices, 4 internal to the edge)
29 20-node third order tetrahedron (4 nodes associated with the vertices, 12 with the
edges, 4 with the faces)
30 35-node fourth order tetrahedron (4 nodes associated with the vertices, 18 with the
edges, 12 with the faces, 1 in the volume)
31 56-node fifth order tetrahedron (4 nodes associated with the vertices, 24 with the
edges, 24 with the faces, 4 in the volume)
92 64-node third order hexahedron (8 nodes associated with the vertices, 24 with the
edges, 24 with the faces, 8 in the volume)
93 125-node fourth order hexahedron (8 nodes associated with the vertices, 36 with the
edges, 54 with the faces, 27 in the volume)
...
All the currently supported elements in the format are defined in GmshDefines.h. See Section 9.2
[Node ordering], page 112 for the ordering of the nodes.
The post-processing sections ($NodeData, $ElementData, $ElementNodeData) can contain
numStringTags string tags, numRealTags real value tags and numIntegerTags integer tags.
The default set of tags understood by Gmsh is as follows:
stringTag
The first is interpreted as the name of the post-processing view and the second as
the name of the interpolation scheme, as provided in the $InterpolationScheme
section.
realTag The first is interpreted as a time value associated with the dataset.
integerTag
The first is interpreted as a time step index (starting at 0), the second as the number
of field components of the data in the view (1, 3 or 9), the third as the number of
entities (nodes or elements) in the view, and the fourth as the partition index for
the view data (0 for no partition).
In the $InterpolationScheme section:
Chapter 9: File formats 111
numElementTopologies
is the number of element topologies for which interpolation matrices are provided.
elementTopology
is the id tag of a given element topology: 1 for points, 2 for lines, 3 for triangles, 4
for quadrangles, 5 for tetrahedra, 6 for pyramids, 7 for prisms, 8 for hexahedra, 9
for polygons and 10 for polyhedra.
numInterpolationMatrices
is the number of interpolation matrices provided for the given element topology.
Currently you should provide 2 matrices, i.e., the matrices that specify how to in-
terpolate the data (they have the same meaning as in Section 8.1 [Post-processing
commands], page 73). The matrices are specified by 2 integers (numRows and
numColumns) followed by the values, by row.
Here is a small example of a minimal ASCII MSH4.1 file, with a mesh consisting of two quad-
rangles and an associated nodal scalar dataset (the comments are not part of the actual file):
$MeshFormat
4.1 0 8 MSH4.1, ASCII
$EndMeshFormat
$Nodes
1 6 1 6 1 entity bloc, 6 nodes total, min/max node tags: 1 and 6
2 1 0 6 2D entity (surface) 1, no parametric coordinates, 6 nodes
1 node tag #1
2 node tag #2
3 etc.
4
5
6
0. 0. 0. node #1 coordinates (0., 0., 0.)
1. 0. 0. node #2 coordinates (1., 0., 0.)
1. 1. 0. etc.
0. 1. 0.
2. 0. 0.
2. 1. 0.
$EndNodes
$Elements
1 2 1 2 1 entity bloc, 2 elements total, min/max element tags: 1 and 2
2 1 3 2 2D entity (surface) 1, element type 3 (4-node quad), 2 elements
1 1 2 3 4 quad tag #1, nodes 1 2 3 4
2 2 5 6 3 quad tag #2, nodes 2 5 6 3
$EndElements
$NodeData
1 1 string tag:
"A scalar view" the name of the view ("A scalar view")
1 1 real tag:
0.0 the time value (0.0)
3 3 integer tags:
0 the time step (0; time steps always start at 0)
1 1-component (scalar) field
6 6 associated nodal values
1 0.0 value associated with node #1 (0.0)
2 0.1 value associated with node #2 (0.1)
3 0.2 etc.
4 0.0
5 0.2
6 0.4
$EndNodeData
The 4.1 revision of the format includes the following modifications with respect to the initial 4.0
version:
112 Gmsh 4.7.1
• All the unsigned long entries have been changed to size_t. All the entries designating
counts which were previously encoded as int have also been changed to size_t. (This only
impacts binary files.)
• The $Entities section is now optional.
• Integer and floating point data in the $Nodes section is not mixed anymore: all the tags
are given first, followed by all the coordinates.
• The bounding box for point entities has been replaced simply by the 3 coordinates of the
point (instead of the six bounding box values).
• The entityDim and entityTag values have been switched in the $Nodes and $Elements
sections (for consistency with the ordering used elsewhere in the file and in the Appendix D
[Gmsh API], page 249).
• The minimum and the maximum tag of nodes (resp. elements) have been added in the
header of the $Nodes (resp. $Elements) section, to facilitate the detection of sparse or
dense numberings when reading the file.
• The $Periodic section has been changed to always provide the number of values in the
affine transform (which can be zero, if the transform is not provided).
The following changes are foreseen in a future revision of the MSH format:
• The $GhostElements, $NodeData, $ElementData and $ElementNodeData will be reworked
for greater IO efficiency, with separation of entries by type and a block structure with
predictable sizes.
v
^
|
|
0-----+-----1 --> u 0----2----1 0---2---3---1
v
^ 2
| | \
2 2 2 9 8
|‘\ |‘\ | \ | \
| ‘\ | ‘\ 7 6 10 (14) 7
| ‘\ 5 ‘4 | \ | \
| ‘\ | ‘\ 8 (9) 5 11 (12) (13) 6
| ‘\ | ‘\ | \ | \
0----------1 --> u 0-----3----1 0---3---4---1 0---3---4---5---1
Chapter 9: File formats 113
v
^
|
3-----------2 3-----6-----2 3-----6-----2
| | | | | | |
| | | | | | |
| +---- | --> u 7 5 7 8 5
| | | | | |
| | | | | |
0-----------1 0-----4-----1 0-----4-----1
Tetrahedron: Tetrahedron10:
v
.
,/
/
2 2
,/|‘\ ,/|‘\
,/ | ‘\ ,/ | ‘\
,/ ’. ‘\ ,6 ’. ‘5
,/ | ‘\ ,/ 8 ‘\
,/ | ‘\ ,/ | ‘\
0-----------’.--------1 --> u 0--------4--’.--------1
‘\. | ,/ ‘\. | ,/
‘\. | ,/ ‘\. | ,9
‘\. ’. ,/ ‘7. ’. ,/
‘\. |/ ‘\. |/
‘3 ‘3
‘\.
‘ w
v
3----------2 3----13----2 3----13----2
|\ ^ |\ |\ |\ |\ |\
| \ | | \ | 15 | 14 |15 24 | 14
| \ | | \ 9 \ 11 \ 9 \ 20 11 \
| 7------+---6 | 7----19+---6 | 7----19+---6
| | +-- |-- | -> u | | | | |22 | 26 | 23|
0---+---\--1 | 0---+-8----1 | 0---+-8----1 |
\ | \ \ | \ 17 \ 18 \ 17 25 \ 18
\ | \ \ | 10 | 12| 10 | 21 12|
\| w \| \| \| \| \|
4----------5 4----16----5 4----16----5
114 Gmsh 4.7.1
w
^
|
3 3 3
,/|‘\ ,/|‘\ ,/|‘\
,/ | ‘\ 12 | 13 12 | 13
,/ | ‘\ ,/ | ‘\ ,/ | ‘\
4------+------5 4------14-----5 4------14-----5
| | | | 8 | | 8 |
| ,/|‘\ | | | | | ,/|‘\ |
| ,/ | ‘\ | | | | | 15 | 16 |
|,/ | ‘\| | | | |,/ | ‘\|
,| | |\ 10 | 11 10-----17-----11
,/ | 0 | ‘\ | 0 | | 0 |
u | ,/ ‘\ | v | ,/ ‘\ | | ,/ ‘\ |
| ,/ ‘\ | | ,6 ‘7 | | ,6 ‘7 |
|,/ ‘\| |,/ ‘\| |,/ ‘\|
1-------------2 1------9------2 1------9------2
4 4 4
,/|\ ,/|\ ,/|\
,/ .’|\ ,/ .’|\ ,/ .’|\
,/ | | \ ,/ | | \ ,/ | | \
,/ .’ | ‘. ,/ .’ | ‘. ,/ .’ | ‘.
,/ | ’. \ ,7 | 12 \ ,7 | 12 \
,/ .’ w | \ ,/ .’ | \ ,/ .’ | \
,/ | ^ | \ ,/ 9 | 11 ,/ 9 | 11
0----------.’--|-3 ‘. 0--------6-.’----3 ‘. 0--------6-.’----3 ‘.
‘\ | | ‘\ \ ‘\ | ‘\ \ ‘\ | ‘\ \
‘\ .’ +----‘\ - \ -> v ‘5 .’ 10 \ ‘5 .’ 13 10 \
‘\ | ‘\ ‘\ \ ‘\ | ‘\ \ ‘\ | ‘\ \
‘\.’ ‘\ ‘\‘ ‘\.’ ‘\‘ ‘\.’ ‘\‘
1----------------2 1--------8-------2 1--------8-------2
‘\
u
$MeshFormat
version-number file-type data-size
$EndMeshFormat
$PhysicalNames
number-of-names
physical-dimension physical-tag "physical-name "
...
$EndPhysicalNames
$Nodes
number-of-nodes
node-number x-coord y-coord z-coord
...
$EndNodes
$Elements
number-of-elements
elm-number elm-type number-of-tags < tag > ... node-number-list
...
$EndElements
$Periodic
number-of-periodic-entities
dimension entity-tag master-entity-tag
number-of-nodes
node-number master-node-number
...
$EndPeriodic
$NodeData
number-of-string-tags
< "string-tag " >
...
number-of-real-tags
< real-tag >
...
number-of-integer-tags
< integer-tag >
...
node-number value ...
...
$EndNodeData
$ElementData
number-of-string-tags
< "string-tag " >
...
number-of-real-tags
< real-tag >
...
number-of-integer-tags
< integer-tag >
...
116 Gmsh 4.7.1
number-of-tags
gives the number of integer tags that follow for the n-th element. By default, the
first tag is the tag of the physical entity to which the element belongs; the second is
the tag of the elementary model entity to which the element belongs; the third is the
number of mesh partitions to which the element belongs, followed by the partition
ids (negative partition ids indicate ghost cells). A zero tag is equivalent to no tag.
Gmsh and most codes using the MSH 2 format require at least the first two tags
(physical and elementary tags).
node-number-list
is the list of the node numbers of the n-th element. The ordering of the nodes is
given in Section 9.2 [Node ordering], page 112.
number-of-string-tags
gives the number of string tags that follow. By default the first string-tag
is interpreted as the name of the post-processing view and the second as the
name of the interpolation scheme. The interpolation scheme is provided in the
$InterpolationScheme section (see below).
number-of-real-tags
gives the number of real number tags that follow. By default the first real-tag is
interpreted as a time value associated with the dataset.
number-of-integer-tags
gives the number of integer tags that follow. By default the first integer-tag is
interpreted as a time step index (starting at 0), the second as the number of field
components of the data in the view (1, 3 or 9), the third as the number of entities
(nodes or elements) in the view, and the fourth as the partition index for the view
data (0 for no partition).
number-of-nodes-per-elements
gives the number of node values for an element in an element-based view.
value is a real number giving the value associated with a node or an element. For NodeData
(respectively ElementData) views, there are ncomp values per node (resp. per
element), where ncomp is the number of field components. For ElementNodeData
views, there are ncomp times number-of-nodes-per-elements values per element.
number-of-element-topologies
is the number of element topologies for which interpolation matrices are provided
elm-topology
is the id tag of a given element topology: 1 for points, 2 for lines, 3 for triangles, 4
for quadrangles, 5 for tetrahedra, 6 for pyramids, 7 for prisms, 8 for hexahedra, 9
for polygons and 10 for polyhedra.
number-of-interpolation-matrices
is the number of interpolation matrices provided for the element topology elm-
topology. Currently you should provide 2 matrices, i.e., the matrices that specify
how to interpolate the data (they have the same meaning as in Section 8.1 [Post-
processing commands], page 73). The matrices are specified by 2 integers (num-rows
and num-columns) followed by the values.
Below is a small example (a mesh consisting of two quadrangles with an associated nodal scalar
dataset; the comments are not part of the actual file!):
$MeshFormat
2.2 0 8
$EndMeshFormat
118 Gmsh 4.7.1
$Nodes
6 six mesh nodes:
1 0.0 0.0 0.0 node #1: coordinates (0.0, 0.0, 0.0)
2 1.0 0.0 0.0 node #2: coordinates (1.0, 0.0, 0.0)
3 1.0 1.0 0.0 etc.
4 0.0 1.0 0.0
5 2.0 0.0 0.0
6 2.0 1.0 0.0
$EndNodes
$Elements
2 two elements:
1 3 2 99 2 1 2 3 4 quad #1: type 3, physical 99, elementary 2, nodes 1 2 3 4
2 3 2 99 2 2 5 6 3 quad #2: type 3, physical 99, elementary 2, nodes 2 5 6 3
$EndElements
$NodeData
1 one string tag:
"A scalar view" the name of the view ("A scalar view")
1 one real tag:
0.0 the time value (0.0)
3 three integer tags:
0 the time step (0; time steps always start at 0)
1 1-component (scalar) field
6 six associated nodal values
1 0.0 value associated with node #1 (0.0)
2 0.1 value associated with node #2 (0.1)
3 0.2 etc.
4 0.0
5 0.2
6 0.4
$EndNodeData
The binary file format is similar to the ASCII format described above:
$MeshFormat
version-number file-type data-size
one-binary
$EndMeshFormat
$Nodes
number-of-nodes
nodes-binary
$EndNodes
$Elements
number-of-elements
element-header-binary
elements-binary
element-header-binary
elements-binary
...
$EndElements
version-number
is a real number equal to 2.2.
Chapter 9: File formats 119
file-type
is an integer equal to 1.
data-size
has the same meaning as in the ASCII file format. Currently only data-size =
sizeof(double) is supported.
one-binary
is an integer of value 1 written in binary form. This integer is used for detecting if
the computer on which the binary file was written and the computer on which the
file is read are of the same type (little or big endian).
Here is a pseudo C code to write one-binary:
int one = 1;
fwrite(&one, sizeof(int), 1, file);
number-of-nodes
has the same meaning as in the ASCII file format.
nodes-binary
is the list of nodes in binary form, i.e., a array of number-of-nodes * (4 + 3 * data-
size) bytes. For each node, the first 4 bytes contain the node number and the next
(3 * data-size) bytes contain the three floating point coordinates.
Here is a pseudo C code to write nodes-binary:
for(i = 0; i < number_of_nodes; i++){
fwrite(&num_i, sizeof(int), 1, file);
double xyz[3] = {node_i_x, node_i_y, node_i_z};
fwrite(xyz, sizeof(double), 3, file);
}
number-of-elements
has the same meaning as in the ASCII file format.
element-header-binary
is a list of 3 integers in binary form, i.e., an array of (3 * 4) bytes: the first four
bytes contain the type of the elements that follow (same as elm-type in the ASCII
format), the next four contain the number of elements that follow, and the last
four contain the number of tags per element (same as number-of-tags in the ASCII
format).
Here is a pseudo C code to write element-header-binary:
int header[3] = {elm_type, num_elm_follow, num_tags};
fwrite(header, sizeof(int), 3, file);
elements-binary
is a list of elements in binary form, i.e., an array of “number of elements that follow”
* (4 + number-of-tags * 4 + #node-number-list * 4) bytes. For each element, the
first four bytes contain the element number, the next (number-of-tags * 4) contain
the tags, and the last (#node-number-list * 4) contain the node indices.
Here is a pseudo C code to write elements-binary for triangles with the 2 standard
tags (the physical and elementary regions):
for(i = 0; i < number_of_triangles; i++){
int data[6] = {num_i, physical, elementary,
node_i_1, node_i_2, node_i_3};
fwrite(data, sizeof(int), 6, file);
}
120 Gmsh 4.7.1
nb-scalar-points
nb-vector-points
... are integers giving the number of scalar points, vector points, . . . , in the view.
nb-text2d
nb-text3d
are integers giving the number of 2D and 3D text strings in the view.
nb-text2d-chars
nb-text3d-chars
are integers giving the total number of characters in the 2D and 3D strings.
time-step-values
is a list of nb-time-steps double precision numbers giving the value of the time (or
any other variable) for which an evolution was saved.
scalar-point-value
vector-point-value
... are lists of double precision numbers giving the node coordinates and the values
associated with the nodes of the nb-scalar-points scalar points, nb-vector-points
vector points, . . . , for each of the time-step-values.
For example, vector-triangle-value is defined as:
coord1-node1 coord1-node2 coord1-node3
coord2-node1 coord2-node2 coord2-node3
coord3-node1 coord3-node2 coord3-node3
comp1-node1-time1 comp2-node1-time1 comp3-node1-time1
comp1-node2-time1 comp2-node2-time1 comp3-node2-time1
comp1-node3-time1 comp2-node3-time1 comp3-node3-time1
comp1-node1-time2 comp2-node1-time2 comp3-node1-time2
comp1-node2-time2 comp2-node2-time2 comp3-node2-time2
comp1-node3-time2 comp2-node3-time2 comp3-node3-time2
...
The ordering of the nodes is given in Section 9.2 [Node ordering], page 112.
text2d is a list of 4 double precision numbers:
coord1 coord2 style index
where coord1 and coord2 give the X-Y position of the 2D string in screen coordinates
(measured from the top-left corner of the window) and where index gives the start-
ing index of the string in text2d-chars. If coord1 (respectively coord2) is negative,
the position is measured from the right (respectively bottom) edge of the window. If
coord1 (respectively coord2) is larger than 99999, the string is centered horizontally
(respectively vertically). If style is equal to zero, the text is aligned bottom-left and
displayed using the default font and size. Otherwise, style is converted into an inte-
ger whose eight lower bits give the font size, whose eight next bits select the font (the
index corresponds to the position in the font menu in the GUI), and whose eight next
bits define the text alignment (0=bottom-left, 1=bottom-center, 2=bottom-right,
3=top-left, 4=top-center, 5=top-right, 6=center-left, 7=center-center, 8=center-
right).
text2d-chars
is a list of nb-text2d-chars characters. Substrings are separated with the null ‘\0’
character.
text3d is a list of 5 double precision numbers
124 Gmsh 4.7.1
fprintf(file, "$PostFormat\n");
fprintf(file, "%g %d %d\n", 1.4, 1, sizeof(double));
fprintf(file, "$EndPostFormat\n");
fprintf(file, "$View\n");
fprintf(file, "%s %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d\n",
view-name, nb-time-steps,
nb-scalar-points, nb-vector-points, nb-tensor-points,
nb-scalar-lines, nb-vector-lines, nb-tensor-lines,
nb-scalar-triangles, nb-vector-triangles, nb-tensor-triangles,
nb-scalar-quadrangles, nb-vector-quadrangles, nb-tensor-quadrangles,
nb-scalar-tetrahedra, nb-vector-tetrahedra, nb-tensor-tetrahedra,
nb-scalar-hexahedra, nb-vector-hexahedra, nb-tensor-hexahedra,
nb-scalar-prisms, nb-vector-prisms, nb-tensor-prisms,
nb-scalar-pyramids, nb-vector-pyramids, nb-tensor-pyramids,
nb-scalar-lines2, nb-vector-lines2, nb-tensor-lines2,
nb-scalar-triangles2, nb-vector-triangles2, nb-tensor-triangles2,
nb-scalar-quadrangles2, nb-vector-quadrangles2,
nb-tensor-quadrangles2,
nb-scalar-tetrahedra2, nb-vector-tetrahedra2, nb-tensor-tetrahedra2,
nb-scalar-hexahedra2, nb-vector-hexahedra2, nb-tensor-hexahedra2,
nb-scalar-prisms2, nb-vector-prisms2, nb-tensor-prisms2,
nb-scalar-pyramids2, nb-vector-pyramids2, nb-tensor-pyramids2,
nb-text2d, nb-text2d-chars, nb-text3d, nb-text3d-chars);
fwrite(&one, sizeof(int), 1, file);
fwrite(time-step-values, sizeof(double), nb-time-steps, file);
Chapter 9: File formats 125
Appendix A Tutorial
The following tutorials introduce new features gradually, starting with Section A.1 [t1], page 127.
The corresponding files are available in the tutorial directory of the Gmsh distribution. The files
starting with t introduce features available both in .geo scripts and through the Appendix D
[Gmsh API], page 249. The files starting with x introduce features that are only available via
the API.
To learn how to run Gmsh on your computer, see Chapter 3 [Running Gmsh on
your system], page 11. Screencasts that show how to use the GUI are available on
https://gmsh.info/screencasts/. To learn how to run the C++, C, Python and Julia API
examples, see the respective subdirectories in tutorial.
lc = 1e-2;
// We can then define some additional points. All points should have different
// tags:
// Curves are Gmsh’s second type of elementary entities, and, amongst curves,
// straight lines are the simplest. A straight line is identified by a tag and
// is defined by a list of two point tags. In the commands below, for example,
// the line 1 starts at point 1 and ends at point 2.
//
// Note that curve tags are separate from point tags - hence we can reuse tag
// ‘1’ for our first curve. And as a general rule, elementary entity tags in
// Gmsh have to be unique per geometrical dimension.
// We can then define the surface as a list of curve loops (only one here,
// representing the external contour, since there are no holes--see ‘t4.geo’ for
// an example of a surface with a hole):
// At this level, Gmsh knows everything to display the rectangular surface 1 and
// to mesh it. An optional step is needed if we want to group elementary
// geometrical entities into more meaningful groups, e.g. to define some
// mathematical ("domain", "boundary"), functional ("left wing", "fuselage") or
// material ("steel", "carbon") properties.
//
// Such groups are called "Physical Groups" in Gmsh. By default, if physical
// groups are defined, Gmsh will export in output files only mesh elements that
// belong to at least one physical group. (To force Gmsh to save all elements,
// whether they belong to physical groups or not, set ‘Mesh.SaveAll=1;’, or
// specify ‘-save_all’ on the command line.) Physical groups are also identified
// by tags, i.e. strictly positive integers, that should be unique per dimension
// (0D, 1D, 2D or 3D). Physical groups can also be given names.
//
// Here we define a physical curve that groups the left, bottom and right curves
// in a single group (with prescribed tag 5); and a physical surface with name
// "My surface" (with an automatic tag) containing the geometrical surface 1:
// By default, Gmsh saves meshes in the latest version of the Gmsh mesh file
// format (the ‘MSH’ format). You can save meshes in other mesh formats by
// specifying a filename with a different extension in the GUI, on the command
// line or in scripts. For example
//
// Save "t1.unv";
//
// will save the mesh in the UNV format. You can also save the mesh in older
// versions of the MSH format:
//
Appendix A: Tutorial 129
// - In the GUI: open ‘File->Export’, enter your ‘filename.msh’ and then pick
// the version in the dropdown menu.
// - On the command line: use the ‘-format’ option (e.g. ‘gmsh file.geo -format
// msh2 -2’).
// - In a ‘.geo’ script: add ‘Mesh.MshFileVersion = x.y;’ for any version
// number ‘x.y’.
// - As an alternative method, you can also not specify the format explicitly,
// and just choose a filename with the ‘.msh2’ or ‘.msh4’ extension.
// Note that starting with Gmsh 3.0, models can be built using other geometry
// kernels than the default built-in kernel. By specifying
//
// SetFactory("OpenCASCADE");
//
// any subsequent command in the ‘.geo’ file would be handled by the OpenCASCADE
// geometry kernel instead of the built-in kernel. Different geometry kernels
// have different features. With OpenCASCADE, instead of defining the surface by
// successively defining 4 points, 4 curves and 1 curve loop, one can define the
// rectangular surface directly with
//
// Rectangle(2) = {.2, 0, 0, .1, .3};
//
// The underlying curves and points could be accessed with the ‘Boundary’ or
// ‘CombinedBoundary’ operators.
//
// See e.g. ‘t16.geo’, ‘t18.geo’, ‘t19.geo’ or ‘t20.geo’ for complete examples
// based on OpenCASCADE, and ‘demos/boolean’ for more.
Include "t1.geo";
// We can then add new points and curves in the same way as we did in ‘t1.geo’:
// And it can be further rotated by -Pi/4 around (0, 0.3, 0) (with the rotation
// along the z axis) with:
// Note that there are no units in Gmsh: coordinates are just numbers - it’s up
// to the user to associate a meaning to them.
// This command created a new point with an automatically assigned tag. This tag
// can be obtained using the graphical user interface by hovering the mouse over
// the point: in this case, the new point has tag ‘6’.
// my_new_surfs[] (note the square brackets, and the ‘;’ at the end of the
// command) denotes a list, which contains the tags of the two new surfaces
// (check ‘Tools->Message console’ to see the message):
// In Gmsh lists use square brackets for their definition (mylist[] = {1, 2,
// 3};) as well as to access their elements (myotherlist[] = {mylist[0],
// mylist[2]}; mythirdlist[] = myotherlist[];), with list indexing starting at
// 0. To get the size of a list, use the hash (pound): len = #mylist[].
//
// Note that parentheses can also be used instead of square brackets, so that we
// could also write ‘myfourthlist() = {mylist(0), mylist(1)};’.
// Volumes are the fourth type of elementary entities in Gmsh. In the same way
// one defines curve loops to build surfaces, one has to define surface loops
// (i.e. ‘shells’) to build volumes. The following volume does not have holes
// and thus consists of a single surface loop:
Point(100) = {0., 0.3, 0.12, lc}; Point(101) = {0.1, 0.3, 0.12, lc};
Point(102) = {0.1, 0.35, 0.12, lc};
// When a volume can be extruded from a surface, it is usually easier to use the
// ‘Extrude’ command directly instead of creating all the points, curves and
// surfaces by hand. For example, the following command extrudes the surface 11
// along the z axis and automatically creates a new volume (as well as all the
// needed points, curves and surfaces):
Appendix A: Tutorial 131
// The following command permits to manually assign a mesh size to some of the
// new points:
// We finally group volumes 129 and 130 in a single physical group with tag ‘1’
// and name "The volume":
Include "t1.geo";
h = 0.1;
Extrude {0,0,h} {
Surface{1}; Layers{ {8,2}, {0.5,1} };
132 Gmsh 4.7.1
// Using the built-in geometry kernel, only rotations with angles < Pi are
// supported. To do a full turn, you will thus need to apply at least 3
// rotations. The OpenCASCADE geometry kernel does not have this limitation.
// We can then define a new physical volume (with tag 101) to group all the
// elementary volumes:
// Let us now change some options... Since all interactive options are
// accessible in Gmsh’s scripting language, we can for example make point tags
// visible or redefine some colors directly in the input file:
Geometry.PointNumbers = 1;
Geometry.Color.Points = Orange;
General.Color.Text = White;
Mesh.Color.Points = {255, 0, 0};
Geometry.Color.Surfaces = Geometry.Color.Points;
// You can use the ‘Help->Current Options and Workspace’ menu to see the current
// values of all options. To save all the options in a file, use
// ‘File->Export->Gmsh Options’. To associate the current options with the
// current file use ‘File->Save Model Options’. To save the current options for
// all future Gmsh sessions use ‘File->Save Options As Default’.
cm = 1e-02;
e1 = 4.5 * cm; e2 = 6 * cm / 2; e3 = 5 * cm / 2;
h1 = 5 * cm; h2 = 10 * cm; h3 = 5 * cm; h4 = 2 * cm; h5 = 4.5 * cm;
R1 = 1 * cm; R2 = 1.5 * cm; r = 1 * cm;
Lc1 = 0.01;
Lc2 = 0.003;
// We can use all the usual mathematical functions (note the capitalized first
// letters), plus some useful functions like Hypot(a, b) := Sqrt(a^2 + b^2):
// Then we define some points and some lines using these variables:
Line(1) = {1 , 17};
Line(2) = {17, 16};
134 Gmsh 4.7.1
// Gmsh provides other curve primitives than straight lines: splines, B-splines,
// circle arcs, ellipse arcs, etc. Here we define a new circle arc, starting at
// point 14 and ending at point 16, with the circle’s center being the point 15:
Circle(3) = {14,15,16};
// Note that, in Gmsh, circle arcs should always be smaller than Pi. The
// OpenCASCADE geometry kernel does not have this limitation.
// We can then define additional lines and circles, as well as a new surface:
// But we still need to define the exterior surface. Since this surface has a
// hole, its definition now requires two curves loops:
View "comments" {
// Add a text string in window coordinates, 10 pixels from the left and 10
// pixels from the bottom, using the ‘StrCat’ function to concatenate strings:
T2(10, -10, 0){ StrCat("Created on ", Today, " with Gmsh") };
// Add a text string in model coordinates centered at (X,Y,Z) = (0, 0.11, 0):
T3(0, 0.11, 0, TextAttributes("Align", "Center", "Font", "Helvetica")){ "Hole" };
// The image can also be drawn in "billboard" mode, i.e. always parallel to
// the camera, by using the ‘#’ symbol:
T3(0, 0.12, 0, TextAttributes("Align", "Center")){ "file://[email protected]#" };
lcar1 = .1;
lcar2 = .0005;
lcar3 = .055;
// If we wanted to change these mesh sizes globally (without changing the above
// definitions), we could give a global scaling factor for all mesh sizes on the
// command line with the ‘-clscale’ option (or with ‘Mesh.MeshSizeFactor’ in an
// option file). For example, with:
//
// > gmsh t5.geo -clscale 1
//
// this input file produces a mesh of approximately 3000 nodes and 14,000
// tetrahedra. With
//
// > gmsh t5.geo -clscale 0.2
//
// the mesh counts approximately 231,000 nodes and 1,360,000 tetrahedra. You can
// check mesh statistics in the graphical user interface with the
// ‘Tools->Statistics’ menu.
//
// See ‘t10.geo’ for more information about mesh sizes.
Macro CheeseHole
// In the following commands we use the reserved variable name ‘newp’, which
// automatically selects a new point tag. Analogously to ‘newp’, the special
// variables ‘newl’, ‘newll, ‘news’, ‘newsl’ and ‘newv’ select new curve,
// curve loop, surface, surface loop and volume tags.
//
// If ‘Geometry.OldNewReg’ is set to 0, the new tags are chosen as the highest
// current tag for each category (points, curves, curve loops, ...), plus
// one. By default, for backward compatibility, ‘Geometry.OldNewReg’ is set
// to 1, and only two categories are used: one for points and one for the
// rest.
// We then store the surface loops tags in a list for later reference (we will
// need these to define the final volume):
theloops[t] = newsl;
Surface Loop(theloops[t]) = {s1, s2, s3, s4, s5, s6, s7, s8};
thehole = newv;
Volume(thehole) = theloops[t];
Return
x = 0; y = 0.75; z = 0; r = 0.09;
For t In {1:5}
x += 0.166;
z += 0.166;
Call CheeseHole;
// We also print some variables on the terminal (note that, since all
// variables in ‘.geo’ files are treated internally as floating point numbers,
// the format string should only contain valid floating point format
// specifiers like ‘%g’, ‘%f’, ’%e’, etc.):
EndFor
// We can then define the surface loop for the exterior surface of the cube:
theloops[0] = newreg;
Surface Loop(theloops[0]) = {23:39:2};
// The volume of the cube, without the 5 holes, is now defined by 6 surface
// loops: the first surface loop defines the exterior surface; the surface loops
// other than the first one define holes. (Again, to reference an array of
// variables, its identifier is followed by square brackets):
Volume(186) = {theloops[]};
// Note that using solid modelling with the OpenCASCADE geometry kernel, the
// same geometry could be built quite differently: see ‘t16.geo’.
// We finally define a physical volume for the elements discretizing the cube,
138 Gmsh 4.7.1
// without the holes (for which physical groups were already created in the
// ‘For’ loop):
// We could make only part of the model visible to only mesh this subset:
//
// Hide {:}
// Recursive Show { Volume{129}; }
// Mesh.MeshOnlyVisible=1;
// Let’s use the geometry from the first tutorial as a basis for this one:
Include "t1.geo";
// Delete the surface and the left line, and replace the line with 3 new ones:
Delete{ Surface{1}; Curve{4}; }
// Create a surface:
Curve Loop(2) = {2, -1, l1, l2, l3, -3};
Plane Surface(1) = {-2};
// Let’s put 20 points total on combination of curves ‘l1’, ‘l2’ and ‘l3’
// (beware that the points ‘p1’ and ‘p2’ are shared by the curves, so we do not
// create 6 + 6 + 10 = 22 nodes, but 20!)
Transfinite Curve{l1} = 6;
Transfinite Curve{l2} = 6;
Transfinite Curve{l3} = 10;
// When the surface has only 3 or 4 points on its boundary the list of corners
// can be omitted in the ‘Transfinite Surface’ constraint:
Point(7) = {0.2, 0.2, 0, 1.0};
Point(8) = {0.2, 0.1, 0, 1.0};
Point(9) = {-0, 0.3, 0, 1.0};
Point(10) = {0.25, 0.2, 0, 1.0};
Point(11) = {0.3, 0.1, 0, 1.0};
Line(10) = {8, 11};
Line(11) = {11, 10};
Line(12) = {10, 7};
Line(13) = {7, 8};
Curve Loop(14) = {13, 10, 11, 12};
Plane Surface(15) = {14};
Transfinite Curve {10:13} = 10;
Transfinite Surface{15};
// In order to compute the mesh sizes from the background mesh only, and
// disregard any other size constraints, one can set:
Mesh.MeshSizeExtendFromBoundary = 0;
Mesh.MeshSizeFromPoints = 0;
Mesh.MeshSizeFromCurvature = 0;
// In addition to creating geometries and meshes, GEO scripts can also be used
// to manipulate post-processing datasets (called "views" in Gmsh).
Include "t1.geo";
Include "view1.pos";
Include "view1.pos";
Include "view4.pos";
// Gmsh can read post-processing views in various formats. Here the ‘view1.pos’
// and ‘view4.pos’ files are in the Gmsh "parsed" format, which is interpreted
// directly by the GEO script parser. The parsed format should only be used for
// relatively small datasets of course: for larger datasets using e.g. MSH files
// is much more efficient.
General.Trackball = 0;
General.RotationX = 0; General.RotationY = 0; General.RotationZ = 0;
General.Color.Background = White; General.Color.Foreground = Black;
General.Color.Text = Black;
General.Orthographic = 0;
General.Axes = 0; General.SmallAxes = 0;
v0 = PostProcessing.NbViews-4;
v1 = v0+1; v2 = v0+2; v3 = v0+3;
View[v0].IntervalsType = 2;
View[v0].OffsetZ = 0.05;
Appendix A: Tutorial 141
View[v0].RaiseZ = 0;
View[v0].Light = 1;
View[v0].ShowScale = 0;
View[v0].SmoothNormals = 1;
View[v1].IntervalsType = 1;
View[v1].ColorTable = { Green, Blue };
View[v1].NbIso = 10;
View[v1].ShowScale = 0;
View[v2].Name = "Test...";
View[v2].Axes = 1;
View[v2].Color.Axes = Black;
View[v2].IntervalsType = 2;
View[v2].Type = 2;
View[v2].IntervalsType = 2;
View[v2].AutoPosition = 0;
View[v2].PositionX = 85;
View[v2].PositionY = 50;
View[v2].Width = 200;
View[v2].Height = 130;
View[v3].Visible = 0;
// But a script can be used to build much more complex animations, by changing
// options at run-time and re-rendering the graphics. Each frame can then be
// saved to disk as an image, and multiple frames can be encoded to form a
// movie. Below is an example of such a custom animation.
t = 0; // Initial step
If (num == 3)
// Resize the graphics when num == 3, to create 640x480 frames
General.GraphicsWidth = General.MenuWidth + 640;
General.GraphicsHeight = 480;
EndIf
frames = 50;
// Draw the scene (one could use ‘DrawForceChanged’ instead to force the
// reconstruction of the vertex arrays, e.g. if changing element clipping)
Draw;
If (num == 3)
// Uncomment the following lines to save each frame to an image file (the
// ‘Print’ command saves the graphical window; the ‘Sprintf’ function
// permits to create the file names on the fly):
EndFor
If(num == 3)
// Here we could make a system call to generate a movie. For example,
// with whirlgif:
/*
System "whirlgif -minimize -loop -o t8.gif t8-*.gif";
*/
// with mencoder:
/*
System "mencoder ’mf://*.jpg’ -mf fps=5 -o t8.mpg -ovc lavc
-lavcopts vcodec=mpeg1video:vhq";
System "mencoder ’mf://*.jpg’ -mf fps=5 -o t8.mpg -ovc lavc
-lavcopts vcodec=mpeg4:vhq";
*/
// with ffmpeg:
/*
System "ffmpeg -hq -r 5 -b 800 -vcodec mpeg1video
-i t8-%02d.jpg t8.mpg"
System "ffmpeg -hq -r 5 -b 800 -i t8-%02d.jpg t8.asf"
*/
EndIf
Appendix A: Tutorial 143
EndFor
Include "view3.pos" ;
// We then set some options for the ‘Isosurface’ plugin (which extracts an
// isosurface from a 3D scalar view), and run it:
// We also set some options for the ‘CutPlane’ plugin (which computes a section
// of a 3D view using the plane A*x+B*y+C*z+D=0), and then run it:
Plugin(CutPlane).A = 0 ;
Plugin(CutPlane).B = 0.2 ;
Plugin(CutPlane).C = 1 ;
Plugin(CutPlane).D = 0 ;
Plugin(CutPlane).View = 0 ;
Plugin(CutPlane).Run ;
// Add a title (By convention, for window coordinates a value greater than 99999
// represents the center. We could also use ‘General.GraphicsWidth / 2’, but
// that would only center the string for the current window size.):
View[0].Light = 1;
View[0].IntervalsType = 1;
View[0].NbIso = 6;
View[0].SmoothNormals = 1;
View[1].IntervalsType = 2;
View[2].IntervalsType = 2;
// Say we would like to obtain mesh elements with size lc/30 near curve 2 and
// point 5, and size lc elsewhere. To achieve this, we can use two fields:
// "Distance", and "Threshold". We first define a Distance field (‘Field[1]’) on
// points 5 and on curve 2. This field returns the distance to point 5 and to
// (100 equidistant points on) curve 2.
Field[1] = Distance;
Field[1].PointsList = {5};
Field[1].CurvesList = {2};
Field[1].NumPointsPerCurve = 100;
// We then define a ‘Threshold’ field, which uses the return value of the
// ‘Distance’ field 1 in order to define a simple change in element size
// depending on the computed distances
//
// SizeMax - /------------------
// /
// /
// /
// SizeMin -o----------------/
// | | |
// Point DistMin DistMax
Field[2] = Threshold;
Field[2].InField = 1;
Field[2].SizeMin = lc / 30;
Field[2].SizeMax = lc;
Field[2].DistMin = 0.15;
Field[2].DistMax = 0.5;
// Say we want to modulate the mesh element sizes using a mathematical function
// of the spatial coordinates. We can do this with the MathEval field:
Field[3] = MathEval;
Appendix A: Tutorial 145
// We could also combine MathEval with values coming from other fields. For
// example, let’s define a ‘Distance’ field around point 1
Field[4] = Distance;
Field[4].PointsList = {1};
// We can then create a ‘MathEval’ field with a function that depends on the
// return value of the ‘Distance’ field 4, i.e., depending on the distance to
// point 1 (here using a cubic law, with minimum element size = lc / 100)
Field[5] = MathEval;
Field[5].F = Sprintf("F4^3 + %g", lc / 100);
// We could also use a ‘Box’ field to impose a step change in element sizes
// inside a box
Field[6] = Box;
Field[6].VIn = lc / 15;
Field[6].VOut = lc;
Field[6].XMin = 0.3;
Field[6].XMax = 0.6;
Field[6].YMin = 0.3;
Field[6].YMax = 0.6;
// Many other types of fields are available: see the reference manual for a
// complete list. You can also create fields directly in the graphical user
// interface by selecting ‘Define->Size fields’ in the ‘Mesh’ module.
// Finally, let’s use the minimum of all the fields as the background mesh size
// field
Field[7] = Min;
Field[7].FieldsList = {2, 3, 5, 6};
Background Field = 7;
// To determine the size of mesh elements, Gmsh locally computes the minimum of
//
// 1) the size of the model bounding box;
// 2) if ‘Mesh.MeshSizeFromPoints’ is set, the mesh size specified at
// geometrical points;
// 3) if ‘Mesh.MeshSizeFromCurvature’ is set, the mesh size based on the
// curvature and ‘Mesh.MinimumElementsPerTwoPi’;
// 4) the background mesh size field;
// 5) any per-entity mesh size constraint.
//
// This value is then constrained in the interval [‘Mesh.MeshSizeMin’,
// ‘Mesh.MeshSizeMax’] and multiplied by ‘Mesh.MeshSizeFactor’. In addition,
// boundary mesh sizes (on curves or surfaces) are interpolated inside the
// enclosed entity (surface or volume, respectively) if the option
// ‘Mesh.MeshSizeExtendFromBoundary’ is set (which is the case by default).
//
// When the element size is fully specified by a background mesh size field (as
// it is in this example), it is thus often desirable to set
Mesh.MeshSizeExtendFromBoundary = 0;
Mesh.MeshSizeFromPoints = 0;
Mesh.MeshSizeFromCurvature = 0;
// This will prevent over-refinement due to small mesh sizes on the boundary.
//
// Unstructured quadrangular meshes
//
// -----------------------------------------------------------------------------
// We have seen in tutorials ‘t3.geo’ and ‘t6.geo’ that extruded and transfinite
// meshes can be "recombined" into quads, prisms or hexahedra by using the
// "Recombine" keyword. Unstructured meshes can be recombined in the same
// way. Let’s define a simple geometry with an analytical mesh size field:
Field[1] = MathEval;
Field[1].F = "0.01*(1.0+30.*(y-x*x)*(y-x*x) + (1-x)*(1-x))";
Background Field = 1;
// If we’d had several surfaces, we could have used ‘Recombine Surface {:};’.
// Yet another way would be to specify the global option "Mesh.RecombineAll =
// 1;".
// For even better 2D (planar) quadrilateral meshes, you can try the
// experimental "Frontal-Delaunay for quads" meshing algorithm, which is a
// triangulation algorithm that enables to create right triangles almost
// everywhere: J.-F. Remacle, F. Henrotte, T. Carrier-Baudouin, E. Bechet,
// E. Marchandise, C. Geuzaine and T. Mouton. A frontal Delaunay quad mesh
// generator using the L^inf norm. International Journal for Numerical Methods
// in Engineering, 94, pp. 494-512, 2013. Uncomment the following line to try
// the Frontal-Delaunay algorithms for quads:
//
// Mesh.Algorithm = 8;
// The default recombination algorithm might leave some triangles in the mesh,
// if recombining all the triangles leads to badly shaped quads. In such cases,
// to generate full-quad meshes, you can either subdivide the resulting hybrid
// mesh (with Mesh.SubdivisionAlgorithm = 1), or use the full-quad recombination
// algorithm, which will automatically perform a coarser mesh followed by
// recombination, smoothing and subdivision. Uncomment the following line to try
// the full-quad algorithm:
//
// Mesh.RecombinationAlgorithm = 2; // or 3
// Note that you could also apply the recombination algorithm and/or the
// subdivision step explicitly after meshing, as follows:
//
// Mesh 2;
// RecombineMesh;
// Mesh.SubdivisionAlgorithm = 1;
Appendix A: Tutorial 147
// RefineMesh;
// Step 3. above can only be performed if the mesh resulting from the
// combination of the individual meshes can be reparametrized, i.e. if the shape
// is "simple enough". If the shape is not amenable to reparametrization, you
// should create a full mesh of the geometry and first re-classify it to
// generate patches amenable to reparametrization (see ‘t13.geo’).
lc = 0.1;
// Treat curves 2, 3 and 4 as a single curve when meshing (i.e. mesh across
// points 6 and 7)
Compound Curve{2, 3, 4};
// Treat surfaces 1, 5 and 10 as a single surface when meshing (i.e. mesh across
// curves 9 and 10)
Compound Surface{1, 5, 10};
DefineConstant[
// Angle between two triangles above which an edge is considered as sharp
angle = {40, Min 20, Max 120, Step 1,
Name "Parameters/Angle for surface detection"},
// For complex geometries, patches can be too complex, too elongated or too
// large to be parametrized; setting the following option will force the
// creation of patches that are amenable to reparametrization:
forceParametrizablePatches = {0, Choices{0,1},
Name "Parameters/Create surfaces guaranteed to be parametrizable"},
// For open surfaces include the boundary edges in the classification process:
includeBoundary = 1,
// Force curves to be split on given angle:
curveAngle = 180
];
ClassifySurfaces{angle * Pi/180, includeBoundary, forceParametrizablePatches,
curveAngle * Pi / 180};
// Create a geometry for all the discrete curves and surfaces in the mesh, by
// computing a parametrization for each one
CreateGeometry;
// In batch mode the two steps above can be performed with ‘gmsh t13.stl
// -reparam 40’, which will save ‘t13.msh’ containing the parametrizations, and
// which can thus subsequently be remeshed.
// We specify element sizes imposed by a size field, just because we can :-)
funny = DefineNumber[0, Choices{0,1},
Name "Parameters/Apply funny mesh size field?" ];
Field[1] = MathEval;
If(funny)
Field[1].F = "2*Sin((x+y)/5) + 3";
Else
Field[1].F = "4";
EndIf
Appendix A: Tutorial 149
Background Field = 1;
// Create physical groups, which are used to define the domain of the
// (co)homology computation and the subdomain of the relative (co)homology
// computation.
// Whole domain
Physical Volume(1) = {e(1)};
// Find bases for relative homology spaces of the domain modulo the four
// terminals.
150 Gmsh 4.7.1
// Find homology space bases isomorphic to the previous bases: homology spaces
// modulo the non-terminal domain surface, a.k.a the thin cuts.
Homology {{1}, {75}};
// More examples:
// Homology {1};
// Homology;
// Homology {{1}, {80}};
// Homology {{}, {80}};
// One can force this point to be included ("embedded") in the 2D mesh, using
// the ‘Point In Surface’ command:
Point{5} In Surface{1};
// In the same way, one can force a curve to be embedded in the 2D mesh using
// the ‘Curve in Surface’ command:
Point(6) = {0.02, 0.12, 0, lc};
Point(7) = {0.04, 0.18, 0, lc};
Line(5) = {6, 7};
Curve{5} In Surface{1};
// One can also embed points and curves in a volume using the ‘Curve/Point In
// Volume’ commands:
Extrude {0, 0, 0.1}{ Surface {1}; }
Appendix A: Tutorial 151
p = newp;
Point(p) = {0.07, 0.15, 0.025, lc};
Point{p} In Volume {1};
l = newl;
Point(p+1) = {0.025, 0.15, 0.025, lc};
Line(l) = {7, p+1};
Curve{l} In Volume {1};
// Finally, one can also embed a surface in a volume using the ‘Surface In
// Volume’ command:
Point(p+2) = {0.02, 0.12, 0.05, lc};
Point(p+3) = {0.04, 0.12, 0.05, lc};
Point(p+4) = {0.04, 0.18, 0.05, lc};
Point(p+5) = {0.02, 0.18, 0.05, lc};
Line(l+1) = {p+2, p+3};
Line(l+2) = {p+3, p+4};
Line(l+3) = {p+4, p+5};
Line(l+4) = {p+5, p+2};
ll = newll;
Curve Loop(ll) = {l+1:l+4};
s = news;
Plane Surface(s) = {ll};
Surface{s} In Volume {1};
// Note that with the OpenCASCADE kernel (see ‘t16.geo’), when the
// ‘BooleanFragments’ command is applied to entities of different dimensions,
// the lower dimensional entities will be autmatically embedded in the higher
// dimensional entities if necessary.
SetFactory("OpenCASCADE");
// Let’s build the same model as in ‘t5.geo’, but using constructive solid
// geometry.
// We apply a boolean difference to create the "cube minus one eigth" shape:
BooleanDifference(3) = { Volume{1}; Delete; }{ Volume{2}; Delete; };
// Here the ‘Physical Volume’ definitions made above will thus still work, as
// the five spheres (volumes 4, 5, 6, 7 and 8), which will be deleted by the
// fragment operations, will be recreated identically (albeit with new surfaces)
// with the same tags.
// Creating entities using constructive solid geometry is very powerful, but can
// lead to practical issues for e.g. setting mesh sizes at points, or
// identifying boundaries.
// To identify points or other bounding entities you can take advantage of the
// ‘PointfsOf’ (a special case of the more general ‘Boundary’ command) and the
// ‘In BoundingBox’ commands.
lcar1 = .1;
lcar2 = .0005;
lcar3 = .055;
eps = 1e-3;
SetFactory("OpenCASCADE");
// Create a square
Rectangle(1) = {-1, -1, 0, 2, 2};
// Use bamg
Mesh.SmoothRatio = 3;
Mesh.AnisoMax = 1000;
Mesh.Algorithm = 7;
SetFactory("OpenCASCADE");
// The first geometry is very simple: a unit cube with a non-uniform mesh size
// constraint (set on purpose to be able to verify visually that the periodicity
// constraint works!):
// To impose that the mesh on surface 2 (the right side of the cube) should
// match the mesh from surface 1 (the left side), the following periodicity
// constraint is set:
Periodic Surface {2} = {1} Translate {1, 0, 0};
// During mesh generation, the mesh on surface 2 will be created by copying the
// mesh from surface 1. Periodicity constraints can be specified with a
// ‘Translation’, a ‘Rotation’ or a general ‘Affine’ transform.
154 Gmsh 4.7.1
// For more complicated cases, finding the corresponding surfaces by hand can be
// tedious, especially when geometries are created through solid
// modelling. Let’s construct a slightly more complicated geometry.
// We first fragment all the volumes, which will leave parts of spheres
// protruding outside the cube:
v() = BooleanFragments { Volume{10}; Delete; }{ Volume{11:18}; Delete; };
// Ask OpenCASCADE to compute more accurate bounding boxes of entities using the
// STL mesh:
Geometry.OCCBoundsUseStl = 1;
// We then retrieve all the volumes in the bounding box of the original cube,
// and delete all the parts outside it:
eps = 1e-3;
vin() = Volume In BoundingBox {2-eps,-eps,-eps, 2+1+eps,1+eps,1+eps};
v() -= vin();
Recursive Delete{ Volume{v()}; }
// We now identify corresponding surfaces on the left and right sides of the
// geometry automatically.
For i In {0:#Sxmin()-1}
// Then we get the bounding box of each left surface
bb() = BoundingBox Surface { Sxmin(i) };
// We translate the bounding box to the right and look for surfaces inside it:
Sxmax() = Surface In BoundingBox { bb(0)-eps+1, bb(1)-eps, bb(2)-eps,
bb(3)+eps+1, bb(4)+eps, bb(5)+eps };
// For all the matches, we compare the corresponding bounding boxes...
For j In {0:#Sxmax()-1}
bb2() = BoundingBox Surface { Sxmax(j) };
bb2(0) -= 1;
bb2(3) -= 1;
// ...and if they match, we apply the periodicity constraint
If(Fabs(bb2(0)-bb(0)) < eps && Fabs(bb2(1)-bb(1)) < eps &&
Fabs(bb2(2)-bb(2)) < eps && Fabs(bb2(3)-bb(3)) < eps &&
Fabs(bb2(4)-bb(4)) < eps && Fabs(bb2(5)-bb(5)) < eps)
Periodic Surface {Sxmax(j)} = {Sxmin(i)} Translate {1,0,0};
EndIf
EndFor
Appendix A: Tutorial 155
EndFor
// The OpenCASCADE geometry kernel supports several useful features for solid
// modelling.
SetFactory("OpenCASCADE");
// With ‘Ruled ThruSections’ you can force the use of ruled surfaces:
Circle(11) = {2+0,0,0, 0.5}; Curve Loop(11) = 11;
Circle(12) = {2+0.1,0.05,1, 0.1}; Curve Loop(12) = 12;
Circle(13) = {2-0.1,-0.1,2, 0.3}; Curve Loop(13) = 13;
Ruled ThruSections(11) = {11:13};
// OpenCASCADE also allows general extrusions along a smooth path. Let’s first
// define a spline curve:
nturns = DefineNumber[ 1, Min 0.1, Max 3, Step 0.01, Name "Parameters/Turn" ];
npts = 20;
r = 1;
h = 1 * nturns;
For i In {0 : npts - 1}
theta = i * 2*Pi*nturns/npts;
Point(1000 + i) = {r * Cos(theta), r * Sin(theta), i * h/npts};
EndFor
Spline(1000) = {1000 : 1000 + npts - 1};
// We define the shape we would like to extrude along the spline (a disk):
Disk(1000) = {1,0,0, 0.2};
Rotate {{1, 0, 0}, {0, 0, 0}, Pi/2} { Surface{1000}; }
// We delete the source surface, and increase the number of sub-edges for a
// nicer display of the geometry:
Delete{ Surface{1000}; }
Geometry.NumSubEdges = 1000;
156 Gmsh 4.7.1
// We can constraint the min and max element sizes to stay within reasonnable
// values (see ‘t10.geo’ for more details):
Mesh.MeshSizeMin = 0.001;
Mesh.MeshSizeMax = 0.3;
// The OpenCASCADE geometry kernel allows to import STEP files and to modify
// them. In this tutorial we will load a STEP geometry and partition it into
// slices.
SetFactory("OpenCASCADE");
// If we had specified
//
// Geometry.OCCTargetUnit = "M";
//
// before merging the STEP file, OpenCASCADE would have converted the units to
// meters (instead of the default, which is millimeters).
// We want to slice the model into N slices, and either keep the volume slices
// or just the surfaces obtained by the cutting:
DefineConstant[
N = {5, Min 2, Max 100, Step 1, Name "Parameters/0Number of slices"}
dir = {0, Choices{0="X", 1="Y", 2="Z"}, Name "Parameters/1Direction"}
surf = {0, Choices{0, 1}, Name "Parameters/2Keep only surfaces?"}
];
dx = (xmax - xmin);
dy = (ymax - ymin);
dz = (zmax - zmin);
L = (dir == 0) ? dz : dx;
H = (dir == 1) ? dz : dy;
s() = {news};
Rectangle(s(0)) = {xmin, ymin, zmin, L, H};
If(dir == 0)
Rotate{ {0, 1, 0}, {xmin, ymin, zmin}, -Pi/2 } { Surface{s(0)}; }
ElseIf(dir == 1)
Rotate{ {1, 0, 0}, {xmin, ymin, zmin}, Pi/2 } { Surface{s(0)}; }
EndIf
tx = (dir == 0) ? dx / N : 0;
ty = (dir == 1) ? dy / N : 0;
tz = (dir == 2) ? dz / N : 0;
Translate{tx, ty, tz} { Surface{s(0)}; }
// Fragment (i.e. intersect) the volume with all the cutting planes:
BooleanFragments{ Volume{v()}; Delete; }{ Surface{s()}; Delete; }
// Now remove all the surfaces (and their bounding entities) that are not on the
// boundary of a volume, i.e. the parts of the cutting planes that "stick out"
// of the volume:
Recursive Delete { Surface{:}; }
If(surf)
// If we want to only keep the surfaces, retrieve the surfaces in bounding
// boxes around the cutting planes...
eps = 1e-4;
s() = {};
For i In {1:N-1}
xx = (dir == 0) ? xmin : xmax;
yy = (dir == 1) ? ymin : ymax;
zz = (dir == 2) ? zmin : zmax;
s() += Surface In BoundingBox
{xmin - eps + i * tx, ymin - eps + i * ty, zmin - eps + i * tz,
xx + eps + i * tx, yy + eps + i * ty, zz + eps + i * tz};
EndFor
// ...and remove all the other entities:
dels = Surface{:};
dels -= s();
Delete { Volume{:}; Surface{dels()}; Curve{:}; Point{:}; }
EndIf
// Gmsh can partition meshes using different algorithms, e.g. the graph
// partitioner Metis or the ‘SimplePartition’ plugin. For all the partitining
// algorithms, the relationship between mesh elements and mesh partitions is
158 Gmsh 4.7.1
// Let us start by creating a simple geometry with two adjacent squares sharing
// an edge:
SetFactory("OpenCASCADE");
Rectangle(1) = {0, 0, 0, 1, 1};
Rectangle(2) = {1, 0, 0, 1, 1};
BooleanFragments{ Surface{1}; Delete; }{ Surface{2}; Delete; }
MeshSize {:} = 0.05;
// We create one physical group for each square, and we mesh the resulting
// geometry:
Physical Surface("Left", 100) = 1;
Physical Surface("Right", 200) = 2;
Mesh 2;
// We now define several constants to fine-tune how the mesh will be partitioned
DefineConstant[
partitioner = {0, Choices{0="Metis", 1="SimplePartition"},
Name "Parameters/0Mesh partitioner"}
N = {3, Min 1, Max 256, Step 1,
Name "Parameters/1Number of partitions"}
topology = {1, Choices{0, 1},
Name "Parameters/2Create partition topology (BRep)?"}
ghosts = {0, Choices{0, 1},
Name "Parameters/3Create ghost cells?"}
physicals = {0, Choices{0, 1},
Name "Parameters/3Create new physical groups?"}
write = {1, Choices {0, 1},
Name "Parameters/3Write file to disk?"}
split = {0, Choices {0, 1},
Name "Parameters/4Write one file per partition?"}
];
// Should we keep backward compatibility with pre-Gmsh 4, e.g. to save the mesh
// in MSH2 format?
Mesh.PartitionOldStyleMsh2 = 0;
If (partitioner == 0)
// Use Metis to create N partitions
PartitionMesh N;
// Several options can be set to control Metis: ‘Mesh.MetisAlgorithm’ (1:
// Recursive, 2: K-way), ‘Mesh.MetisObjective’ (1: min. edge-cut, 2:
// min. communication volume), ‘Mesh.PartitionTriWeight’ (weight of
Appendix A: Tutorial 159
# The Python API allows to do much more than what can be done in .geo files. These
# additional features are introduced gradually in the extended tutorials,
# starting with ‘x1.py’.
# In this first extended tutorial, we start by using the API to access basic
# geometrical and mesh data.
import gmsh
import sys
if len(sys.argv) < 2:
print("Usage: " + sys.argv[0] + " file")
exit
gmsh.initialize()
# You can run this tutorial on any file that Gmsh can read, e.g. a mesh file in
# the MSH format: ‘python t1.py file.msh’
gmsh.open(sys.argv[1])
# Get all the elementary entities in the model, as a vector of (dimension, tag)
# pairs:
entities = gmsh.model.getEntities()
160 Gmsh 4.7.1
for e in entities:
# Dimension and tag of the entity:
dim = e[0]
tag = e[1]
# Let’s print a summary of the information available on the entity and its
# mesh.
for t in elemTypes:
name, dim, order, numv, parv, _ = gmsh.model.mesh.getElementProperties(
t)
print(" - Element type: " + name + ", order " + str(order) + " (" +
str(numv) + " nodes in param coord: " + str(parv) + ")")
gmsh.finalize()
import gmsh
import sys
import math
# The API can be used to import a mesh without reading it from a file, by
# creating nodes and elements on the fly and storing them in model
# entities. These model entities can be existing CAD entities, or can be
# discrete entities, entirely defined by the mesh.
#
# Discrete entities can be reparametrized (see ‘t13.py’) so that they can be
# remeshed later on; and they can also be combined with CAD entities to produce
# hybrid models.
#
# We combine all these features in this tutorial to perform terrain meshing,
# where the terrain is described by a discrete surface (that we then
# reparametrize) combined with a CAD representation of the underground.
gmsh.initialize()
gmsh.model.add("x2")
# We will create the terrain surface mesh from N x N input data points:
N = 100
# The connectivities of the triangle elements (3 node tags per triangle) on the
# terrain surface:
tris = []
# The connectivities of the point elements on the 4 corners (1 node tag for each
# point element):
pnt = [tag(0, 0), tag(N, 0), tag(N, N), tag(0, N)]
# Add all the nodes on the surface (for simplicity... see below):
gmsh.model.mesh.addNodes(2, 1, nodes, coords)
# Add point elements on the 4 points, line elements on the 4 curves, and
# triangle elements on the surface:
for i in range(4):
# Type 15 for point elements:
gmsh.model.mesh.addElementsByType(i + 1, 15, [], [pnt[i]])
# Type 1 for 2-node line elements:
gmsh.model.mesh.addElementsByType(i + 1, 1, [], lin[i])
# Type 2 for 3-node triangle elements:
gmsh.model.mesh.addElementsByType(1, 2, [], tris)
# Reclassify the nodes on the curves and the points (since we put them all on
# the surface before with ‘addNodes’ for simplicity)
gmsh.model.mesh.reclassifyNodes()
# Create a geometry for the discrete curves and surfaces, so that we can remesh
# them later on:
gmsh.model.mesh.createGeometry()
# Note that for more complicated meshes, e.g. for on input unstructured STL
# mesh, we could use ‘classifySurfaces()’ to automatically create the discrete
# entities and the topology; but we would then have to extract the boundaries
# afterwards.
# Create other CAD entities to form one volume below the terrain surface:
p1 = gmsh.model.geo.addPoint(0, 0, -0.5)
Appendix A: Tutorial 163
p2 = gmsh.model.geo.addPoint(1, 0, -0.5)
p3 = gmsh.model.geo.addPoint(1, 1, -0.5)
p4 = gmsh.model.geo.addPoint(0, 1, -0.5)
c1 = gmsh.model.geo.addLine(p1, p2)
c2 = gmsh.model.geo.addLine(p2, p3)
c3 = gmsh.model.geo.addLine(p3, p4)
c4 = gmsh.model.geo.addLine(p4, p1)
c10 = gmsh.model.geo.addLine(p1, 1)
c11 = gmsh.model.geo.addLine(p2, 2)
c12 = gmsh.model.geo.addLine(p3, 3)
c13 = gmsh.model.geo.addLine(p4, 4)
ll1 = gmsh.model.geo.addCurveLoop([c1, c2, c3, c4])
s1 = gmsh.model.geo.addPlaneSurface([ll1])
ll3 = gmsh.model.geo.addCurveLoop([c1, c11, -1, -c10])
s3 = gmsh.model.geo.addPlaneSurface([ll3])
ll4 = gmsh.model.geo.addCurveLoop([c2, c12, -2, -c11])
s4 = gmsh.model.geo.addPlaneSurface([ll4])
ll5 = gmsh.model.geo.addCurveLoop([c3, c13, 3, -c12])
s5 = gmsh.model.geo.addPlaneSurface([ll5])
ll6 = gmsh.model.geo.addCurveLoop([c4, c10, 4, -c13])
s6 = gmsh.model.geo.addPlaneSurface([ll6])
sl1 = gmsh.model.geo.addSurfaceLoop([s1, s3, s4, s5, s6, 1])
v1 = gmsh.model.geo.addVolume([sl1])
gmsh.model.geo.synchronize()
if transfinite:
NN = 30
for c in gmsh.model.getEntities(1):
gmsh.model.mesh.setTransfiniteCurve(c[1], NN)
for s in gmsh.model.getEntities(2):
gmsh.model.mesh.setTransfiniteSurface(s[1])
gmsh.model.mesh.setRecombine(s[0], s[1])
gmsh.model.mesh.setSmoothing(s[0], s[1], 100)
gmsh.model.mesh.setTransfiniteVolume(v1)
elif transfiniteAuto:
gmsh.option.setNumber(’Mesh.MeshSizeMin’, 0.5)
gmsh.option.setNumber(’Mesh.MeshSizeMax’, 0.5)
# setTransfiniteAutomatic() uses the sizing constraints to set the number
# of points
gmsh.model.mesh.setTransfiniteAutomatic()
else:
gmsh.option.setNumber(’Mesh.MeshSizeMin’, 0.05)
gmsh.option.setNumber(’Mesh.MeshSizeMax’, 0.05)
gmsh.model.mesh.generate(3)
gmsh.write(’x2.msh’)
gmsh.finalize()
#
# Post-processing data import: list-based
#
# -----------------------------------------------------------------------------
import gmsh
import sys
gmsh.initialize(sys.argv)
# List-based views are completely independent from any model and any mesh: they
# are self-contained and simply contain lists of coordinates and values, element
# by element, for 3 types of fields (scalar "S", vector "V" and tensor "T") and
# several types of element shapes (point "P", line "L", triangle "T", quadrangle
# "Q", tetrahedron "S", hexahedron "H", prism "I" and pyramid "Y"). (See ‘x4.py’
# for a tutorial on model-based views.)
# List-based data is just added by concatenating the data for all the triangles:
gmsh.view.addListData(t1, "ST", 2, triangle1 + triangle2)
# Internally, post-processing views parsed by the .geo file parser create such
# list-based data (see e.g. ‘t7.py’, ‘t8.py’ and ‘t9.py’), independently of any
# mesh.
# Vector or tensor fields can be imported in the same way, the only difference
# beeing the type (starting with "V" for vector fields and "T" for tensor
# fields) and the number of components. For example a vector field on a line
# element can be added as follows:
line = [
0., 1., # x coordinate of the 2 line nodes
1.2, 1.2, # y coordinate of the 2 line nodes
0., 0. # z coordinate of the 2 line nodes
]
for step in range(0, 10):
# 3 vector components for each node (2 nodes here), for each step
line.extend([10. + step, 0., 0.,
10. + step, 0., 0.])
gmsh.view.addListData(t1, "VL", 1, line)
# List-based data can also hold 2D (in window coordinates) and 3D (in model
Appendix A: Tutorial 165
# The various attributes of the view can be queried and changed using the option
# interface. Beware that the option interface uses view indices instead of view
# tags; so to change the current time step and the intervals type, and to
# retrieve the total number of steps, one would do:
v1 = "View[" + str(gmsh.view.getIndex(t1)) + "]"
gmsh.option.setNumber(v1 + ".TimeStep", 5)
gmsh.option.setNumber(v1 + ".IntervalsType", 3)
ns = gmsh.option.getNumber(v1 + ".NbTimeStep")
print(v1 + " with tag " + str(t1) + " has " + str(ns) + " time steps")
# Views can be queried and modified in various ways using plugins (see ‘t9.py’),
# or probed directly using ‘gmsh.view.probe()’ - here at point (0.9, 0.1, 0):
print("Value at (0.9, 0.1, 0)", gmsh.view.probe(t1, 0.9, 0.1, 0))
# Add nine values that will be interpolated by second order basis functions
quad.extend([1., 1., 1., 1., 3., 3., 3., 3., -3.])
# Set the two interpolation matrices c[i][j] and e[i][j] defining the d = 9
# basis functions: f[i](u, v, w) = sum_(j = 0, ..., d - 1) c[i][j] u^e[j][0]
# v^e[j][1] w^e[j][2], i = 0, ..., d-1, with u, v, w the coordinates in the
# reference element:
gmsh.view.setInterpolationMatrices(t2, "Quadrangle", 9,
[0, 0, 0.25, 0, 0, -0.25, -0.25, 0, 0.25,
0, 0, 0.25, 0, 0, -0.25, 0.25, 0, -0.25,
0, 0, 0.25, 0, 0, 0.25, 0.25, 0, 0.25,
0, 0, 0.25, 0, 0, 0.25, -0.25, 0, -0.25,
0, 0, -0.5, 0.5, 0, 0.5, 0, -0.5, 0,
0, 0.5, -0.5, 0, 0.5, 0, -0.5, 0, 0,
0, 0, -0.5, 0.5, 0, -0.5, 0, 0.5, 0,
0, 0.5, -0.5, 0, -0.5, 0, 0.5, 0, 0,
1, -1, 1, -1, 0, 0, 0, 0, 0],
[0, 0, 0,
2, 0, 0,
2, 2, 0,
0, 2, 0,
1, 0, 0,
2, 1, 0,
1, 2, 0,
0, 1, 0,
1, 1, 0])
gmsh.finalize()
import gmsh
import sys
gmsh.initialize(sys.argv)
# Contrary to list-based view (see ‘x3.py’), model-based views are based on one
# or more meshes. Compared to list-based views, they are thus linked to one
# model (per step). Post-processing data stored in MSH files create such
# model-based views.
# Besided node-based data, which result in continuous fields, one can also add
# general discontinous fields defined at the nodes of each element, using
# "ElementNodeData":
t2 = gmsh.view.add("A discontinuous model-based view")
Appendix A: Tutorial 167
# Constant per element datasets can also be created using "ElementData". Note
# that a more general function ‘addModelData’ to add data for hybrid meshes
# (when data is not homogeneous, i.e. when the number of nodes changes between
# elements) is also available.
# We can add other steps to view "t" based on this new mesh:
nodes, coord, _ = gmsh.model.mesh.getNodes()
for step in range(11, 20):
gmsh.view.addHomogeneousModelData(
t1, step, "another model", "NodeData", nodes,
[step * coord[i] for i in range(0, len(coord), 3)])
gmsh.finalize()
Appendix B: Options 169
Appendix B Options
This appendix lists all the available options. Gmsh’s default behavior is to save some of these
options in a per-user “session resource” file (cf. “Saved in: General.SessionFileName” in the
lists below) every time Gmsh is shut down. This permits for example to automatically remember
the size and location of the windows or which fonts to use. A second set of options can be
saved (automatically or manually with the ‘File->Save Options->As Default’ menu) in a per-
user “option” file (cf. “Saved in: General.OptionsFileName” in the lists below), automatically
loaded by Gmsh every time it starts up. Finally, other options are only saved to disk manually,
either by explicitly saving an option file with ‘File->Export’, or when saving per-model options
with ‘File->Save Options->For Current File’ (cf. “Saved in: -” in the lists below).
To reset all options to their default values, use the ‘Restore default options’ button
in ‘Tools->Options->General->Advanced’, or erase the General.SessionFileName and
General.OptionsFileName files by hand.
All the options can be manipulated through the Gmsh API through the gmsh/option namespace
(see Appendix D [Gmsh API], page 249).
General.BuildInfo
Gmsh build information (read-only)
Default value: "Version: 4.7.1-git-ab8186512; License: GNU General
Public License; Build OS: MacOSX-sdk; Build date: 20201114; Build host:
MacBook-Pro.local; Build options: 64Bit ALGLIB ANN Bamg Blossom Cairo
Cgns DIntegration Dlopen DomHex Eigen Fltk GMP Gmm Hxt Jpeg Kbipack
MathEx Med Mesh Metis Mmg Mpeg Netgen ONELAB ONELABMetamodel OpenCASCADE
OpenCASCADE-CAF OpenGL OpenMP[Homebrew] OptHom Parasolid ParasolidSTEP
Parser Plugins Png Post QuadTri Solver TetGen/BR TouchBar Voro++
Zlib; FLTK version: 1.4.0; OCC version: 7.5.0; MED version: 4.1.0;
Packaged by: geuzaine; Web site: https://gmsh.info; Issue tracker:
https://gitlab.onelab.info/gmsh/gmsh/issues"
Saved in: -
General.BuildOptions
Gmsh build options (read-only)
Default value: "64Bit ALGLIB ANN Bamg Blossom Cairo Cgns DIntegration
Dlopen DomHex Eigen Fltk GMP Gmm Hxt Jpeg Kbipack MathEx Med Mesh Metis
Mmg Mpeg Netgen ONELAB ONELABMetamodel OpenCASCADE OpenCASCADE-CAF
OpenGL OpenMP[Homebrew] OptHom Parasolid ParasolidSTEP Parser Plugins
Png Post QuadTri Solver TetGen/BR TouchBar Voro++ Zlib"
Saved in: -
General.DefaultFileName
Default project file name
Default value: "untitled.geo"
Saved in: General.OptionsFileName
General.Display
X server to use (only for Unix versions)
Default value: ""
Saved in: -
General.ErrorFileName
File into which the log is saved if a fatal error occurs
Default value: ".gmsh-errors"
Saved in: General.OptionsFileName
General.ExecutableFileName
File name of the Gmsh executable (read-only)
Default value: ""
Saved in: General.SessionFileName
General.FileName
Current project file name (read-only)
Default value: ""
Saved in: -
General.FltkTheme
FLTK user interface theme (try e.g. plastic or gtk+)
Default value: ""
Saved in: General.SessionFileName
General.GraphicsFont
Font used in the graphic window
Default value: "Helvetica"
Saved in: General.OptionsFileName
Appendix B: Options 171
General.GraphicsFontEngine
Set graphics font engine (Native, StringTexture, Cairo)
Default value: "Native"
Saved in: General.OptionsFileName
General.GraphicsFontTitle
Font used in the graphic window for titles
Default value: "Helvetica"
Saved in: General.OptionsFileName
General.OptionsFileName
Option file created with ‘Tools->Options->Save’; automatically read on startup
Default value: ".gmsh-options"
Saved in: General.SessionFileName
General.RecentFile0
Most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile1
2nd most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile2
3rd most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile3
4th most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile4
5th most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile5
6th most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile6
7th most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile7
8th most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.RecentFile8
9th most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
172 Gmsh 4.7.1
General.RecentFile9
10th most recent opened file
Default value: "untitled.geo"
Saved in: General.SessionFileName
General.SessionFileName
Option file into which session specific information is saved; automatically read on
startup
Default value: ".gmshrc"
Saved in: -
General.TextEditor
System command to launch a text editor
Default value: "open -t ’%s’"
Saved in: General.OptionsFileName
General.TmpFileName
Temporary file used by the geometry module
Default value: ".gmsh-tmp"
Saved in: General.SessionFileName
General.Version
Gmsh version (read-only)
Default value: "4.7.1-git-ab8186512"
Saved in: -
General.WatchFilePattern
Pattern of files to merge as they become available
Default value: ""
Saved in: -
General.AbortOnError
Abort on error? (0: no, 1: abort meshing, 2: throw an exception unless in interactive
mode, 3: throw an exception always, 4: exit)
Default value: 0
Saved in: General.OptionsFileName
General.AlphaBlending
Enable alpha blending (transparency) in post-processing views
Default value: 1
Saved in: General.OptionsFileName
General.Antialiasing
Use multisample antialiasing (will slow down rendering)
Default value: 0
Saved in: General.OptionsFileName
General.ArrowHeadRadius
Relative radius of arrow head
Default value: 0.12
Saved in: General.OptionsFileName
General.ArrowStemLength
Relative length of arrow stem
Default value: 0.56
Saved in: General.OptionsFileName
Appendix B: Options 173
General.ArrowStemRadius
Relative radius of arrow stem
Default value: 0.02
Saved in: General.OptionsFileName
General.Axes
Axes (0: none, 1: simple axes, 2: box, 3: full grid, 4: open grid, 5: ruler)
Default value: 0
Saved in: General.OptionsFileName
General.AxesMikado
Mikado axes style
Default value: 0
Saved in: General.OptionsFileName
General.AxesAutoPosition
Position the axes automatically
Default value: 1
Saved in: General.OptionsFileName
General.AxesForceValue
Force values on axes (otherwise use natural coordinates)
Default value: 0
Saved in: General.OptionsFileName
General.AxesMaxX
Maximum X-axis coordinate
Default value: 1
Saved in: General.OptionsFileName
General.AxesMaxY
Maximum Y-axis coordinate
Default value: 1
Saved in: General.OptionsFileName
General.AxesMaxZ
Maximum Z-axis coordinate
Default value: 1
Saved in: General.OptionsFileName
General.AxesMinX
Minimum X-axis coordinate
Default value: 0
Saved in: General.OptionsFileName
General.AxesMinY
Minimum Y-axis coordinate
Default value: 0
Saved in: General.OptionsFileName
General.AxesMinZ
Minimum Z-axis coordinate
Default value: 0
Saved in: General.OptionsFileName
General.AxesTicsX
Number of tics on the X-axis
Default value: 5
Saved in: General.OptionsFileName
174 Gmsh 4.7.1
General.AxesTicsY
Number of tics on the Y-axis
Default value: 5
Saved in: General.OptionsFileName
General.AxesTicsZ
Number of tics on the Z-axis
Default value: 5
Saved in: General.OptionsFileName
General.AxesValueMaxX
Maximum X-axis forced value
Default value: 1
Saved in: General.OptionsFileName
General.AxesValueMaxY
Maximum Y-axis forced value
Default value: 1
Saved in: General.OptionsFileName
General.AxesValueMaxZ
Maximum Z-axis forced value
Default value: 1
Saved in: General.OptionsFileName
General.AxesValueMinX
Minimum X-axis forced value
Default value: 0
Saved in: General.OptionsFileName
General.AxesValueMinY
Minimum Y-axis forced value
Default value: 0
Saved in: General.OptionsFileName
General.AxesValueMinZ
Minimum Z-axis forced value
Default value: 0
Saved in: General.OptionsFileName
General.BackgroundGradient
Draw background gradient (0: none, 1: vertical, 2: horizontal, 3: radial)
Default value: 1
Saved in: General.OptionsFileName
General.BackgroundImage3D
Create background image in the 3D model (units = model units) or as 2D back-
ground (units = pixels)
Default value: 0
Saved in: General.OptionsFileName
General.BackgroundImagePage
Page to render in the background image (for multi-page PDFs)
Default value: 0
Saved in: General.OptionsFileName
General.BackgroundImagePositionX
X position of background image (for 2D background: < 0: measure from right
window edge; >= 1e5: centered)
Appendix B: Options 175
Default value: 0
Saved in: General.OptionsFileName
General.BackgroundImagePositionY
Y position of background image (for 2D background: < 0: measure from bottom
window edge; >= 1e5: centered)
Default value: 0
Saved in: General.OptionsFileName
General.BackgroundImageWidth
Width of background image (0: actual width if height = 0, natural scaling if not;
-1: graphic window width)
Default value: -1
Saved in: General.OptionsFileName
General.BackgroundImageHeight
Height of background image (0: actual height if width = 0, natural scaling if not;
-1: graphic window height)
Default value: -1
Saved in: General.OptionsFileName
General.BoundingBoxSize
Overall bounding box size (read-only)
Default value: 1
Saved in: General.OptionsFileName
General.Camera
Enable camera view mode
Default value: 0
Saved in: General.OptionsFileName
General.CameraAperture
Camera aperture in degrees
Default value: 40
Saved in: General.OptionsFileName
General.CameraEyeSeparationRatio
Eye separation ratio in % for stereo rendering
Default value: 1.5
Saved in: General.OptionsFileName
General.CameraFocalLengthRatio
Camera Focal length ratio
Default value: 1
Saved in: General.OptionsFileName
General.Clip0A
First coefficient in equation for clipping plane 0 (‘A’ in ‘AX+BY+CZ+D=0’)
Default value: 1
Saved in: -
General.Clip0B
Second coefficient in equation for clipping plane 0 (‘B’ in ‘AX+BY+CZ+D=0’)
Default value: 0
Saved in: -
176 Gmsh 4.7.1
General.Clip0C
Third coefficient in equation for clipping plane 0 (‘C’ in ‘AX+BY+CZ+D=0’)
Default value: 0
Saved in: -
General.Clip0D
Fourth coefficient in equation for clipping plane 0 (‘D’ in ‘AX+BY+CZ+D=0’)
Default value: 0
Saved in: -
General.Clip1A
First coefficient in equation for clipping plane 1
Default value: 0
Saved in: -
General.Clip1B
Second coefficient in equation for clipping plane 1
Default value: 1
Saved in: -
General.Clip1C
Third coefficient in equation for clipping plane 1
Default value: 0
Saved in: -
General.Clip1D
Fourth coefficient in equation for clipping plane 1
Default value: 0
Saved in: -
General.Clip2A
First coefficient in equation for clipping plane 2
Default value: 0
Saved in: -
General.Clip2B
Second coefficient in equation for clipping plane 2
Default value: 0
Saved in: -
General.Clip2C
Third coefficient in equation for clipping plane 2
Default value: 1
Saved in: -
General.Clip2D
Fourth coefficient in equation for clipping plane 2
Default value: 0
Saved in: -
General.Clip3A
First coefficient in equation for clipping plane 3
Default value: -1
Saved in: -
General.Clip3B
Second coefficient in equation for clipping plane 3
Default value: 0
Saved in: -
Appendix B: Options 177
General.Clip3C
Third coefficient in equation for clipping plane 3
Default value: 0
Saved in: -
General.Clip3D
Fourth coefficient in equation for clipping plane 3
Default value: 1
Saved in: -
General.Clip4A
First coefficient in equation for clipping plane 4
Default value: 0
Saved in: -
General.Clip4B
Second coefficient in equation for clipping plane 4
Default value: -1
Saved in: -
General.Clip4C
Third coefficient in equation for clipping plane 4
Default value: 0
Saved in: -
General.Clip4D
Fourth coefficient in equation for clipping plane 4
Default value: 1
Saved in: -
General.Clip5A
First coefficient in equation for clipping plane 5
Default value: 0
Saved in: -
General.Clip5B
Second coefficient in equation for clipping plane 5
Default value: 0
Saved in: -
General.Clip5C
Third coefficient in equation for clipping plane 5
Default value: -1
Saved in: -
General.Clip5D
Fourth coefficient in equation for clipping plane 5
Default value: 1
Saved in: -
General.ClipFactor
Near and far clipping plane distance factor (decrease value for better z-buffer reso-
lution)
Default value: 5
Saved in: -
178 Gmsh 4.7.1
General.ClipOnlyDrawIntersectingVolume
Only draw layer of elements that intersect the clipping plane
Default value: 0
Saved in: General.OptionsFileName
General.ClipOnlyVolume
Only clip volume elements
Default value: 0
Saved in: General.OptionsFileName
General.ClipPositionX
Horizontal position (in pixels) of the upper left corner of the clipping planes window
Default value: 650
Saved in: General.SessionFileName
General.ClipPositionY
Vertical position (in pixels) of the upper left corner of the clipping planes window
Default value: 150
Saved in: General.SessionFileName
General.ClipWholeElements
Clip whole elements
Default value: 0
Saved in: General.OptionsFileName
General.ColorScheme
Default color scheme for graphics (0: light, 1: default, 2: grayscale, 3: dark)
Default value: 1
Saved in: General.SessionFileName
General.ConfirmOverwrite
Ask confirmation before overwriting files?
Default value: 1
Saved in: General.OptionsFileName
General.ContextPositionX
Horizontal position (in pixels) of the upper left corner of the contextual windows
Default value: 650
Saved in: General.SessionFileName
General.ContextPositionY
Vertical position (in pixels) of the upper left corner of the contextual windows
Default value: 150
Saved in: General.SessionFileName
General.DetachedMenu
Should the menu window be detached from the graphic window?
Default value: 0
Saved in: General.SessionFileName
General.DisplayBorderFactor
Border factor for model display (0: model fits window size exactly)
Default value: 0.2
Saved in: General.OptionsFileName
General.DoubleBuffer
Use a double buffered graphic window (on Unix, should be set to 0 when working
on a remote host without GLX)
Appendix B: Options 179
Default value: 1
Saved in: General.OptionsFileName
General.DrawBoundingBoxes
Draw bounding boxes
Default value: 0
Saved in: General.OptionsFileName
General.ExpertMode
Enable expert mode (to disable all the messages meant for inexperienced users)
Default value: 0
Saved in: General.OptionsFileName
General.ExtraPositionX
Horizontal position (in pixels) of the upper left corner of the generic extra window
Default value: 650
Saved in: General.SessionFileName
General.ExtraPositionY
Vertical position (in pixels) of the upper left corner of the generic extra window
Default value: 350
Saved in: General.SessionFileName
General.ExtraHeight
Height (in pixels) of the generic extra window
Default value: 100
Saved in: General.SessionFileName
General.ExtraWidth
Width (in pixels) of the generic extra window
Default value: 100
Saved in: General.SessionFileName
General.FastRedraw
Draw simplified model while rotating, panning and zooming
Default value: 0
Saved in: General.OptionsFileName
General.FieldPositionX
Horizontal position (in pixels) of the upper left corner of the field window
Default value: 650
Saved in: General.SessionFileName
General.FieldPositionY
Vertical position (in pixels) of the upper left corner of the field window
Default value: 550
Saved in: General.SessionFileName
General.FieldHeight
Height (in pixels) of the field window
Default value: 320
Saved in: General.SessionFileName
General.FieldWidth
Width (in pixels) of the field window
Default value: 420
Saved in: General.SessionFileName
180 Gmsh 4.7.1
General.FileChooserPositionX
Horizontal position (in pixels) of the upper left corner of the file chooser windows
Default value: 200
Saved in: General.SessionFileName
General.FileChooserPositionY
Vertical position (in pixels) of the upper left corner of the file chooser windows
Default value: 200
Saved in: General.SessionFileName
General.FltkColorScheme
FLTK user interface color theme (0: standard, 1:dark)
Default value: 0
Saved in: General.SessionFileName
General.FltkRefreshRate
FLTK user interface maximum refresh rate, per second (0: no limit)
Default value: 5
Saved in: General.OptionsFileName
General.FontSize
Size of the font in the user interface, in pixels (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
General.GraphicsFontSize
Size of the font in the graphic window, in pixels
Default value: 15
Saved in: General.OptionsFileName
General.GraphicsFontSizeTitle
Size of the font in the graphic window for titles, in pixels
Default value: 18
Saved in: General.OptionsFileName
General.GraphicsHeight
Height (in pixels) of the graphic window
Default value: 600
Saved in: General.SessionFileName
General.GraphicsPositionX
Horizontal position (in pixels) of the upper left corner of the graphic window
Default value: 50
Saved in: General.SessionFileName
General.GraphicsPositionY
Vertical position (in pixels) of the upper left corner of the graphic window
Default value: 50
Saved in: General.SessionFileName
General.GraphicsWidth
Width (in pixels) of the graphic window
Default value: 800
Saved in: General.SessionFileName
General.HighOrderToolsPositionX
Horizontal position (in pixels) of the upper left corner of the high-order tools window
Default value: 650
Saved in: General.SessionFileName
Appendix B: Options 181
General.HighOrderToolsPositionY
Vertical position (in pixels) of the upper left corner of the high-order tools window
Default value: 150
Saved in: General.SessionFileName
General.HighResolutionGraphics
Use high-resolution OpenGL graphics (e.g. for Macs with retina displays)
Default value: 1
Saved in: General.OptionsFileName
General.HighResolutionPointSizeFactor
Point size factor when using high-resolution OpenGL graphics
Default value: 2
Saved in: General.OptionsFileName
General.InitialModule
Module launched on startup (0: automatic, 1: geometry, 2: mesh, 3: solver, 4:
post-processing)
Default value: 0
Saved in: General.OptionsFileName
General.InputScrolling
Enable numerical input scrolling in user interface (moving the mouse to change
numbers)
Default value: 1
Saved in: General.OptionsFileName
General.Light0
Enable light source 0
Default value: 1
Saved in: General.OptionsFileName
General.Light0X
X position of light source 0
Default value: 0.65
Saved in: General.OptionsFileName
General.Light0Y
Y position of light source 0
Default value: 0.65
Saved in: General.OptionsFileName
General.Light0Z
Z position of light source 0
Default value: 1
Saved in: General.OptionsFileName
General.Light0W
Divisor of the X, Y and Z coordinates of light source 0 (W=0 means infinitely far
source)
Default value: 0
Saved in: General.OptionsFileName
General.Light1
Enable light source 1
Default value: 0
Saved in: General.OptionsFileName
182 Gmsh 4.7.1
General.Light1X
X position of light source 1
Default value: 0.5
Saved in: General.OptionsFileName
General.Light1Y
Y position of light source 1
Default value: 0.3
Saved in: General.OptionsFileName
General.Light1Z
Z position of light source 1
Default value: 1
Saved in: General.OptionsFileName
General.Light1W
Divisor of the X, Y and Z coordinates of light source 1 (W=0 means infinitely far
source)
Default value: 0
Saved in: General.OptionsFileName
General.Light2
Enable light source 2
Default value: 0
Saved in: General.OptionsFileName
General.Light2X
X position of light source 2
Default value: 0.5
Saved in: General.OptionsFileName
General.Light2Y
Y position of light source 2
Default value: 0.3
Saved in: General.OptionsFileName
General.Light2Z
Z position of light source 2
Default value: 1
Saved in: General.OptionsFileName
General.Light2W
Divisor of the X, Y and Z coordinates of light source 2 (W=0 means infinitely far
source)
Default value: 0
Saved in: General.OptionsFileName
General.Light3
Enable light source 3
Default value: 0
Saved in: General.OptionsFileName
General.Light3X
X position of light source 3
Default value: 0.5
Saved in: General.OptionsFileName
Appendix B: Options 183
General.Light3Y
Y position of light source 3
Default value: 0.3
Saved in: General.OptionsFileName
General.Light3Z
Z position of light source 3
Default value: 1
Saved in: General.OptionsFileName
General.Light3W
Divisor of the X, Y and Z coordinates of light source 3 (W=0 means infinitely far
source)
Default value: 0
Saved in: General.OptionsFileName
General.Light4
Enable light source 4
Default value: 0
Saved in: General.OptionsFileName
General.Light4X
X position of light source 4
Default value: 0.5
Saved in: General.OptionsFileName
General.Light4Y
Y position of light source 4
Default value: 0.3
Saved in: General.OptionsFileName
General.Light4Z
Z position of light source 4
Default value: 1
Saved in: General.OptionsFileName
General.Light4W
Divisor of the X, Y and Z coordinates of light source 4 (W=0 means infinitely far
source)
Default value: 0
Saved in: General.OptionsFileName
General.Light5
Enable light source 5
Default value: 0
Saved in: General.OptionsFileName
General.Light5X
X position of light source 5
Default value: 0.5
Saved in: General.OptionsFileName
General.Light5Y
Y position of light source 5
Default value: 0.3
Saved in: General.OptionsFileName
184 Gmsh 4.7.1
General.Light5Z
Z position of light source 5
Default value: 1
Saved in: General.OptionsFileName
General.Light5W
Divisor of the X, Y and Z coordinates of light source 5 (W=0 means infinitely far
source)
Default value: 0
Saved in: General.OptionsFileName
General.LineWidth
Display width of lines (in pixels)
Default value: 1
Saved in: General.OptionsFileName
General.ManipulatorPositionX
Horizontal position (in pixels) of the upper left corner of the manipulator window
Default value: 650
Saved in: General.SessionFileName
General.ManipulatorPositionY
Vertical position (in pixels) of the upper left corner of the manipulator window
Default value: 150
Saved in: General.SessionFileName
General.MaxX
Maximum model coordinate along the X-axis (read-only)
Default value: 0
Saved in: -
General.MaxY
Maximum model coordinate along the Y-axis (read-only)
Default value: 0
Saved in: -
General.MaxZ
Maximum model coordinate along the Z-axis (read-only)
Default value: 0
Saved in: -
General.MenuWidth
Width (in pixels) of the menu tree
Default value: 200
Saved in: General.SessionFileName
General.MenuHeight
Height (in pixels) of the (detached) menu tree
Default value: 200
Saved in: General.SessionFileName
General.MenuPositionX
Horizontal position (in pixels) of the (detached) menu tree
Default value: 400
Saved in: General.SessionFileName
Appendix B: Options 185
General.MenuPositionY
Vertical position (in pixels) of the (detached) menu tree
Default value: 400
Saved in: General.SessionFileName
General.MessageFontSize
Size of the font in the message window, in pixels (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
General.MessageHeight
Height (in pixels) of the message console when it is visible (should be > 0)
Default value: 300
Saved in: General.SessionFileName
General.MinX
Minimum model coordinate along the X-axis (read-only)
Default value: 0
Saved in: -
General.MinY
Minimum model coordinate along the Y-axis (read-only)
Default value: 0
Saved in: -
General.MinZ
Minimum model coordinate along the Z-axis (read-only)
Default value: 0
Saved in: -
General.MouseHoverMeshes
Enable mouse hover on meshes
Default value: 0
Saved in: General.OptionsFileName
General.MouseSelection
Enable mouse selection
Default value: 1
Saved in: General.OptionsFileName
General.MouseInvertZoom
Invert mouse wheel zoom direction
Default value: 0
Saved in: General.OptionsFileName
General.NativeFileChooser
Use the native file chooser?
Default value: 1
Saved in: General.SessionFileName
General.NonModalWindows
Force all control windows to be on top of the graphic window ("non-modal")
Default value: 1
Saved in: General.SessionFileName
General.NoPopup
Disable interactive dialog windows in scripts (and use default values instead)
Default value: 0
Saved in: General.OptionsFileName
186 Gmsh 4.7.1
General.NumThreads
Set (maximum) number of threads (0: use system default, i.e.
OMP NUM THREADS)
Default value: 1
Saved in: General.OptionsFileName
General.OptionsPositionX
Horizontal position (in pixels) of the upper left corner of the option window
Default value: 650
Saved in: General.SessionFileName
General.OptionsPositionY
Vertical position (in pixels) of the upper left corner of the option window
Default value: 150
Saved in: General.SessionFileName
General.Orthographic
Orthographic projection mode (0: perspective projection)
Default value: 1
Saved in: General.OptionsFileName
General.PluginPositionX
Horizontal position (in pixels) of the upper left corner of the plugin window
Default value: 650
Saved in: General.SessionFileName
General.PluginPositionY
Vertical position (in pixels) of the upper left corner of the plugin window
Default value: 550
Saved in: General.SessionFileName
General.PluginHeight
Height (in pixels) of the plugin window
Default value: 320
Saved in: General.SessionFileName
General.PluginWidth
Width (in pixels) of the plugin window
Default value: 420
Saved in: General.SessionFileName
General.PointSize
Display size of points (in pixels)
Default value: 3
Saved in: General.OptionsFileName
General.PolygonOffsetAlwaysOn
Always apply polygon offset, instead of trying to detect when it is required
Default value: 0
Saved in: General.OptionsFileName
General.PolygonOffsetFactor
Polygon offset factor (offset = factor * DZ + r * units)
Default value: 0.5
Saved in: General.OptionsFileName
Appendix B: Options 187
General.PolygonOffsetUnits
Polygon offset units (offset = factor * DZ + r * units)
Default value: 1
Saved in: General.OptionsFileName
General.ProgressMeterStep
Increment (in percent) of the progress meter bar
Default value: 10
Saved in: General.OptionsFileName
General.QuadricSubdivisions
Number of subdivisions used to draw points or lines as spheres or cylinders
Default value: 6
Saved in: General.OptionsFileName
General.RotationX
First Euler angle (used if Trackball=0)
Default value: 0
Saved in: -
General.RotationY
Second Euler angle (used if Trackball=0)
Default value: 0
Saved in: -
General.RotationZ
Third Euler angle (used if Trackball=0)
Default value: 0
Saved in: -
General.RotationCenterGravity
Rotate around the (pseudo) center of mass instead of (RotationCenterX, Rotation-
CenterY, RotationCenterZ)
Default value: 1
Saved in: General.OptionsFileName
General.RotationCenterX
X coordinate of the center of rotation
Default value: 0
Saved in: -
General.RotationCenterY
Y coordinate of the center of rotation
Default value: 0
Saved in: -
General.RotationCenterZ
Z coordinate of the center of rotation
Default value: 0
Saved in: -
General.SaveOptions
Automatically save current options in General.OptionsFileName (1) or per model
(2)each time you quit Gmsh?
Default value: 0
Saved in: General.SessionFileName
188 Gmsh 4.7.1
General.SaveSession
Automatically save session specific information in General.SessionFileName each
time you quit Gmsh?
Default value: 1
Saved in: General.SessionFileName
General.ScaleX
X-axis scale factor
Default value: 1
Saved in: -
General.ScaleY
Y-axis scale factor
Default value: 1
Saved in: -
General.ScaleZ
Z-axis scale factor
Default value: 1
Saved in: -
General.Shininess
Material shininess
Default value: 0.4
Saved in: General.OptionsFileName
General.ShininessExponent
Material shininess exponent (between 0 and 128)
Default value: 40
Saved in: General.OptionsFileName
General.ShowModuleMenu
Show the standard Gmsh menu in the tree
Default value: 1
Saved in: General.OptionsFileName
General.ShowOptionsOnStartup
Show option window on startup
Default value: 0
Saved in: General.OptionsFileName
General.ShowMessagesOnStartup
Show message window on startup
Default value: 0
Saved in: General.OptionsFileName
General.SmallAxes
Display the small axes
Default value: 1
Saved in: General.OptionsFileName
General.SmallAxesPositionX
X position (in pixels) of small axes (< 0: measure from right window edge; >= 1e5:
centered)
Default value: -60
Saved in: General.OptionsFileName
Appendix B: Options 189
General.SmallAxesPositionY
Y position (in pixels) of small axes (< 0: measure from bottom window edge; >=
1e5: centered)
Default value: -40
Saved in: General.OptionsFileName
General.SmallAxesSize
Size (in pixels) of small axes
Default value: 30
Saved in: General.OptionsFileName
General.StatisticsPositionX
Horizontal position (in pixels) of the upper left corner of the statistic window
Default value: 650
Saved in: General.SessionFileName
General.StatisticsPositionY
Vertical position (in pixels) of the upper left corner of the statistic window
Default value: 150
Saved in: General.SessionFileName
General.Stereo
Use stereo rendering
Default value: 0
Saved in: General.OptionsFileName
General.SystemMenuBar
Use the system menu bar on Mac OS X?
Default value: 1
Saved in: General.SessionFileName
General.Terminal
Should information be printed on the terminal (if available)?
Default value: 0
Saved in: General.OptionsFileName
General.Tooltips
Show tooltips in the user interface
Default value: 1
Saved in: General.OptionsFileName
General.Trackball
Use trackball rotation mode
Default value: 1
Saved in: General.OptionsFileName
General.TrackballHyperbolicSheet
Use hyperbolic sheet away from trackball center for z-rotations
Default value: 1
Saved in: General.OptionsFileName
General.TrackballQuaternion0
First trackball quaternion component (used if General.Trackball=1)
Default value: 0
Saved in: -
190 Gmsh 4.7.1
General.TrackballQuaternion1
Second trackball quaternion component (used if General.Trackball=1)
Default value: 0
Saved in: -
General.TrackballQuaternion2
Third trackball quaternion component (used if General.Trackball=1)
Default value: 0
Saved in: -
General.TrackballQuaternion3
Fourth trackball quaternion component (used if General.Trackball=1)
Default value: 1
Saved in: -
General.TranslationX
X-axis translation (in model units)
Default value: 0
Saved in: -
General.TranslationY
Y-axis translation (in model units)
Default value: 0
Saved in: -
General.TranslationZ
Z-axis translation (in model units)
Default value: 0
Saved in: -
General.VectorType
Default vector display type (for normals, etc.)
Default value: 4
Saved in: General.OptionsFileName
General.Verbosity
Level of information printed during processing (0: no information)
Default value: 5
Saved in: General.OptionsFileName
General.VisibilityPositionX
Horizontal position (in pixels) of the upper left corner of the visibility window
Default value: 650
Saved in: General.SessionFileName
General.VisibilityPositionY
Vertical position (in pixels) of the upper left corner of the visibility window
Default value: 150
Saved in: General.SessionFileName
General.ZoomFactor
Middle mouse button zoom acceleration factor
Default value: 4
Saved in: General.OptionsFileName
General.Color.Background
Background color
Default value: {255,255,255}
Saved in: General.OptionsFileName
Appendix B: Options 191
General.Color.BackgroundGradient
Background gradient color
Default value: {208,215,255}
Saved in: General.OptionsFileName
General.Color.Foreground
Foreground color
Default value: {85,85,85}
Saved in: General.OptionsFileName
General.Color.Text
Text color
Default value: {0,0,0}
Saved in: General.OptionsFileName
General.Color.Axes
Axes color
Default value: {0,0,0}
Saved in: General.OptionsFileName
General.Color.SmallAxes
Small axes color
Default value: {0,0,0}
Saved in: General.OptionsFileName
General.Color.AmbientLight
Ambient light color
Default value: {25,25,25}
Saved in: General.OptionsFileName
General.Color.DiffuseLight
Diffuse light color
Default value: {255,255,255}
Saved in: General.OptionsFileName
General.Color.SpecularLight
Specular light color
Default value: {255,255,255}
Saved in: General.OptionsFileName
Print.ParameterCommand
Command parsed when the print parameter is changed
Default value: "Mesh.Clip=1; View.Clip=1; General.ClipWholeElements=1;
General.Clip0D=Print.Parameter; SetChanged;"
Saved in: General.OptionsFileName
Print.Parameter
Current value of the print parameter
Default value: 0
Saved in: General.OptionsFileName
Print.ParameterFirst
First value of print parameter in loop
Default value: -1
Saved in: General.OptionsFileName
192 Gmsh 4.7.1
Print.ParameterLast
Last value of print parameter in loop
Default value: 1
Saved in: General.OptionsFileName
Print.ParameterSteps
Number of steps in loop over print parameter
Default value: 10
Saved in: General.OptionsFileName
Print.Background
Print background (gradient and image)?
Default value: 0
Saved in: General.OptionsFileName
Print.CompositeWindows
Composite all window tiles in the same output image (for bitmap output only)
Default value: 0
Saved in: General.OptionsFileName
Print.DeleteTemporaryFiles
Delete temporary files used during printing
Default value: 1
Saved in: General.OptionsFileName
Print.EpsBestRoot
Try to minimize primitive splitting in BSP tree sorted PostScript/PDF output
Default value: 1
Saved in: General.OptionsFileName
Print.EpsCompress
Compress PostScript/PDF output using zlib
Default value: 0
Saved in: General.OptionsFileName
Print.EpsLineWidthFactor
Width factor for lines in PostScript/PDF output
Default value: 1
Saved in: General.OptionsFileName
Print.EpsOcclusionCulling
Cull occluded primitives (to reduce PostScript/PDF file size)
Default value: 1
Saved in: General.OptionsFileName
Print.EpsPointSizeFactor
Size factor for points in PostScript/PDF output
Default value: 1
Saved in: General.OptionsFileName
Print.EpsPS3Shading
Enable PostScript Level 3 shading
Default value: 0
Saved in: General.OptionsFileName
Print.EpsQuality
PostScript/PDF quality (0: bitmap, 1: vector (simple sort), 2: vector (accurate
sort), 3: vector (unsorted)
Appendix B: Options 193
Default value: 1
Saved in: General.OptionsFileName
Print.Format
File format (10: automatic)
Default value: 10
Saved in: General.OptionsFileName
Print.GeoLabels
Save labels in unrolled Gmsh geometries
Default value: 1
Saved in: General.OptionsFileName
Print.GeoOnlyPhysicals
Only save entities that belong to physical groups
Default value: 0
Saved in: General.OptionsFileName
Print.GifDither
Apply dithering to GIF output
Default value: 0
Saved in: General.OptionsFileName
Print.GifInterlace
Interlace GIF output
Default value: 0
Saved in: General.OptionsFileName
Print.GifSort
Sort the colormap in GIF output
Default value: 1
Saved in: General.OptionsFileName
Print.GifTransparent
Output transparent GIF image
Default value: 0
Saved in: General.OptionsFileName
Print.Height
Height of printed image; use (possibly scaled) current height if < 0
Default value: -1
Saved in: General.OptionsFileName
Print.JpegQuality
JPEG quality (between 1 and 100)
Default value: 100
Saved in: General.OptionsFileName
Print.JpegSmoothing
JPEG smoothing (between 0 and 100)
Default value: 0
Saved in: General.OptionsFileName
Print.PgfTwoDim
Output PGF format for two dimensions. Mostly irrelevant if ‘PgfExportAxis=0‘.
Default ‘1‘ (yes).
Default value: 1
Saved in: General.OptionsFileName
194 Gmsh 4.7.1
Print.PgfExportAxis
Include axis in export pgf code (not in the png). Default ‘0‘ (no).
Default value: 0
Saved in: General.OptionsFileName
Print.PgfHorizontalBar
Use a horizontal color bar in the pgf output. Default ‘0‘ (no).
Default value: 0
Saved in: General.OptionsFileName
Print.PostElementary
Save elementary region tags in mesh statistics exported as post-processing views
Default value: 1
Saved in: General.OptionsFileName
Print.PostElement
Save element tags in mesh statistics exported as post-processing views
Default value: 0
Saved in: General.OptionsFileName
Print.PostGamma
Save Gamma quality measure in mesh statistics exported as post-processing views
Default value: 0
Saved in: General.OptionsFileName
Print.PostEta
Save Eta quality measure in mesh statistics exported as post-processing views
Default value: 0
Saved in: General.OptionsFileName
Print.PostSICN
Save SICN (signed inverse condition number) quality measure in mesh statistics
exported as post-processing views
Default value: 0
Saved in: General.OptionsFileName
Print.PostSIGE
Save SIGE (signed inverse gradient error) quality measure in mesh statistics ex-
ported as post-processing views
Default value: 0
Saved in: General.OptionsFileName
Print.PostDisto
Save Disto quality measure in mesh statistics exported as post-processing views
Default value: 0
Saved in: General.OptionsFileName
Print.TexAsEquation
Print all TeX strings as equations
Default value: 0
Saved in: General.OptionsFileName
Print.TexForceFontSize
Force font size of TeX strings to fontsize in the graphic window
Default value: 0
Saved in: General.OptionsFileName
Appendix B: Options 195
Print.TexWidthInMm
Width of tex graphics in mm (use 0 for the natural width inferred from the image
width in pixels)
Default value: 150
Saved in: General.OptionsFileName
Print.Text
Print text strings?
Default value: 1
Saved in: General.OptionsFileName
Print.X3dCompatibility
Produce highly compatible X3D output (no scale bar)
Default value: 0
Saved in: General.OptionsFileName
Print.X3dPrecision
Precision of X3D output
Default value: 1e-09
Saved in: General.OptionsFileName
Print.X3dRemoveInnerBorders
Remove inner borders in X3D output
Default value: 0
Saved in: General.OptionsFileName
Print.X3dTransparency
Transparency for X3D output
Default value: 0
Saved in: General.OptionsFileName
Print.X3dSurfaces
Save surfaces in CAD X3D output (0: no, 1: yes in a single X3D object,2: one X3D
object per geometrical surface, 3: one X3D object perphysical surface)
Default value: 1
Saved in: General.OptionsFileName
Print.X3dEdges
Save edges in CAD X3D output (0: no, 1: yes in a single X3D object,2: one X3D
object per geometrical edge, 3: one X3D object perphysical edge)
Default value: 0
Saved in: General.OptionsFileName
Print.X3dVertices
Save vertices in CAD X3D output (0: no, 1: yes)
Default value: 0
Saved in: General.OptionsFileName
Print.Width
Width of printed image; use (possibly scaled) current width if < 0)
Default value: -1
Saved in: General.OptionsFileName
196 Gmsh 4.7.1
Geometry.CurveSelectWidth
Display width of selected curves (in pixels)
Default value: 3
Saved in: General.OptionsFileName
Geometry.CurveType
Display curves as solid color segments (0), 3D cylinders (1) or tapered cylinders (2)
Default value: 0
Saved in: General.OptionsFileName
Geometry.CurveWidth
Display width of lines (in pixels)
Default value: 2
Saved in: General.OptionsFileName
Geometry.DoubleClickedEntityTag
Tag of last double-clicked geometrical entity
Default value: 0
Saved in: -
Geometry.ExactExtrusion
Use exact extrusion formula in interpolations (set to 0 to allow geometrical trans-
formations of extruded entities)
Default value: 1
Saved in: General.OptionsFileName
Geometry.ExtrudeReturnLateralEntities
Add lateral entities in lists returned by extrusion commands?
Default value: 1
Saved in: General.OptionsFileName
Geometry.ExtrudeSplinePoints
Number of control points for splines created during extrusion
Default value: 5
Saved in: General.OptionsFileName
Geometry.HighlightOrphans
Highlight orphan entities (lines connected to a single surface, etc.)?
Default value: 0
Saved in: General.OptionsFileName
Geometry.LabelType
Type of entity label (0: description, 1: elementary entity tag, 2: physical group tag)
Default value: 0
Saved in: General.OptionsFileName
Geometry.Light
Enable lighting for the geometry
Default value: 1
Saved in: General.OptionsFileName
Geometry.LightTwoSide
Light both sides of surfaces (leads to slower rendering)
Default value: 1
Saved in: General.OptionsFileName
198 Gmsh 4.7.1
Geometry.MatchGeomAndMesh
Matches geometries and meshes
Default value: 0
Saved in: General.OptionsFileName
Geometry.MatchMeshScaleFactor
Rescaling factor for the mesh to correspond to size of the geometry
Default value: 1
Saved in: General.OptionsFileName
Geometry.MatchMeshTolerance
Tolerance for matching mesh and geometry
Default value: 1e-06
Saved in: General.OptionsFileName
Geometry.Normals
Display size of normal vectors (in pixels)
Default value: 0
Saved in: General.OptionsFileName
Geometry.NumSubEdges
Number of edge subdivisions between control points when displaying curves
Default value: 40
Saved in: General.OptionsFileName
Geometry.OCCAutoFix
Automatically fix orientation of wires, faces, shells and volumes when creating new
entities with the OpenCASCADE kernel
Default value: 1
Saved in: General.OptionsFileName
Geometry.OCCBooleanPreserveNumbering
Try to preserve the numbering of entities through OpenCASCADE boolean opera-
tions
Default value: 1
Saved in: General.OptionsFileName
Geometry.OCCBoundsUseStl
Use STL mesh for computing bounds of OpenCASCADE shapes (more accurate,
but slower)
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCDisableStl
Disable STL creation in OpenCASCADE kernel
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCFixDegenerated
Fix degenerated edges/faces when importing STEP, IGES and BRep models with
the OpenCASCADE kernel
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCFixSmallEdges
Fix small edges when importing STEP, IGES and BRep models with the OpenCAS-
CADE kernel
Appendix B: Options 199
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCFixSmallFaces
Fix small faces when importing STEP, IGES and BRep models with the OpenCAS-
CADE kernel
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCImportLabels
Import labels and colors when importing STEP models with the OpenCASCADE
kernel
Default value: 1
Saved in: General.OptionsFileName
Geometry.OCCMakeSolids
Fix shells and make solids when importing STEP, IGES and BRep models with the
OpenCASCADE kernel
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCParallel
Use multi-threaded OpenCASCADE boolean operators
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCScaling
Scale STEP, IGES and BRep models by the given factor when importing them with
the OpenCASCADE kernel
Default value: 1
Saved in: General.OptionsFileName
Geometry.OCCSewFaces
Sew faces when importing STEP, IGES and BRep models with the OpenCASCADE
kernel
Default value: 0
Saved in: General.OptionsFileName
Geometry.OCCThruSectionsDegree
Maximum degree of surfaces generated by thrusections with the OpenCASCADE
kernel, if not explicitely specified (default OCC value if negative)
Default value: -1
Saved in: General.OptionsFileName
Geometry.OCCUnionUnify
Try to unify faces and edges (remove internal seams) which lie on the same geometry
after performing a boolean union with the OpenCASCADE kernel
Default value: 1
Saved in: General.OptionsFileName
Geometry.OffsetX
Model display offset along X-axis (in model coordinates)
Default value: 0
Saved in: -
200 Gmsh 4.7.1
Geometry.OffsetY
Model display offset along Y-axis (in model coordinates)
Default value: 0
Saved in: -
Geometry.OffsetZ
Model display offset along Z-axis (in model coordinates)
Default value: 0
Saved in: -
Geometry.OldCircle
Use old circle description (compatibility option for old Gmsh geometries)
Default value: 0
Saved in: General.OptionsFileName
Geometry.OldRuledSurface
Use old 3-sided ruled surface interpolation (compatibility option for old Gmsh ge-
ometries)
Default value: 0
Saved in: General.OptionsFileName
Geometry.OldNewReg
Use old newreg definition for geometrical transformations (compatibility option for
old Gmsh geometries)
Default value: 1
Saved in: General.OptionsFileName
Geometry.Points
Display geometry points?
Default value: 1
Saved in: General.OptionsFileName
Geometry.PointNumbers
Display points labels?
Default value: 0
Saved in: General.OptionsFileName
Geometry.PointSelectSize
Display size of selected points (in pixels)
Default value: 6
Saved in: General.OptionsFileName
Geometry.PointSize
Display size of points (in pixels)
Default value: 4
Saved in: General.OptionsFileName
Geometry.PointType
Display points as solid color dots (0) or 3D spheres (1)
Default value: 0
Saved in: General.OptionsFileName
Geometry.ReparamOnFaceRobust
Use projection for reparametrization of a point classified on GEdge on a GFace
Default value: 0
Saved in: General.OptionsFileName
Appendix B: Options 201
Geometry.ScalingFactor
Global geometry scaling factor
Default value: 1
Saved in: General.OptionsFileName
Geometry.OrientedPhysicals
Use sign of elementary entity in physical definition as orientation indicator
Default value: 1
Saved in: General.OptionsFileName
Geometry.SnapX
Snapping grid spacing along the X-axis
Default value: 0.1
Saved in: General.OptionsFileName
Geometry.SnapY
Snapping grid spacing along the Y-axis
Default value: 0.1
Saved in: General.OptionsFileName
Geometry.SnapZ
Snapping grid spacing along the Z-axis
Default value: 0.1
Saved in: General.OptionsFileName
Geometry.Surfaces
Display geometry surfaces?
Default value: 0
Saved in: General.OptionsFileName
Geometry.SurfaceNumbers
Display surface labels?
Default value: 0
Saved in: General.OptionsFileName
Geometry.SurfaceType
Surface display type (0: cross, 1: wireframe, 2: solid). Wireframe and solid are not
available with the built-in geometry kernel.
Default value: 0
Saved in: General.OptionsFileName
Geometry.Tangents
Display size of tangent vectors (in pixels)
Default value: 0
Saved in: General.OptionsFileName
Geometry.Tolerance
Geometrical tolerance
Default value: 1e-08
Saved in: General.OptionsFileName
Geometry.ToleranceBoolean
Geometrical tolerance for boolean operations
Default value: 0
Saved in: General.OptionsFileName
202 Gmsh 4.7.1
Geometry.Transform
Transform model display coordinates (0: no, 1: scale)
Default value: 0
Saved in: -
Geometry.TransformXX
Element (1,1) of the 3x3 model display transformation matrix
Default value: 1
Saved in: -
Geometry.TransformXY
Element (1,2) of the 3x3 model display transformation matrix
Default value: 0
Saved in: -
Geometry.TransformXZ
Element (1,3) of the 3x3 model display transformation matrix
Default value: 0
Saved in: -
Geometry.TransformYX
Element (2,1) of the 3x3 model display transformation matrix
Default value: 0
Saved in: -
Geometry.TransformYY
Element (2,2) of the 3x3 model display transformation matrix
Default value: 1
Saved in: -
Geometry.TransformYZ
Element (2,3) of the 3x3 model display transformation matrix
Default value: 0
Saved in: -
Geometry.TransformZX
Element (3,1) of the 3x3 model display transformation matrix
Default value: 0
Saved in: -
Geometry.TransformZY
Element (3,2) of the 3x3 model display transformation matrix
Default value: 0
Saved in: -
Geometry.TransformZZ
Element (3,3) of the 3x3 model display transformation matrix
Default value: 1
Saved in: -
Geometry.Volumes
Display geometry volumes?
Default value: 0
Saved in: General.OptionsFileName
Geometry.VolumeNumbers
Display volume labels?
Default value: 0
Saved in: General.OptionsFileName
Appendix B: Options 203
Geometry.Color.Points
Normal geometry point color
Default value: {90,90,90}
Saved in: General.OptionsFileName
Geometry.Color.Curves
Normal geometry curve color
Default value: {0,0,255}
Saved in: General.OptionsFileName
Geometry.Color.Surfaces
Normal geometry surface color
Default value: {128,128,128}
Saved in: General.OptionsFileName
Geometry.Color.Volumes
Normal geometry volume color
Default value: {255,255,0}
Saved in: General.OptionsFileName
Geometry.Color.Selection
Selected geometry color
Default value: {255,0,0}
Saved in: General.OptionsFileName
Geometry.Color.HighlightZero
Highlight 0 color
Default value: {255,0,0}
Saved in: General.OptionsFileName
Geometry.Color.HighlightOne
Highlight 1 color
Default value: {255,150,0}
Saved in: General.OptionsFileName
Geometry.Color.HighlightTwo
Highlight 2 color
Default value: {255,255,0}
Saved in: General.OptionsFileName
Geometry.Color.Tangents
Tangent geometry vectors color
Default value: {255,255,0}
Saved in: General.OptionsFileName
Geometry.Color.Normals
Normal geometry vectors color
Default value: {255,0,0}
Saved in: General.OptionsFileName
Geometry.Color.Projection
Projection surface color
Default value: {0,255,0}
Saved in: General.OptionsFileName
204 Gmsh 4.7.1
Mesh.CgnsImportOrder
Order of the mesh to be created by coarsening CGNS structured zones (1 to 4)
Default value: 1
Saved in: General.OptionsFileName
Mesh.CgnsImportIgnoreBC
Ignore information in ZoneBC structures when reading a CGNS file
Default value: 0
Saved in: General.OptionsFileName
Mesh.CgnsImportIgnoreSolution
Ignore solution when reading a CGNS file
Default value: 0
Saved in: General.OptionsFileName
Mesh.CgnsConstructTopology
Reconstruct the model topology (BREP) after reading a CGNS file
Default value: 0
Saved in: General.OptionsFileName
Mesh.CgnsExportCPEX0045
Use the CPEX0045 convention when exporting a high-order mesh to CGNS
Default value: 0
Saved in: General.OptionsFileName
Mesh.CgnsExportStructured
Export transfinite meshes as structured CGNS grids
Default value: 0
Saved in: General.OptionsFileName
Mesh.Clip
Enable clipping planes? (Plane[i]=2^i, i=0,...,5)
Default value: 0
Saved in: -
Mesh.ColorCarousel
Mesh coloring (0: by element type, 1: by elementary entity, 2: by physical group,
3: by mesh partition)
Default value: 1
Saved in: General.OptionsFileName
Mesh.CompoundClassify
How are surface mesh elements classified on compounds? (0: on the new discrete
surface, 1: on the original geometrical surfaces - incompatible with e.g. high-order
meshing)
Default value: 1
Saved in: General.OptionsFileName
Mesh.CompoundMeshSizeFactor
Mesh size factor applied to compound parts
Default value: 0.5
Saved in: General.OptionsFileName
Mesh.CpuTime
CPU time (in seconds) for the generation of the current mesh (read-only)
Default value: 0
Saved in: -
206 Gmsh 4.7.1
Mesh.DrawSkinOnly
Draw only the skin of 3D meshes?
Default value: 0
Saved in: General.OptionsFileName
Mesh.Dual
Display the dual mesh obtained by barycentric subdivision
Default value: 0
Saved in: General.OptionsFileName
Mesh.ElementOrder
Element order (1: first order elements)
Default value: 1
Saved in: General.OptionsFileName
Mesh.Explode
Element shrinking factor (between 0 and 1)
Default value: 1
Saved in: General.OptionsFileName
Mesh.FirstElementTag
First tag (>= 1) of mesh elements
Default value: 1
Saved in: General.OptionsFileName
Mesh.FirstNodeTag
First tag (>= 1) of mesh nodes
Default value: 1
Saved in: General.OptionsFileName
Mesh.FlexibleTransfinite
Allow transfinite constraints to be modified for recombination (e.g. Blossom) or by
global mesh size factor
Default value: 0
Saved in: General.OptionsFileName
Mesh.Format
Mesh output format (1: msh, 2: unv, 10: auto, 16: vtk, 19: vrml, 21: mail, 26: pos
stat, 27: stl, 28: p3d, 30: mesh, 31: bdf, 32: cgns, 33: med, 34: diff, 38: ir3, 39:
inp, 40: ply2, 41: celum, 42: su2, 47: tochnog, 49: neu, 50: matlab)
Default value: 10
Saved in: General.OptionsFileName
Mesh.Hexahedra
Display mesh hexahedra?
Default value: 1
Saved in: General.OptionsFileName
Mesh.HighOrderDistCAD
Try to optimize distance to CAD in high-order optimizer?
Default value: 0
Saved in: General.OptionsFileName
Mesh.HighOrderIterMax
Maximum number of iterations in high-order optimization pass
Default value: 100
Saved in: General.OptionsFileName
Appendix B: Options 207
Mesh.HighOrderNumLayers
Number of layers around a problematic element to consider for high-order optimiza-
tion
Default value: 6
Saved in: General.OptionsFileName
Mesh.HighOrderOptimize
Optimize high-order meshes? (0: none, 1: optimization, 2: elastic+optimization, 3:
elastic, 4: fast curving)
Default value: 0
Saved in: General.OptionsFileName
Mesh.HighOrderPassMax
Maximum number of high-order optimization passes (moving barrier)
Default value: 25
Saved in: General.OptionsFileName
Mesh.HighOrderPeriodic
Force location of nodes for periodic meshes using periodicity transform (0: assume
identical parametrisations, 1: invert parametrisations, 2: compute closest point
Default value: 0
Saved in: General.OptionsFileName
Mesh.HighOrderPoissonRatio
Poisson ratio of the material used in the elastic smoother for high-order meshes
(between -1.0 and 0.5, excluded)
Default value: 0.33
Saved in: General.OptionsFileName
Mesh.HighOrderSavePeriodic
Save high-order nodes in periodic section of MSH files?
Default value: 0
Saved in: General.OptionsFileName
Mesh.HighOrderPrimSurfMesh
Try to fix flipped surface mesh elements in high-order optimizer?
Default value: 0
Saved in: General.OptionsFileName
Mesh.HighOrderThresholdMin
Minimum threshold for high-order element optimization
Default value: 0.1
Saved in: General.OptionsFileName
Mesh.HighOrderThresholdMax
Maximum threshold for high-order element optimization
Default value: 2
Saved in: General.OptionsFileName
Mesh.LabelSampling
Label sampling rate (display one label every ‘LabelSampling’ elements)
Default value: 1
Saved in: General.OptionsFileName
Mesh.LabelType
Type of element label (0: node/element tag, 1: elementary entity tag, 2: physical
entity tag, 3: partition, 4: coordinates)
208 Gmsh 4.7.1
Default value: 0
Saved in: General.OptionsFileName
Mesh.LcIntegrationPrecision
Accuracy of evaluation of the LC field for 1D mesh generation
Default value: 1e-09
Saved in: General.OptionsFileName
Mesh.Light
Enable lighting for the mesh
Default value: 1
Saved in: General.OptionsFileName
Mesh.LightLines
Enable lighting for mesh edges (0: no, 1: surfaces, 2: surfaces+volumes
Default value: 2
Saved in: General.OptionsFileName
Mesh.LightTwoSide
Light both sides of surfaces (leads to slower rendering)
Default value: 1
Saved in: General.OptionsFileName
Mesh.Lines
Display mesh lines (1D elements)?
Default value: 0
Saved in: General.OptionsFileName
Mesh.LineNumbers
Display mesh line labels?
Default value: 0
Saved in: General.OptionsFileName
Mesh.LineWidth
Display width of mesh lines (in pixels)
Default value: 1
Saved in: General.OptionsFileName
Mesh.MaxIterDelaunay3D
Maximum number of point insertion iterations in 3D Delaunay mesher (0: unlim-
ited)
Default value: 0
Saved in: General.OptionsFileName
Mesh.MaxNumThreads1D
Maximum number of threads for 1D meshing (0: use default)
Default value: 0
Saved in: General.OptionsFileName
Mesh.MaxNumThreads2D
Maximum number of threads for 2D meshing (0: use default)
Default value: 0
Saved in: General.OptionsFileName
Mesh.MaxNumThreads3D
Maximum number of threads for 3D meshing (0: use default)
Default value: 0
Saved in: General.OptionsFileName
Appendix B: Options 209
Mesh.MaxRetries
Maximum number of times meshing is retried on curves and surfaces with a pending
mesh
Default value: 10
Saved in: General.OptionsFileName
Mesh.MeshOnlyVisible
Mesh only visible entities (experimental)
Default value: 0
Saved in: General.OptionsFileName
Mesh.MeshOnlyEmpty
Mesh only entities that have no existing mesh
Default value: 0
Saved in: General.OptionsFileName
Mesh.MeshSizeExtendFromBoundary
Extend computation of mesh element sizes from the boundaries into the interior (for
3D Delaunay, use 1: longest or 2: shortest surface edge length)
Default value: 1
Saved in: General.OptionsFileName
Mesh.MeshSizeFactor
Factor applied to all mesh element sizes
Default value: 1
Saved in: General.OptionsFileName
Mesh.MeshSizeMin
Minimum mesh element size
Default value: 0
Saved in: General.OptionsFileName
Mesh.MeshSizeMax
Maximum mesh element size
Default value: 1e+22
Saved in: General.OptionsFileName
Mesh.MeshSizeFromCurvature
Automatically compute mesh element sizes from curvature
Default value: 0
Saved in: General.OptionsFileName
Mesh.MeshSizeFromPoints
Compute mesh element sizes from values given at geometry points
Default value: 1
Saved in: General.OptionsFileName
Mesh.MeshSizeFromParametricPoints
Compute mesh element sizes from values given at geometry points defining para-
metric curves
Default value: 0
Saved in: General.OptionsFileName
Mesh.MetisAlgorithm
METIS partitioning algorithm ’ptype’ (1: Recursive, 2: K-way)
Default value: 1
Saved in: General.OptionsFileName
210 Gmsh 4.7.1
Mesh.MetisEdgeMatching
METIS edge matching type ’ctype’ (1: Random, 2: Sorted Heavy-Edge)
Default value: 2
Saved in: General.OptionsFileName
Mesh.MetisMaxLoadImbalance
METIS maximum load imbalance ’ufactor’ (-1: default, i.e. 30 for K-way and 1 for
Recursive)
Default value: -1
Saved in: General.OptionsFileName
Mesh.MetisObjective
METIS objective type ’objtype’ (1: min. edge-cut, 2: min. communication volume)
Default value: 1
Saved in: General.OptionsFileName
Mesh.MetisMinConn
METIS minimize maximum connectivity of partitions ’minconn’ (-1: default)
Default value: -1
Saved in: General.OptionsFileName
Mesh.MetisRefinementAlgorithm
METIS algorithm for k-way refinement ’rtype’ (1: FM-based cut, 2: Greedy, 3:
Two-sided node FM, 4: One-sided node FM)
Default value: 2
Saved in: General.OptionsFileName
Mesh.MinimumCirclePoints
Minimum number of nodes used to mesh circles and ellipses
Default value: 7
Saved in: General.OptionsFileName
Mesh.MinimumCurvePoints
Minimum number of points used to mesh curves other than lines, circles and ellipses
Default value: 3
Saved in: General.OptionsFileName
Mesh.MinimumElementsPerTwoPi
Minimum number of elements per 2 * Pi radians when the mesh size is adapted to
the curvature
Default value: 6
Saved in: General.OptionsFileName
Mesh.MshFileVersion
Version of the MSH file format to use
Default value: 4.1
Saved in: General.OptionsFileName
Mesh.MedFileMinorVersion
Minor version of the MED file format to use (-1: use minor version of the MED
library)
Default value: -1
Saved in: General.OptionsFileName
Mesh.MedImportGroupsOfNodes
Import groups of nodes (0: no; 1: create geometrical point for each node)?
Default value: 0
Saved in: General.OptionsFileName
Appendix B: Options 211
Mesh.MedSingleModel
Import MED meshes in the current model, even if several MED mesh names exist
Default value: 0
Saved in: General.OptionsFileName
Mesh.PartitionHexWeight
Weight of hexahedral element for METIS load balancing (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
Mesh.PartitionLineWeight
Weight of line element for METIS load balancing (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
Mesh.PartitionPrismWeight
Weight of prismatic element (wedge) for METIS load balancing (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
Mesh.PartitionPyramidWeight
Weight of pyramidal element for METIS load balancing (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
Mesh.PartitionQuadWeight
Weight of quadrangle for METIS load balancing (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
Mesh.PartitionTrihedronWeight
Weight of trihedron element for METIS load balancing (-1: automatic)
Default value: 0
Saved in: General.OptionsFileName
Mesh.PartitionTetWeight
Weight of tetrahedral element for METIS load balancing (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
Mesh.PartitionTriWeight
Weight of triangle element for METIS load balancing (-1: automatic)
Default value: -1
Saved in: General.OptionsFileName
Mesh.PartitionCreateTopology
Create boundary representation of partitions
Default value: 1
Saved in: General.OptionsFileName
Mesh.PartitionCreatePhysicals
Create physical groups for partitions, based on existing physical groups
Default value: 1
Saved in: General.OptionsFileName
Mesh.PartitionCreateGhostCells
Create ghost cells, i.e. create for each partition a ghost entity containing elements
connected to neighboring partitions by at least one node.
212 Gmsh 4.7.1
Default value: 0
Saved in: General.OptionsFileName
Mesh.PartitionSplitMeshFiles
Write one file for each mesh partition
Default value: 0
Saved in: General.OptionsFileName
Mesh.PartitionTopologyFile
Write a .pro file with the partition topology
Default value: 0
Saved in: General.OptionsFileName
Mesh.PartitionOldStyleMsh2
Write partitioned meshes in MSH2 format using old style (i.e. by not referencing new
partitioned entities, except on partition boundaries), for backward compatibility
Default value: 1
Saved in: General.OptionsFileName
Mesh.ReparamMaxTriangles
Maximum number of triangles in a single parametrization patch
Default value: 250000
Saved in: General.OptionsFileName
Mesh.NbHexahedra
Number of hexahedra in the current mesh (read-only)
Default value: 0
Saved in: -
Mesh.NbNodes
Number of nodes in the current mesh (read-only)
Default value: 0
Saved in: -
Mesh.NbPartitions
Number of partitions
Default value: 0
Saved in: General.OptionsFileName
Mesh.NbPrisms
Number of prisms in the current mesh (read-only)
Default value: 0
Saved in: -
Mesh.NbPyramids
Number of pyramids in the current mesh (read-only)
Default value: 0
Saved in: -
Mesh.NbTrihedra
Number of trihedra in the current mesh (read-only)
Default value: 0
Saved in: -
Mesh.NbQuadrangles
Number of quadrangles in the current mesh (read-only)
Default value: 0
Saved in: -
Appendix B: Options 213
Mesh.NbTetrahedra
Number of tetrahedra in the current mesh (read-only)
Default value: 0
Saved in: -
Mesh.NbTriangles
Number of triangles in the current mesh (read-only)
Default value: 0
Saved in: -
Mesh.NewtonConvergenceTestXYZ
Force inverse surface mapping algorithm (Newton-Raphson) to converge in real co-
ordinates (experimental)
Default value: 0
Saved in: General.OptionsFileName
Mesh.Normals
Display size of normal vectors (in pixels)
Default value: 0
Saved in: General.OptionsFileName
Mesh.NumSubEdges
Number of edge subdivisions when displaying high-order elements
Default value: 2
Saved in: General.OptionsFileName
Mesh.Optimize
Optimize the mesh to improve the quality of tetrahedral elements
Default value: 1
Saved in: General.OptionsFileName
Mesh.OptimizeThreshold
Optimize tetrahedra that have a quality below ...
Default value: 0.3
Saved in: General.OptionsFileName
Mesh.OptimizeNetgen
Optimize the mesh using Netgen to improve the quality of tetrahedral elements
Default value: 0
Saved in: General.OptionsFileName
Mesh.Points
Display mesh nodes (vertices)?
Default value: 0
Saved in: General.OptionsFileName
Mesh.PointNumbers
Display mesh node labels?
Default value: 0
Saved in: General.OptionsFileName
Mesh.PointSize
Display size of mesh nodes (in pixels)
Default value: 4
Saved in: General.OptionsFileName
214 Gmsh 4.7.1
Mesh.PointType
Display mesh nodes as solid color dots (0) or 3D spheres (1)
Default value: 0
Saved in: General.OptionsFileName
Mesh.Prisms
Display mesh prisms?
Default value: 1
Saved in: General.OptionsFileName
Mesh.Pyramids
Display mesh pyramids?
Default value: 1
Saved in: General.OptionsFileName
Mesh.Trihedra
Display mesh trihedra?
Default value: 1
Saved in: General.OptionsFileName
Mesh.Quadrangles
Display mesh quadrangles?
Default value: 1
Saved in: General.OptionsFileName
Mesh.QualityInf
Only display elements whose quality measure is greater than QualityInf
Default value: 0
Saved in: General.OptionsFileName
Mesh.QualitySup
Only display elements whose quality measure is smaller than QualitySup
Default value: 0
Saved in: General.OptionsFileName
Mesh.QualityType
Type of quality measure (0: SICN~signed inverse condition number, 1: SIGE~signed
inverse gradient error, 2: gamma~vol/sum face/max edge, 3: Disto~minJ/maxJ
Default value: 2
Saved in: General.OptionsFileName
Mesh.RadiusInf
Only display elements whose longest edge is greater than RadiusInf
Default value: 0
Saved in: General.OptionsFileName
Mesh.RadiusSup
Only display elements whose longest edge is smaller than RadiusSup
Default value: 0
Saved in: General.OptionsFileName
Mesh.RandomFactor
Random factor used in the 2D meshing algorithm (should be increased if Random-
Factor * size(triangle)/size(model) approaches machine accuracy)
Default value: 1e-09
Saved in: General.OptionsFileName
Appendix B: Options 215
Mesh.RandomFactor3D
Random factor used in the 3D meshing algorithm
Default value: 1e-12
Saved in: General.OptionsFileName
Mesh.RandomSeed
Seed of pseudo-random number generator
Default value: 1
Saved in: General.OptionsFileName
Mesh.PreserveNumberingMsh2
Preserve element numbering in MSH2 format (will break meshes with multiple phys-
ical groups for a single elementary entity)
Default value: 0
Saved in: General.OptionsFileName
Mesh.IgnoreParametrization
Skip parametrization section when reading meshes in the MSH4 format.
Default value: 0
Saved in: General.OptionsFileName
Mesh.IgnorePeriodicity
Skip periodic node section and skip periodic boundary alignement step when reading
meshes in the MSH2 format.
Default value: 1
Saved in: General.OptionsFileName
Mesh.RecombinationAlgorithm
Mesh recombination algorithm (0: simple, 1: blossom, 2: simple full-quad, 3: blos-
som full-quad)
Default value: 1
Saved in: General.OptionsFileName
Mesh.RecombineAll
Apply recombination algorithm to all surfaces, ignoring per-surface spec
Default value: 0
Saved in: General.OptionsFileName
Mesh.RecombineOptimizeTopology
Number of topological optimization passes (removal of diamonds, ...) of recombined
surface meshes
Default value: 5
Saved in: General.OptionsFileName
Mesh.Recombine3DAll
Apply recombination3D algorithm to all volumes, ignoring per-volume spec (exper-
imental)
Default value: 0
Saved in: General.OptionsFileName
Mesh.Recombine3DLevel
3d recombination level (0: hex, 1: hex+prisms, 2: hex+prism+pyramids) (experi-
mental)
Default value: 0
Saved in: General.OptionsFileName
216 Gmsh 4.7.1
Mesh.Recombine3DConformity
3d recombination conformity type (0: nonconforming, 1: trihedra, 2: pyra-
mids+trihedra, 3:pyramids+hexSplit+trihedra, 4:hexSplit+trihedra)(experimental)
Default value: 0
Saved in: General.OptionsFileName
Mesh.RefineSteps
Number of refinement steps in the MeshAdapt-based 2D algorithms
Default value: 10
Saved in: General.OptionsFileName
Mesh.Renumber
Renumber nodes and elements in a continuous sequence after mesh generation
Default value: 1
Saved in: General.OptionsFileName
Mesh.SaveAll
Save all elements, even if they don’t belong to physical groups (for some mesh
formats, this removes physical groups altogether)
Default value: 0
Saved in: -
Mesh.SaveElementTagType
Type of the element tag saved in mesh formats that don’t support saving physical
or partition ids (1: elementary, 2: physical, 3: partition)
Default value: 1
Saved in: General.OptionsFileName
Mesh.SaveTopology
Save model topology in MSH2 output files (this is always saved in MSH3)
Default value: 0
Saved in: General.OptionsFileName
Mesh.SaveParametric
Save parametric coordinates of nodes
Default value: 0
Saved in: General.OptionsFileName
Mesh.SaveGroupsOfElements
Save groups of elements for each physical group (for INP mesh format)
Default value: 1
Saved in: General.OptionsFileName
Mesh.SaveGroupsOfNodes
Save groups of nodes for each physical group (for UNV, INP and Tochnog mesh
formats). For the INP format, a negative value will save a group of node for each
entity of dimension = (-Mesh.SaveGroupsOfNodes)
Default value: 0
Saved in: General.OptionsFileName
Mesh.ScalingFactor
Global scaling factor applied to the saved mesh
Default value: 1
Saved in: General.OptionsFileName
Appendix B: Options 217
Mesh.SecondOrderIncomplete
Create incomplete second order elements? (8-node quads, 20-node hexas, etc.)
Default value: 0
Saved in: General.OptionsFileName
Mesh.SecondOrderLinear
Should second order nodes (as well as nodes generated with subdivision algorithms)
simply be created by linear interpolation?
Default value: 0
Saved in: General.OptionsFileName
Mesh.Smoothing
Number of smoothing steps applied to the final mesh
Default value: 1
Saved in: General.OptionsFileName
Mesh.SmoothCrossField
Apply n barycentric smoothing passes to the 3D cross field
Default value: 0
Saved in: General.OptionsFileName
Mesh.CrossFieldClosestPoint
Use closest point to compute 2D crossfield
Default value: 1
Saved in: General.OptionsFileName
Mesh.SmoothNormals
Smooth the mesh normals?
Default value: 0
Saved in: General.OptionsFileName
Mesh.SmoothRatio
Ratio between mesh sizes at nodes of a same edge (used in BAMG)
Default value: 1.8
Saved in: General.OptionsFileName
Mesh.StlAngularDeflection
Maximum angular deflection when creating STL representation of surfaces (cur-
rently only used with the OpenCASCADE kernel)
Default value: 0.35
Saved in: General.OptionsFileName
Mesh.StlLinearDeflection
Maximum linear deflection when creating STL representation of surfaces (currently
only used with the OpenCASCADE kernel)
Default value: 0.01
Saved in: General.OptionsFileName
Mesh.StlOneSolidPerSurface
Create one solid per surface when exporting STL files? (0: single solid, 1: one solid
per face, 2: one solid per physical surface)
Default value: 0
Saved in: General.OptionsFileName
Mesh.StlRemoveDuplicateTriangles
Remove duplicate triangles when importing STL files?
Default value: 0
Saved in: General.OptionsFileName
218 Gmsh 4.7.1
Mesh.SubdivisionAlgorithm
Mesh subdivision algorithm (0: none, 1: all quadrangles, 2: all hexahedra, 3:
barycentric)
Default value: 0
Saved in: General.OptionsFileName
Mesh.SurfaceEdges
Display edges of surface mesh?
Default value: 1
Saved in: General.OptionsFileName
Mesh.SurfaceFaces
Display faces of surface mesh?
Default value: 0
Saved in: General.OptionsFileName
Mesh.SurfaceNumbers
Display surface mesh element labels?
Default value: 0
Saved in: General.OptionsFileName
Mesh.SwitchElementTags
Invert elementary and physical tags when reading the mesh
Default value: 0
Saved in: General.OptionsFileName
Mesh.Tangents
Display size of tangent vectors (in pixels)
Default value: 0
Saved in: General.OptionsFileName
Mesh.Tetrahedra
Display mesh tetrahedra?
Default value: 1
Saved in: General.OptionsFileName
Mesh.ToleranceEdgeLength
Skip a model edge in mesh generation if its length is less than user’s defined tolerance
Default value: 0
Saved in: General.OptionsFileName
Mesh.ToleranceInitialDelaunay
Tolerance for initial 3D Delaunay mesher
Default value: 1e-08
Saved in: General.OptionsFileName
Mesh.Triangles
Display mesh triangles?
Default value: 1
Saved in: General.OptionsFileName
Mesh.UnvStrictFormat
Use strict format specification for UNV files, with ’D’ for exponents (instead of ’E’
as used by some tools)
Default value: 1
Saved in: General.OptionsFileName
Appendix B: Options 219
Mesh.VolumeEdges
Display edges of volume mesh?
Default value: 1
Saved in: General.OptionsFileName
Mesh.VolumeFaces
Display faces of volume mesh?
Default value: 0
Saved in: General.OptionsFileName
Mesh.VolumeNumbers
Display volume mesh element labels?
Default value: 0
Saved in: General.OptionsFileName
Mesh.Voronoi
Display the voronoi diagram
Default value: 0
Saved in: General.OptionsFileName
Mesh.ZoneDefinition
Method for defining a zone (0: single zone, 1: by partition, 2: by physical)
Default value: 0
Saved in: General.OptionsFileName
Mesh.Color.Points
Mesh node color
Default value: {0,0,255}
Saved in: General.OptionsFileName
Mesh.Color.PointsSup
Second order mesh node color
Default value: {255,0,255}
Saved in: General.OptionsFileName
Mesh.Color.Lines
Mesh line color
Default value: {0,0,0}
Saved in: General.OptionsFileName
Mesh.Color.Triangles
Mesh triangle color (if Mesh.ColorCarousel=0)
Default value: {160,150,255}
Saved in: General.OptionsFileName
Mesh.Color.Quadrangles
Mesh quadrangle color (if Mesh.ColorCarousel=0)
Default value: {130,120,225}
Saved in: General.OptionsFileName
Mesh.Color.Tetrahedra
Mesh tetrahedron color (if Mesh.ColorCarousel=0)
Default value: {160,150,255}
Saved in: General.OptionsFileName
Mesh.Color.Hexahedra
Mesh hexahedron color (if Mesh.ColorCarousel=0)
Default value: {130,120,225}
Saved in: General.OptionsFileName
220 Gmsh 4.7.1
Mesh.Color.Prisms
Mesh prism color (if Mesh.ColorCarousel=0)
Default value: {232,210,23}
Saved in: General.OptionsFileName
Mesh.Color.Pyramids
Mesh pyramid color (if Mesh.ColorCarousel=0)
Default value: {217,113,38}
Saved in: General.OptionsFileName
Mesh.Color.Trihedra
Mesh trihedron color (if Mesh.ColorCarousel=0)
Default value: {20,255,0}
Saved in: General.OptionsFileName
Mesh.Color.Tangents
Tangent mesh vector color
Default value: {255,255,0}
Saved in: General.OptionsFileName
Mesh.Color.Normals
Normal mesh vector color
Default value: {255,0,0}
Saved in: General.OptionsFileName
Mesh.Color.Zero
Color 0 in color carousel
Default value: {255,120,0}
Saved in: General.OptionsFileName
Mesh.Color.One
Color 1 in color carousel
Default value: {0,255,132}
Saved in: General.OptionsFileName
Mesh.Color.Two
Color 2 in color carousel
Default value: {255,160,0}
Saved in: General.OptionsFileName
Mesh.Color.Three
Color 3 in color carousel
Default value: {0,255,192}
Saved in: General.OptionsFileName
Mesh.Color.Four
Color 4 in color carousel
Default value: {255,200,0}
Saved in: General.OptionsFileName
Mesh.Color.Five
Color 5 in color carousel
Default value: {0,216,255}
Saved in: General.OptionsFileName
Mesh.Color.Six
Color 6 in color carousel
Default value: {255,240,0}
Saved in: General.OptionsFileName
Appendix B: Options 221
Mesh.Color.Seven
Color 7 in color carousel
Default value: {0,176,255}
Saved in: General.OptionsFileName
Mesh.Color.Eight
Color 8 in color carousel
Default value: {228,255,0}
Saved in: General.OptionsFileName
Mesh.Color.Nine
Color 9 in color carousel
Default value: {0,116,255}
Saved in: General.OptionsFileName
Mesh.Color.Ten
Color 10 in color carousel
Default value: {188,255,0}
Saved in: General.OptionsFileName
Mesh.Color.Eleven
Color 11 in color carousel
Default value: {0,76,255}
Saved in: General.OptionsFileName
Mesh.Color.Twelve
Color 12 in color carousel
Default value: {148,255,0}
Saved in: General.OptionsFileName
Mesh.Color.Thirteen
Color 13 in color carousel
Default value: {24,0,255}
Saved in: General.OptionsFileName
Mesh.Color.Fourteen
Color 14 in color carousel
Default value: {108,255,0}
Saved in: General.OptionsFileName
Mesh.Color.Fifteen
Color 15 in color carousel
Default value: {84,0,255}
Saved in: General.OptionsFileName
Mesh.Color.Sixteen
Color 16 in color carousel
Default value: {68,255,0}
Saved in: General.OptionsFileName
Mesh.Color.Seventeen
Color 17 in color carousel
Default value: {104,0,255}
Saved in: General.OptionsFileName
Mesh.Color.Eighteen
Color 18 in color carousel
Default value: {0,255,52}
Saved in: General.OptionsFileName
222 Gmsh 4.7.1
Mesh.Color.Nineteen
Color 19 in color carousel
Default value: {184,0,255}
Saved in: General.OptionsFileName
Solver.Name0
Name of solver 0
Default value: "GetDP"
Saved in: General.SessionFileName
Solver.Name1
Name of solver 1
Default value: ""
Saved in: General.SessionFileName
Solver.Name2
Name of solver 2
Default value: ""
Saved in: General.SessionFileName
Solver.Name3
Name of solver 3
Default value: ""
Saved in: General.SessionFileName
Solver.Name4
Name of solver 4
Default value: ""
Saved in: General.SessionFileName
Solver.Name5
Name of solver 5
Default value: ""
Saved in: General.SessionFileName
Solver.Name6
Name of solver 6
Default value: ""
Saved in: General.SessionFileName
Solver.Name7
Name of solver 7
Default value: ""
Saved in: General.SessionFileName
Solver.Name8
Name of solver 8
Default value: ""
Saved in: General.SessionFileName
Solver.Name9
Name of solver 9
Default value: ""
Saved in: General.SessionFileName
Solver.Extension0
File extension for solver 0
Default value: ".pro"
Saved in: General.SessionFileName
Solver.Extension1
File extension for solver 1
Default value: ""
Saved in: General.SessionFileName
224 Gmsh 4.7.1
Solver.Extension2
File extension for solver 2
Default value: ""
Saved in: General.SessionFileName
Solver.Extension3
File extension for solver 3
Default value: ""
Saved in: General.SessionFileName
Solver.Extension4
File extension for solver 4
Default value: ""
Saved in: General.SessionFileName
Solver.Extension5
File extension for solver 5
Default value: ""
Saved in: General.SessionFileName
Solver.Extension6
File extension for solver 6
Default value: ""
Saved in: General.SessionFileName
Solver.Extension7
File extension for solver 7
Default value: ""
Saved in: General.SessionFileName
Solver.Extension8
File extension for solver 8
Default value: ""
Saved in: General.SessionFileName
Solver.Extension9
File extension for solver 9
Default value: ""
Saved in: General.SessionFileName
Solver.OctaveInterpreter
Name of the Octave interpreter (used to run .m files)
Default value: "octave"
Saved in: General.SessionFileName
Solver.PythonInterpreter
Name of the Python interpreter (used to run .py files if they are not executable)
Default value: "python"
Saved in: General.SessionFileName
Solver.RemoteLogin0
Command to login to a remote host to launch solver 0
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin1
Command to login to a remote host to launch solver 1
Default value: ""
Saved in: General.SessionFileName
Appendix B: Options 225
Solver.RemoteLogin2
Command to login to a remote host to launch solver 2
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin3
Command to login to a remote host to launch solver 3
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin4
Command to login to a remote host to launch solver 4
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin5
Command to login to a remote host to launch solver 5
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin6
Command to login to a remote host to launch solver 6
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin7
Command to login to a remote host to launch solver 7
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin8
Command to login to a remote host to launch solver 8
Default value: ""
Saved in: General.SessionFileName
Solver.RemoteLogin9
Command to login to a remote host to launch solver 9
Default value: ""
Saved in: General.SessionFileName
Solver.SocketName
Base name of socket (UNIX socket if the name does not contain a colon, TCP/IP
otherwise, in the form ’host:baseport’; the actual name/port is constructed by ap-
pending the unique client id. If baseport is 0 or is not provided, the port is chosen
automatically (recommended))
Default value: ".gmshsock"
Saved in: General.OptionsFileName
Solver.AlwaysListen
Always listen to incoming connection requests?
Default value: 0
Saved in: General.OptionsFileName
Solver.AutoArchiveOutputFiles
Automatically archive output files after each computation
Default value: 0
Saved in: General.OptionsFileName
226 Gmsh 4.7.1
Solver.AutoCheck
Automatically check model every time a parameter is changed
Default value: 1
Saved in: General.OptionsFileName
Solver.AutoLoadDatabase
Automatically load the ONELAB database when launching a solver
Default value: 0
Saved in: General.OptionsFileName
Solver.AutoSaveDatabase
Automatically save the ONELAB database after each computation
Default value: 1
Saved in: General.OptionsFileName
Solver.AutoMesh
Automatically mesh (0: never; 1: if geometry changed, but use existing mesh on
disk if available; 2: if geometry changed; -1: the geometry script creates the mesh)
Default value: 2
Saved in: General.OptionsFileName
Solver.AutoMergeFile
Automatically merge result files
Default value: 1
Saved in: General.OptionsFileName
Solver.AutoShowViews
Automcatically show newly merged results (0: none; 1: all; 2: last one)
Default value: 2
Saved in: General.OptionsFileName
Solver.AutoShowLastStep
Automatically show the last step in newly merged results, if there are more than 2
steps
Default value: 1
Saved in: General.OptionsFileName
Solver.Plugins
Enable default solver plugins?
Default value: 0
Saved in: General.OptionsFileName
Solver.ShowInvisibleParameters
Show all parameters, even those marked invisible
Default value: 0
Saved in: General.OptionsFileName
Solver.Timeout
Time (in seconds) before closing the socket if no connection is happening
Default value: 5
Saved in: General.OptionsFileName
PostProcessing.Format
Default file format for post-processing views (0: ASCII view, 1: binary view, 2:
parsed view, 3: STL triangulation, 4: raw text, 5: Gmsh mesh, 6: MED file, 10:
automatic)
Default value: 10
Saved in: General.OptionsFileName
PostProcessing.GraphPointX
Synonym for ‘DoubleClickedGraphPointX’
Default value: 0
Saved in: -
PostProcessing.GraphPointY
Synonym for ‘DoubleClickedGraphPointY’
Default value: 0
Saved in: -
PostProcessing.HorizontalScales
Display value scales horizontally
Default value: 1
Saved in: General.OptionsFileName
PostProcessing.Link
Post-processing view links (0: apply next option changes to selected views, 1: force
same options for all selected views)
Default value: 0
Saved in: General.OptionsFileName
PostProcessing.NbViews
Current number of views merged (read-only)
Default value: 0
Saved in: -
PostProcessing.Plugins
Enable default post-processing plugins?
Default value: 1
Saved in: General.OptionsFileName
PostProcessing.SaveInterpolationMatrices
Save the interpolation matrices when exporting model-based data
Default value: 1
Saved in: General.OptionsFileName
PostProcessing.SaveMesh
Save the mesh when exporting model-based data
Default value: 1
Saved in: General.OptionsFileName
PostProcessing.Smoothing
Apply (non-reversible) smoothing to post-processing view when merged
Default value: 0
Saved in: General.OptionsFileName
View.Attributes
Optional string attached to the view. If the string contains ’AlwaysVisible’, the
view will not be hidden when new ones are merged.
Default value: ""
Saved in: General.OptionsFileName
Appendix B: Options 229
View.AxesFormatX
Number format for X-axis (in standard C form)
Default value: "%.3g"
Saved in: General.OptionsFileName
View.AxesFormatY
Number format for Y-axis (in standard C form)
Default value: "%.3g"
Saved in: General.OptionsFileName
View.AxesFormatZ
Number format for Z-axis (in standard C form)
Default value: "%.3g"
Saved in: General.OptionsFileName
View.AxesLabelX
X-axis label
Default value: ""
Saved in: General.OptionsFileName
View.AxesLabelY
Y-axis label
Default value: ""
Saved in: General.OptionsFileName
View.AxesLabelZ
Z-axis label
Default value: ""
Saved in: General.OptionsFileName
View.DoubleClickedCommand
Command parsed when double-clicking on the view
Default value: ""
Saved in: General.OptionsFileName
View.FileName
Default post-processing view file name
Default value: ""
Saved in: -
View.Format
Number format (in standard C form)
Default value: "%.3g"
Saved in: General.OptionsFileName
View.GeneralizedRaiseX
Generalized elevation of the view along X-axis (in model coordinates, using formula
possibly containing x, y, z, s[tep], t[ime], v0, ... v8)
Default value: "v0"
Saved in: General.OptionsFileName
View.GeneralizedRaiseY
Generalized elevation of the view along Y-axis (in model coordinates, using formula
possibly containing x, y, z, s[tep], t[ime], v0, ... v8)
Default value: "v1"
Saved in: General.OptionsFileName
230 Gmsh 4.7.1
View.GeneralizedRaiseZ
Generalized elevation of the view along Z-axis (in model coordinates, using formula
possibly containing x, y, z, s[tep], t[ime], v0, ... v8)
Default value: "v2"
Saved in: General.OptionsFileName
View.Group
Group to which this view belongs
Default value: ""
Saved in: General.OptionsFileName
View.Name
Default post-processing view name
Default value: ""
Saved in: -
View.Stipple0
First stippling pattern
Default value: "1*0x1F1F"
Saved in: General.OptionsFileName
View.Stipple1
Second stippling pattern
Default value: "1*0x3333"
Saved in: General.OptionsFileName
View.Stipple2
Third stippling pattern
Default value: "1*0x087F"
Saved in: General.OptionsFileName
View.Stipple3
Fourth stippling pattern
Default value: "1*0xCCCF"
Saved in: General.OptionsFileName
View.Stipple4
Fifth stippling pattern
Default value: "2*0x1111"
Saved in: General.OptionsFileName
View.Stipple5
Sixth stippling pattern
Default value: "2*0x0F0F"
Saved in: General.OptionsFileName
View.Stipple6
Seventh stippling pattern
Default value: "1*0xCFFF"
Saved in: General.OptionsFileName
View.Stipple7
Eighth stippling pattern
Default value: "2*0x0202"
Saved in: General.OptionsFileName
Appendix B: Options 231
View.Stipple8
Ninth stippling pattern
Default value: "2*0x087F"
Saved in: General.OptionsFileName
View.Stipple9
Tenth stippling pattern
Default value: "1*0xFFFF"
Saved in: General.OptionsFileName
View.AbscissaRangeType
Ascissa scale range type (1: default, 2: custom)
Default value: 1
Saved in: General.OptionsFileName
View.AdaptVisualizationGrid
Use adaptive visualization grid (for high-order elements)?
Default value: 0
Saved in: General.OptionsFileName
View.AngleSmoothNormals
Threshold angle below which normals are not smoothed
Default value: 30
Saved in: General.OptionsFileName
View.ArrowSizeMax
Maximum display size of arrows (in pixels)
Default value: 60
Saved in: General.OptionsFileName
View.ArrowSizeMin
Minimum display size of arrows (in pixels)
Default value: 0
Saved in: General.OptionsFileName
View.AutoPosition
Position the scale or 2D plot automatically (0: manual, 1: automatic, 2: top left, 3:
top right, 4: bottom left, 5: bottom right, 6: top, 7: bottom, 8: left, 9: right, 10:
full, 11: top third, 12: in model coordinates)
Default value: 1
Saved in: General.OptionsFileName
View.Axes
Axes (0: none, 1: simple axes, 2: box, 3: full grid, 4: open grid, 5: ruler)
Default value: 0
Saved in: General.OptionsFileName
View.AxesMikado
Mikado axes style
Default value: 0
Saved in: General.OptionsFileName
View.AxesAutoPosition
Position the axes automatically
Default value: 1
Saved in: General.OptionsFileName
232 Gmsh 4.7.1
View.AxesMaxX
Maximum X-axis coordinate
Default value: 1
Saved in: General.OptionsFileName
View.AxesMaxY
Maximum Y-axis coordinate
Default value: 1
Saved in: General.OptionsFileName
View.AxesMaxZ
Maximum Z-axis coordinate
Default value: 1
Saved in: General.OptionsFileName
View.AxesMinX
Minimum X-axis coordinate
Default value: 0
Saved in: General.OptionsFileName
View.AxesMinY
Minimum Y-axis coordinate
Default value: 0
Saved in: General.OptionsFileName
View.AxesMinZ
Minimum Z-axis coordinate
Default value: 0
Saved in: General.OptionsFileName
View.AxesTicsX
Number of tics on the X-axis
Default value: 5
Saved in: General.OptionsFileName
View.AxesTicsY
Number of tics on the Y-axis
Default value: 5
Saved in: General.OptionsFileName
View.AxesTicsZ
Number of tics on the Z-axis
Default value: 5
Saved in: General.OptionsFileName
View.Boundary
Draw the ‘N minus b’-dimensional boundary of the element (N: element dimension,
b: option value)
Default value: 0
Saved in: General.OptionsFileName
View.CenterGlyphs
Center glyphs (arrows, numbers, etc.)? (0: left, 1: centered, 2: right)
Default value: 0
Saved in: General.OptionsFileName
Appendix B: Options 233
View.Clip
Enable clipping planes? (Plane[i]=2^i, i=0,...,5)
Default value: 0
Saved in: -
View.Closed
Close the subtree containing this view
Default value: 0
Saved in: General.OptionsFileName
View.ColormapAlpha
Colormap alpha channel value (used only if != 1)
Default value: 1
Saved in: General.OptionsFileName
View.ColormapAlphaPower
Colormap alpha channel power
Default value: 0
Saved in: General.OptionsFileName
View.ColormapBeta
Colormap beta parameter (gamma = 1-beta)
Default value: 0
Saved in: General.OptionsFileName
View.ColormapBias
Colormap bias
Default value: 0
Saved in: General.OptionsFileName
View.ColormapCurvature
Colormap curvature or slope coefficient
Default value: 0
Saved in: General.OptionsFileName
View.ColormapInvert
Invert the color values, i.e., replace x with (255-x) in the colormap?
Default value: 0
Saved in: General.OptionsFileName
View.ColormapNumber
Default colormap number (0: black, 1: vis5d, 2: jet, 3: lucie, 4: rainbow, 5:
emc2000, 6: incadescent, 7: hot, 8: pink, 9: grayscale, 10: french, 11: hsv, 12:
spectrum, 13: bone, 14: spring, 15: summer, 16: autumm, 17: winter, 18: cool, 19:
copper, 20: magma, 21: inferno, 22: plasma, 23: viridis, 24: turbo)
Default value: 2
Saved in: General.OptionsFileName
View.ColormapRotation
Incremental colormap rotation
Default value: 0
Saved in: General.OptionsFileName
View.ColormapSwap
Swap the min/max values in the colormap?
Default value: 0
Saved in: General.OptionsFileName
234 Gmsh 4.7.1
View.ComponentMap0
Forced component 0 (if View.ForceComponents > 0)
Default value: 0
Saved in: General.OptionsFileName
View.ComponentMap1
Forced component 1 (if View.ForceComponents > 0)
Default value: 1
Saved in: General.OptionsFileName
View.ComponentMap2
Forced component 2 (if View.ForceComponents > 0)
Default value: 2
Saved in: General.OptionsFileName
View.ComponentMap3
Forced component 3 (if View.ForceComponents > 0)
Default value: 3
Saved in: General.OptionsFileName
View.ComponentMap4
Forced component 4 (if View.ForceComponents > 0)
Default value: 4
Saved in: General.OptionsFileName
View.ComponentMap5
Forced component 5 (if View.ForceComponents > 0)
Default value: 5
Saved in: General.OptionsFileName
View.ComponentMap6
Forced component 6 (if View.ForceComponents > 0)
Default value: 6
Saved in: General.OptionsFileName
View.ComponentMap7
Forced component 7 (if View.ForceComponents > 0)
Default value: 7
Saved in: General.OptionsFileName
View.ComponentMap8
Forced component 8 (if View.ForceComponents > 0)
Default value: 8
Saved in: General.OptionsFileName
View.CustomAbscissaMax
User-defined maximum abscissa value
Default value: 0
Saved in: -
View.CustomAbscissaMin
User-defined minimum abscissa value
Default value: 0
Saved in: -
View.CustomMax
User-defined maximum value to be displayed
Default value: 0
Saved in: -
Appendix B: Options 235
View.CustomMin
User-defined minimum value to be displayed
Default value: 0
Saved in: -
View.DisplacementFactor
Displacement amplification
Default value: 1
Saved in: General.OptionsFileName
View.DrawHexahedra
Display post-processing hexahedra?
Default value: 1
Saved in: General.OptionsFileName
View.DrawLines
Display post-processing lines?
Default value: 1
Saved in: General.OptionsFileName
View.DrawPoints
Display post-processing points?
Default value: 1
Saved in: General.OptionsFileName
View.DrawPrisms
Display post-processing prisms?
Default value: 1
Saved in: General.OptionsFileName
View.DrawPyramids
Display post-processing pyramids?
Default value: 1
Saved in: General.OptionsFileName
View.DrawTrihedra
Display post-processing trihedra?
Default value: 1
Saved in: General.OptionsFileName
View.DrawQuadrangles
Display post-processing quadrangles?
Default value: 1
Saved in: General.OptionsFileName
View.DrawScalars
Display scalar values?
Default value: 1
Saved in: General.OptionsFileName
View.DrawSkinOnly
Draw only the skin of 3D scalar views?
Default value: 0
Saved in: General.OptionsFileName
View.DrawStrings
Display post-processing annotation strings?
Default value: 1
Saved in: General.OptionsFileName
236 Gmsh 4.7.1
View.DrawTensors
Display tensor values?
Default value: 1
Saved in: General.OptionsFileName
View.DrawTetrahedra
Display post-processing tetrahedra?
Default value: 1
Saved in: General.OptionsFileName
View.DrawTriangles
Display post-processing triangles?
Default value: 1
Saved in: General.OptionsFileName
View.DrawVectors
Display vector values?
Default value: 1
Saved in: General.OptionsFileName
View.Explode
Element shrinking factor (between 0 and 1)
Default value: 1
Saved in: General.OptionsFileName
View.ExternalView
Index of the view used to color vector fields (-1: self)
Default value: -1
Saved in: General.OptionsFileName
View.FakeTransparency
Use fake transparency (cheaper than the real thing, but incorrect)
Default value: 0
Saved in: General.OptionsFileName
View.ForceNumComponents
Force number of components to display (see View.ComponentMapN for mapping)
Default value: 0
Saved in: General.OptionsFileName
View.GeneralizedRaiseFactor
Generalized raise amplification factor
Default value: 1
Saved in: General.OptionsFileName
View.GeneralizedRaiseView
Index of the view used for generalized raise (-1: self)
Default value: -1
Saved in: General.OptionsFileName
View.GlyphLocation
Glyph (arrow, number, etc.) location (1: center of gravity, 2: node)
Default value: 1
Saved in: General.OptionsFileName
View.Height
Height (in pixels) of the scale or 2D plot
Default value: 200
Saved in: General.OptionsFileName
Appendix B: Options 237
View.IntervalsType
Type of interval display (1: iso, 2: continuous, 3: discrete, 4: numeric)
Default value: 2
Saved in: General.OptionsFileName
View.Light
Enable lighting for the view
Default value: 1
Saved in: General.OptionsFileName
View.LightLines
Light element edges
Default value: 1
Saved in: General.OptionsFileName
View.LightTwoSide
Light both sides of surfaces (leads to slower rendering)
Default value: 1
Saved in: General.OptionsFileName
View.LineType
Display lines as solid color segments (0) or 3D cylinders (1)
Default value: 0
Saved in: General.OptionsFileName
View.LineWidth
Display width of lines (in pixels)
Default value: 1
Saved in: General.OptionsFileName
View.MaxRecursionLevel
Maximum recursion level for adaptive views
Default value: 0
Saved in: General.OptionsFileName
View.Max Maximum value in the view (read-only)
Default value: 0
Saved in: -
View.MaxVisible
Maximum value in the visible parts of the view, taking current time step and tensor
display type into account (read-only)
Default value: 0
Saved in: -
View.MaxX
Maximum view coordinate along the X-axis (read-only)
Default value: 0
Saved in: -
View.MaxY
Maximum view coordinate along the Y-axis (read-only)
Default value: 0
Saved in: -
View.MaxZ
Maximum view coordinate along the Z-axis (read-only)
Default value: 0
Saved in: -
238 Gmsh 4.7.1
View.PointSize
Display size of points (in pixels)
Default value: 3
Saved in: General.OptionsFileName
View.PointType
Display points as solid color dots (0), 3D spheres (1), scaled dots (2) or scaled
spheres (3)
Default value: 0
Saved in: General.OptionsFileName
View.PositionX
X position (in pixels) of the scale or 2D plot (< 0: measure from right edge; >= 1e5:
centered)
Default value: 100
Saved in: General.OptionsFileName
View.PositionY
Y position (in pixels) of the scale or 2D plot (< 0: measure from bottom edge; >=
1e5: centered)
Default value: 50
Saved in: General.OptionsFileName
View.RaiseX
Elevation of the view along X-axis (in model coordinates)
Default value: 0
Saved in: -
View.RaiseY
Elevation of the view along Y-axis (in model coordinates)
Default value: 0
Saved in: -
View.RaiseZ
Elevation of the view along Z-axis (in model coordinates)
Default value: 0
Saved in: -
View.RangeType
Value scale range type (1: default, 2: custom, 3: per time step)
Default value: 1
Saved in: General.OptionsFileName
View.Sampling
Element sampling rate (draw one out every ‘Sampling’ elements)
Default value: 1
Saved in: General.OptionsFileName
View.SaturateValues
Saturate the view values to custom min and max (1: true, 0: false)
Default value: 0
Saved in: General.OptionsFileName
View.ScaleType
Value scale type (1: linear, 2: logarithmic, 3: double logarithmic)
Default value: 1
Saved in: General.OptionsFileName
240 Gmsh 4.7.1
View.ShowElement
Show element boundaries?
Default value: 0
Saved in: General.OptionsFileName
View.ShowScale
Show value scale?
Default value: 1
Saved in: General.OptionsFileName
View.ShowTime
Time display mode (0: none, 1: time series, 2: harmonic data, 3: automatic, 4: step
data, 5: multi-step data, 6: real eigenvalues, 7: complex eigenvalues)
Default value: 3
Saved in: General.OptionsFileName
View.SmoothNormals
Smooth the normals?
Default value: 0
Saved in: General.OptionsFileName
View.Stipple
Stipple curves in 2D and line plots?
Default value: 0
Saved in: General.OptionsFileName
View.Tangents
Display size of tangent vectors (in pixels)
Default value: 0
Saved in: General.OptionsFileName
View.TargetError
Target representation error for adaptive views
Default value: 0.01
Saved in: General.OptionsFileName
View.TensorType
Tensor display type (1: Von-Mises, 2: maximum eigenvalue, 3: minimum eigenvalue,
4: eigenvectors, 5: ellipse, 6: ellipsoid, 7: frame)
Default value: 1
Saved in: General.OptionsFileName
View.TimeStep
Current time step displayed
Default value: 0
Saved in: -
View.Time
Current time displayed (if positive, sets the time step corresponding the given time
value)
Default value: 0
Saved in: -
View.TransformXX
Element (1,1) of the 3x3 coordinate transformation matrix
Default value: 1
Saved in: -
Appendix B: Options 241
View.TransformXY
Element (1,2) of the 3x3 coordinate transformation matrix
Default value: 0
Saved in: -
View.TransformXZ
Element (1,3) of the 3x3 coordinate transformation matrix
Default value: 0
Saved in: -
View.TransformYX
Element (2,1) of the 3x3 coordinate transformation matrix
Default value: 0
Saved in: -
View.TransformYY
Element (2,2) of the 3x3 coordinate transformation matrix
Default value: 1
Saved in: -
View.TransformYZ
Element (2,3) of the 3x3 coordinate transformation matrix
Default value: 0
Saved in: -
View.TransformZX
Element (3,1) of the 3x3 coordinate transformation matrix
Default value: 0
Saved in: -
View.TransformZY
Element (3,2) of the 3x3 coordinate transformation matrix
Default value: 0
Saved in: -
View.TransformZZ
Element (3,3) of the 3x3 coordinate transformation matrix
Default value: 1
Saved in: -
View.Type
Type of plot (1: 3D, 2: 2D space, 3: 2D time, 4: 2D)
Default value: 1
Saved in: -
View.UseGeneralizedRaise
Use generalized raise?
Default value: 0
Saved in: General.OptionsFileName
View.VectorType
Vector display type (1: segment, 2: arrow, 3: pyramid, 4: 3D arrow, 5: displace-
ment, 6: comet)
Default value: 4
Saved in: General.OptionsFileName
242 Gmsh 4.7.1
View.Visible
Is the view visible?
Default value: 1
Saved in: -
View.Width
Width (in pixels) of the scale or 2D plot
Default value: 300
Saved in: General.OptionsFileName
View.Color.Points
Point color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Lines
Line color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Triangles
Triangle color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Quadrangles
Quadrangle color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Tetrahedra
Tetrahedron color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Hexahedra
Hexahedron color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Prisms
Prism color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Pyramids
Pyramid color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Trihedra
Trihedron color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Tangents
Tangent vector color
Default value: {255,255,0}
Saved in: General.OptionsFileName
Appendix B: Options 243
View.Color.Normals
Normal vector color
Default value: {255,0,0}
Saved in: General.OptionsFileName
View.Color.Text2D
2D text color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Text3D
3D text color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Axes
Axes color
Default value: {0,0,0}
Saved in: General.OptionsFileName
View.Color.Background2D
Bacground color for 2D plots
Default value: {255,255,255}
Saved in: General.OptionsFileName
View.ColorTable
Color table used to draw the view
Saved in: General.OptionsFileName
Appendix C: Compiling the source code 245
ENABLE_DINTEGRATION
Enable discrete integration (needed for levelsets) (default: ON)
ENABLE_DOMHEX
Enable experimental DOMHEX code (default: ON)
ENABLE_EIGEN
Enable Eigen for linear algebra (instead of Blas/Lapack) (default: ON)
ENABLE_FLTK
Enable FLTK graphical user interface (requires mesh/post) (default: ON)
ENABLE_GETDP
Enable GetDP solver (linked as a library, experimental) (default: ON)
ENABLE_GMM
Enable GMM linear solvers (simple alternative to PETSc) (default: ON)
ENABLE_GMP
Enable GMP for Kbipack (advanced) (default: ON)
ENABLE_GRAPHICS
Enable building graphics lib even without GUI (advanced) (default: OFF)
ENABLE_HXT
Enable HXT library (for reparametrization and meshing) (default: ON)
ENABLE_KBIPACK
Enable Kbipack (neeeded by homology solver) (default: ON)
ENABLE_MATHEX
Enable Mathex expression parser (used by plugins and options) (default: ON)
ENABLE_MED
Enable MED mesh and post file formats (default: ON)
ENABLE_MESH
Enable mesh module (required by GUI) (default: ON)
ENABLE_METIS
Enable Metis mesh partitioner (default: ON)
ENABLE_MMG
Enable Mmg mesh adaptation interface (default: ON)
ENABLE_MPEG_ENCODE
Enable built-in MPEG movie encoder (default: ON)
ENABLE_MPI
Enable MPI (experimental, not used for meshing) (default: OFF)
ENABLE_MSVC_STATIC_RUNTIME
Enable static Visual C++ runtime (default: OFF)
ENABLE_MUMPS
Enable MUMPS sparse direct linear solver (default: OFF)
ENABLE_NETGEN
Enable Netgen 3D frontal mesh generator (default: ON)
ENABLE_NUMPY
Enable fullMatrix and numpy array conversion for private API (default: OFF)
Appendix C: Compiling the source code 247
ENABLE_PETSC4PY
Enable petsc4py wrappers for petsc matrices for private API (default: OFF)
ENABLE_OCC
Enable OpenCASCADE CAD kernel (default: ON)
ENABLE_OCC_CAF
Enable OpenCASCADE CAF module (for STEP/IGES attributes) (default: ON)
ENABLE_OCC_STATIC
Link OpenCASCADE static instead of dynamic libraries (requires ENABLE OCC)
(default: OFF)
ENABLE_OCC_TBB
Add TBB libraries in list of OCC libraries (default: OFF)
ENABLE_ONELAB
Enable ONELAB solver interface (default: ON)
ENABLE_ONELAB_METAMODEL
Enable ONELAB metamodels (experimental) (default: ON)
ENABLE_OPENACC
Enable OpenACC (default: OFF)
ENABLE_OPENMP
Enable OpenMP (default: OFF)
ENABLE_OPTHOM
Enable high-order mesh optimization tools (default: ON)
ENABLE_OS_SPECIFIC_INSTALL
Enable OS-specific (e.g. app bundle) installation (default: OFF)
ENABLE_OSMESA
Enable OSMesa for offscreen rendering (experimental) (default: OFF)
ENABLE_P4EST
Enable p4est for enabling automatic mesh size field (experimental) (default: OFF)
ENABLE_PACKAGE_STRIP
Strip symbols in install packages to reduce install size (default: ON)
ENABLE_PARSER
Enable GEO file parser (required for .geo/.pos scripts) (default: ON)
ENABLE_PETSC
Enable PETSc linear solvers (required for SLEPc) (default: OFF)
ENABLE_PLUGINS
Enable post-processing plugins (default: ON)
ENABLE_POST
Enable post-processing module (required by GUI) (default: ON)
ENABLE_POPPLER
Enable Poppler for displaying PDF documents (experimental) (default: OFF)
ENABLE_PRIVATE_API
Enable private API (default: OFF)
ENABLE_PRO
Enable PRO extensions (default: ON)
248 Gmsh 4.7.1
ENABLE_QUADTRI
Enable QuadTri structured meshing extensions (default: ON)
ENABLE_REVOROPT
Enable Revoropt (used for CVT remeshing) (default: OFF)
ENABLE_RPATH
Use RPATH in dynamically linked targets (default: ON)
ENABLE_SLEPC
Enable SLEPc eigensolvers (default: OFF)
ENABLE_SOLVER
Enable built-in finite element solvers (required for reparametrization) (default: ON)
ENABLE_SYSTEM_CONTRIB
Use system versions of contrib libraries, when possible (default: OFF)
ENABLE_TCMALLOC
Enable libtcmalloc (fast malloc that does not release memory) (default: OFF)
ENABLE_TOUCHBAR
Enable Apple Touch bar (default: ON)
ENABLE_VISUDEV
Enable additional visualization capabilities for development purposes (default:
OFF)
ENABLE_VOROPP
Enable voro++ (for hex meshing, experimental) (default: ON)
ENABLE_WRAP_JAVA
Generate SWIG Java wrappers for private API (default: OFF)
ENABLE_WRAP_PYTHON
Generate SWIG Python wrappers for private API (not used by public API) (default:
OFF)
ENABLE_ZIPPER
Enable Zip file compression/decompression (default: OFF)
The wiki (https://gitlab.onelab.info/gmsh/gmsh/wikis/Gmsh-compilation) contains
more detailed instructions on how to compile Gmsh, including the compilation of common
dependencies.
Appendix D: Gmsh API 249
to generate the mesh. Discrete entities can be remeshed provided that a parametrization is
explicitly recomputed for them.
• Mesh data is made of elements (points, lines, triangles, quadrangles, tetrahedra, hexahedra,
prisms, pyramids, ...), defined by an ordered list of their nodes. Elements and nodes are
identified by tags (strictly positive identification numbers), and are stored (classified ) in the
model entity they discretize. Once meshed, a model entity of dimension 0 (a geometrical
point) will thus contain a mesh element of type point (MSH type 15: cf. Section 9.1 [MSH
file format], page 105), as well as a mesh node. A model curve will contain line elements
(e.g. of MSH type 1 or 8 for first order or second order meshes, respectively) as well as its
interior nodes, while its boundary nodes will be stored in the bounding model points. A
model surface will contain triangular and/or quadrangular elements and all the nodes not
classified on its boundary or on its embedded entities (curves and points). A model volume
will contain tetrahedra, hexahedra, etc. and all the nodes not classified on its boundary
or on its embedded entities (surfaces, curves and points). This data model allows to easily
and efficiently handle the creation, modification and destruction of conformal meshes. All
the mesh-related functions are provided in the gmsh/model/mesh namespace.
• Post-processing data is made of views. Each view is identified by a tag, and can also be
accessed by its index (which can change when views are sorted, added or deleted). A view
stores both display options and data, unless the view is an alias of another view (in which
case it only stores display options, and the data points to a reference view). View data
can contain several steps (e.g. to store time series) and can be either linked to one or
more models1 (mesh-based data, as stored in MSH files: cf. Section 9.1 [MSH file format],
page 105) or independent from any model (list-based data, as stored in parsed POS files:
cf. Section 8.1 [Post-processing commands], page 73). Various plugins exist to modify and
create views.
All the functions available in the API are given below. See the relevant header/module file for
the exact definition in each supported language: in C++ gmsh/model/geo/addPoint will lead to
a namespaced function gmsh::model::geo::addPoint, while in Python and Julia it will lead
to gmsh.model.geo.addPoint, and in C to gmshModelGeoAddPoint. Output values are passed
by reference in C++, as pointers in C and directly returned (after the return value, if any) in
Python and Julia.
1
Each step can be linked to a different model, which allows to have a single time series based on multiple (e.g.
deforming or moving) meshes.
Appendix D: Gmsh API 251
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t4.cpp, t5.cpp, ...), Python (t1.py, t2.py,
t3.py, t4.py, t5.py, ...)
gmsh/finalize
Finalize the Gmsh API. This must be called when you are done using the Gmsh
API.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t4.cpp, t5.cpp, ...), Python (t1.py, t2.py,
t3.py, t4.py, t5.py, ...)
gmsh/open
Open a file. Equivalent to the File->Open menu in the Gmsh app. Handling of
the file depends on its extension and/or its contents: opening a file with model data
will create a new model.
Input: fileName
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x1.cpp, explore.cpp, onelab data.cpp, open.cpp), Python (x1.py,
explore.py, flatten.py, heal.py, onelab data.py, ...)
gmsh/merge
Merge a file. Equivalent to the File->Merge menu in the Gmsh app. Handling of
the file depends on its extension and/or its contents. Merging a file with model data
will add the data to the current model.
Input: fileName
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t7.cpp, t8.cpp, t9.cpp, t13.cpp, t17.cpp, ...), Python (t7.py, t8.py,
t9.py, t13.py, t17.py, ...)
gmsh/write
Write a file. The export format is determined by the file extension.
Input: fileName
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
252 Gmsh 4.7.1
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t4.cpp, t5.cpp, ...), Python (t1.py, t2.py,
t3.py, t4.py, t5.py, ...)
gmsh/clear
Clear all loaded models and post-processing data, and add a new empty model.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x1.cpp), Python (x1.py)
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t4.cpp, t6.cpp, ...), Python (t1.py, t2.py,
t3.py, t4.py, t5.py, ...)
gmsh/model/remove
Remove the current model.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/list
List the names of all models.
Input: -
Output: names
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/getCurrent
Get the name of the current model.
Input: -
Output: name
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x1.cpp), Python (x1.py, explore.py)
gmsh/model/setCurrent
Set the current model to the model with name name. If several models have the
same name, select the one that was added first.
Input: name
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (copy mesh.py)
gmsh/model/getEntities
Get all the entities in the current model. If dim is >= 0, return only the entities of
the specified dimension (e.g. points if dim == 0). The entities are returned as a
vector of (dim, tag) integer pairs.
Input: dim = -1
Output: dimTags
Return: -
Appendix D: Gmsh API 255
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t13.cpp, t16.cpp, t18.cpp, t20.cpp, t21.cpp, ...), Python (t13.py,
t16.py, t18.py, t20.py, t21.py, ...)
gmsh/model/setEntityName
Set the name of the entity of dimension dim and tag tag.
Input: dim, tag, name
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/getEntityName
Get the name of the entity of dimension dim and tag tag.
Input: dim, tag
Output: name
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x1.cpp), Python (x1.py, step assembly.py)
gmsh/model/getPhysicalGroups
Get all the physical groups in the current model. If dim is >= 0, return only the
entities of the specified dimension (e.g. physical points if dim == 0). The entities
are returned as a vector of (dim, tag) integer pairs.
Input: dim = -1
Output: dimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (poisson.py)
gmsh/model/getEntitiesForPhysicalGroup
Get the tags of the model entities making up the physical group of dimension dim
and tag tag.
Input: dim, tag
Output: tags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (poisson.py, test.py)
gmsh/model/getPhysicalGroupsForEntity
Get the tags of the physical groups (if any) to which the model entity of dimension
dim and tag tag belongs.
256 Gmsh 4.7.1
gmsh/model/getPhysicalName
Get the name of the physical group of dimension dim and tag tag.
Input: dim, tag
Output: name
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x1.cpp), Python (x1.py, poisson.py)
gmsh/model/getBoundary
Get the boundary of the model entities dimTags. Return in outDimTags the bound-
ary of the individual entities (if combined is false) or the boundary of the combined
geometrical shape formed by all input entities (if combined is true). Return tags
multiplied by the sign of the boundary entity if oriented is true. Apply the bound-
ary operator recursively down to dimension 0 (i.e. to points) if recursive is true.
Input: dimTags, combined = True, oriented = True, recursive = False
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t14.cpp, t16.cpp, t18.cpp, t19.cpp, t21.cpp, ...), Python (t14.py,
t16.py, t18.py, t19.py, t21.py, ...)
gmsh/model/getEntitiesInBoundingBox
Get the model entities in the bounding box defined by the two points (xmin, ymin,
zmin) and (xmax, ymax, zmax). If dim is >= 0, return only the entities of the specified
dimension (e.g. points if dim == 0).
Input: xmin, ymin, zmin, xmax, ymax, zmax, dim = -1
Output: tags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t16.cpp, t18.cpp, t20.cpp), Python (t16.py, t18.py, t20.py)
gmsh/model/getBoundingBox
Get the bounding box (xmin, ymin, zmin), (xmax, ymax, zmax) of the model entity
of dimension dim and tag tag. If dim and tag are negative, get the bounding box
of the whole model.
Input: dim, tag
Output: xmin, ymin, zmin, xmax, ymax, zmax
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t18.cpp), Python (t18.py)
258 Gmsh 4.7.1
gmsh/model/getDimension
Get the geometrical dimension of the current model.
Input: -
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x1.cpp), Python (x1.py)
gmsh/model/addDiscreteEntity
Add a discrete model entity (defined by a mesh) of dimension dim in the current
model. Return the tag of the new discrete entity, equal to tag if tag is positive, or
a new tag if tag < 0. boundary specifies the tags of the entities on the boundary
of the discrete entity, if any. Specifying boundary allows Gmsh to construct the
topology of the overall model.
Input: dim, tag = -1, boundary = []
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x2.cpp, x4.cpp, discrete.cpp, edges.cpp, faces.cpp, ...), Python
(x2.py, x4.py, copy mesh.py, discrete.py, import perf.py, ...)
gmsh/model/removeEntities
Remove the entities dimTags of the current model. If recursive is true, remove all
the entities on their boundaries, down to dimension 0.
Input: dimTags, recursive = False
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t18.cpp, t20.cpp), Python (t18.py, t20.py, spherical surf.py)
gmsh/model/removeEntityName
Remove the entity name name from the current model.
Input: name
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/getType
Get the type of the entity of dimension dim and tag tag.
Input: dim, tag
Output: entityType
Appendix D: Gmsh API 259
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t21.cpp, x1.cpp, explore.cpp, partition.cpp), Python (t21.py,
x1.py, explore.py, partition.py)
gmsh/model/getParent
In a partitioned model, get the parent of the entity of dimension dim and tag tag,
i.e. from which the entity is a part of, if any. parentDim and parentTag are set to
-1 if the entity has no parent.
Input: dim, tag
Output: parentDim, parentTag
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t21.cpp, x1.cpp, explore.cpp, partition.cpp), Python (t21.py,
x1.py, explore.py, partition.py)
gmsh/model/getPartitions
In a partitioned model, return the tags of the partition(s) to which the entity belongs.
Input: dim, tag
Output: partitions
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t21.cpp, x1.cpp, explore.cpp, partition.cpp), Python (t21.py,
x1.py, explore.py, partition.py)
gmsh/model/getValue
Evaluate the parametrization of the entity of dimension dim and tag tag at the
parametric coordinates parametricCoord. Only valid for dim equal to 0 (with empty
parametricCoord), 1 (with parametricCoord containing parametric coordinates
on the curve) or 2 (with parametricCoord containing pairs of u, v parametric
coordinates on the surface, concatenated: [p1u, p1v, p2u, ...]). Return triplets of x,
y, z coordinates in coord, concatenated: [p1x, p1y, p1z, p2x, ...].
Input: dim, tag, parametricCoord
Output: coord
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t2.cpp), Python (t2.py, reparamOnFace.py, terrain stl.py)
gmsh/model/getDerivative
Evaluate the derivative of the parametrization of the entity of dimension dim and
tag tag at the parametric coordinates parametricCoord. Only valid for dim equal
to 1 (with parametricCoord containing parametric coordinates on the curve) or
2 (with parametricCoord containing pairs of u, v parametric coordinates on the
260 Gmsh 4.7.1
surface, concatenated: [p1u, p1v, p2u, ...]). For dim equal to 1 return the x, y, z
components of the derivative with respect to u [d1ux, d1uy, d1uz, d2ux, ...]; for dim
equal to 2 return the x, y, z components of the derivate with respect to u and v:
[d1ux, d1uy, d1uz, d1vx, d1vy, d1vz, d2ux, ...].
Input: dim, tag, parametricCoord
Output: derivatives
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/getCurvature
Evaluate the (maximum) curvature of the entity of dimension dim and tag tag
at the parametric coordinates parametricCoord. Only valid for dim equal to 1
(with parametricCoord containing parametric coordinates on the curve) or 2 (with
parametricCoord containing pairs of u, v parametric coordinates on the surface,
concatenated: [p1u, p1v, p2u, ...]).
Input: dim, tag, parametricCoord
Output: curvatures
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (normals.py)
gmsh/model/getPrincipalCurvatures
Evaluate the principal curvatures of the surface with tag tag at the parametric coor-
dinates parametricCoord, as well as their respective directions. parametricCoord
are given by pair of u and v coordinates, concatenated: [p1u, p1v, p2u, ...].
Input: tag, parametricCoord
Output: curvatureMax, curvatureMin, directionMax, directionMin
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/getNormal
Get the normal to the surface with tag tag at the parametric coordinates
parametricCoord. parametricCoord are given by pairs of u and v coordinates,
concatenated: [p1u, p1v, p2u, ...]. normals are returned as triplets of x, y, z
components, concatenated: [n1x, n1y, n1z, n2x, ...].
Input: tag, parametricCoord
Output: normals
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (normals.py)
Appendix D: Gmsh API 261
gmsh/model/getParametrization
Get the parametric coordinates parametricCoord for the points coord on the entity
of dimension dim and tag tag. coord are given as triplets of x, y, z coordinates,
concatenated: [p1x, p1y, p1z, p2x, ...]. parametricCoord returns the parametric
coordinates t on the curve (if dim = 1) or pairs of u and v coordinates concatenated
on the surface (if dim = 2), i.e. [p1t, p2t, ...] or [p1u, p1v, p2u, ...].
Input: dim, tag, coord
Output: parametricCoord
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/getParametrizationBounds
Get the min and max bounds of the parametric coordinates for the entity of dimension
dim and tag tag.
Input: dim, tag
Output: min, max
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (reparamOnFace.py)
gmsh/model/isInside
Check if the parametric coordinates provided in parametricCoord correspond to
points inside the entitiy of dimension dim and tag tag, and return the number of
points inside. This feature is only available for a subset of curves and surfaces,
depending on the underyling geometrical representation.
Input: dim, tag, parametricCoord
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/getClosestPoint
Get the points closestCoord on the entity of dimension dim and tag tag to
the points coord, by orthogonal projection. coord and closestCoord are
given as triplets of x, y, z coordinates, concatenated: [p1x, p1y, p1z, p2x, ...].
parametricCoord returns the parametric coordinates t on the curve (if dim = 1)
or pairs of u and v coordinates concatenated on the surface (if dim = 2), i.e. [p1t,
p2t, ...] or [p1u, p1v, p2u, ...].
Input: dim, tag, coord
Output: closestCoord, parametricCoord
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (closest point.py)
262 Gmsh 4.7.1
gmsh/model/reparametrizeOnSurface
Reparametrize the boundary entity (point or curve, i.e. with dim == 0 or dim ==
1) of tag tag on the surface surfaceTag. If dim == 1, reparametrize all the points
corresponding to the parametric coordinates parametricCoord. Multiple matches
in case of periodic surfaces can be selected with which. This feature is only available
for a subset of entities, depending on the underyling geometrical representation.
Input: dim, tag, parametricCoord, surfaceTag, which = 0
Output: surfaceParametricCoord
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (reparamOnFace.py)
gmsh/model/setVisibility
Set the visibility of the model entities dimTags to value. Apply the visibility setting
recursively if recursive is true.
Input: dimTags, value, recursive = False
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (gui.py)
gmsh/model/getVisibility
Get the visibility of the model entity of dimension dim and tag tag.
Input: dim, tag
Output: value
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/setVisibilityPerWindow
Set the global visibility of the model per window to value, where windowIndex
identifies the window in the window list.
Input: value, windowIndex = 0
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/setColor
Set the color of the model entities dimTags to the RGBA value (r, g, b, a), where r,
g, b and a should be integers between 0 and 255. Apply the color setting recursively
if recursive is true.
Input: dimTags, r, g, b, a = 255, recursive = False
Appendix D: Gmsh API 263
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t4.cpp), Python (t4.py, gui.py)
gmsh/model/getColor
Get the color of the model entity of dimension dim and tag tag.
Input: dim, tag
Output: r, g, b, a
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (step boundary colors.py)
gmsh/model/setCoordinates
Set the x, y, z coordinates of a geometrical point.
Input: tag, x, y, z
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x2.cpp), Python (x2.py, reparamOnFace.py)
gmsh/model/mesh/unpartition
Unpartition the mesh of the current model.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/optimize
Optimize the mesh of the current model using method (empty for default tetrahedral
mesh optimizer, "Netgen" for Netgen optimizer, "HighOrder" for direct high-order
mesh optimizer, "HighOrderElastic" for high-order elastic smoother, "HighOrder-
FastCurving" for fast curving algorithm, "Laplace2D" for Laplace smoothing, "Re-
locate2D" and "Relocate3D" for node relocation). If force is set apply the opti-
mization also to discrete entities. If dimTags is given, only apply the optimizer to
the given entities.
Input: method, force = False, niter = 1, dimTags = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (opt.py)
gmsh/model/mesh/recombine
Recombine the mesh of the current model.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/refine
Refine the mesh of the current model by uniformly splitting the elements.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/setOrder
Set the order of the elements in the mesh of the current model to order.
Input: order
Output: -
Return: -
Appendix D: Gmsh API 265
Language-specific definition:
C++, C, Python, Julia
Examples: Python (periodic.py)
gmsh/model/mesh/getLastEntityError
Get the last entities (if any) where a meshing error occurred. Currently only popu-
lated by the new 3D meshing algorithms.
Input: -
Output: dimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getLastNodeError
Get the last nodes (if any) where a meshing error occurred. Currently only populated
by the new 3D meshing algorithms.
Input: -
Output: nodeTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/clear
Clear the mesh, i.e. delete all the nodes and elements, for the entities dimTags. if
dimTags is empty, clear the whole mesh. Note that the mesh of an entity can only
be cleared if this entity is not on the boundary of another entity with a non-empty
mesh.
Input: dimTags = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (copy mesh.py, flatten.py)
gmsh/model/mesh/getNodes
Get the nodes classified on the entity of dimension dim and tag tag. If tag < 0, get
the nodes for all entities of dimension dim. If dim and tag are negative, get all the
nodes in the mesh. nodeTags contains the node tags (their unique, strictly positive
identification numbers). coord is a vector of length 3 times the length of nodeTags
that contains the x, y, z coordinates of the nodes, concatenated: [n1x, n1y, n1z, n2x,
...]. If dim >= 0 and returnParamtricCoord is set, parametricCoord contains the
parametric coordinates ([u1, u2, ...] or [u1, v1, u2, ...]) of the nodes, if available.
The length of parametricCoord can be 0 or dim times the length of nodeTags. If
includeBoundary is set, also return the nodes classified on the boundary of the
entity (which will be reparametrized on the entity if dim >= 0 in order to compute
their parametric coordinates).
Input: dim = -1, tag = -1, includeBoundary = False,
returnParametricCoord = True
266 Gmsh 4.7.1
gmsh/model/mesh/relocateNodes
Relocate the nodes classified on the entity of dimension dim and tag tag using their
parametric coordinates. If tag < 0, relocate the nodes for all entities of dimension
dim. If dim and tag are negative, relocate all the nodes in the mesh.
Input: dim = -1, tag = -1
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getElements
Get the elements classified on the entity of dimension dim and tag tag. If tag < 0,
get the elements for all entities of dimension dim. If dim and tag are negative, get
all the elements in the mesh. elementTypes contains the MSH types of the elements
(e.g. 2 for 3-node triangles: see getElementProperties to obtain the properties for
a given element type). elementTags is a vector of the same length as elementTypes;
each entry is a vector containing the tags (unique, strictly positive identifiers) of the
elements of the corresponding type. nodeTags is also a vector of the same length as
elementTypes; each entry is a vector of length equal to the number of elements of
the given type times the number N of nodes for this type of element, that contains
the node tags of all the elements of the given type, concatenated: [e1n1, e1n2, ...,
e1nN, e2n1, ...].
Input: dim = -1, tag = -1
Output: elementTypes, elementTags, nodeTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x1.cpp, adapt mesh.cpp, explore.cpp), Python (x1.py,
copy mesh.py, explore.py, flatten.py, test.py)
gmsh/model/mesh/getElement
Get the type and node tags of the element with tag tag. This function relies on an
internal cache (a vector in case of dense element numbering, a map otherwise); for
large meshes accessing elements in bulk is often preferable.
Input: elementTag
Output: elementType, nodeTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getElementByCoordinates
Search the mesh for an element located at coordinates (x, y, z). This function
performs a search in a spatial octree. If an element is found, return its tag, type
and node tags, as well as the local coordinates (u, v, w) within the reference element
corresponding to search location. If dim is >= 0, only search for elements of the
given dimension. If strict is not set, use a tolerance to find elements near the
search location.
Input: x, y, z, dim = -1, strict = False
Appendix D: Gmsh API 269
gmsh/model/mesh/preallocateBasisFunctionsOrientationForElements
Preallocate data before calling getBasisFunctionsOrientationForElements with
numTasks > 1. For C and C++ only.
Input: elementType, tag = -1
Output: basisFunctionsOrientation
Return: -
Language-specific definition:
C++, C
gmsh/model/mesh/getEdgeNumber
Get the global edge identifier edgeNum for an input list of node pairs, concatenated
in the vector edgeNodes. Warning: this is an experimental feature and will probably
change in a future release.
Input: edgeNodes
Output: edgeNum
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getLocalMultipliersForHcurl0
Get the local multipliers (to guarantee H(curl)-conformity) of the order 0 H(curl)
basis functions. Warning: this is an experimental feature and will probably change
in a future release.
Input: elementType, tag = -1
Output: localMultipliers
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getKeysForElements
Generate the keys for the elements of type elementType in the entity of tag tag,
for the functionSpaceType function space. Each key uniquely identifies a basis
function in the function space. If returnCoord is set, the coord vector contains the
x, y, z coordinates locating basis functions for sorting purposes. Warning: this is an
experimental feature and will probably change in a future release.
Input: elementType, functionSpaceType, tag = -1, returnCoord = True
Output: keys, coord
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getKeysForElement
Get the keys for a single element elementTag.
Input: elementTag, functionSpaceType, returnCoord = True
Output: keys, coord
Return: -
Appendix D: Gmsh API 275
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getNumberOfKeysForElements
Get the number of keys by elements of type elementType for function space named
functionSpaceType.
Input: elementType, functionSpaceType
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getInformationForElements
Get information about the keys. infoKeys returns information about the func-
tions associated with the keys. infoKeys[0].first describes the type of function
(0 for vertex function, 1 for edge function, 2 for face function and 3 for bubble
function). infoKeys[0].second gives the order of the function associated with the
key. Warning: this is an experimental feature and will probably change in a future
release.
Input: keys, elementType, functionSpaceType
Output: infoKeys
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/getBarycenters
Get the barycenters of all elements of type elementType classified on the entity of
tag tag. If primary is set, only the primary nodes of the elements are taken into
account for the barycenter calculation. If fast is set, the function returns the sum
of the primary node coordinates (without normalizing by the number of nodes). If
tag < 0, get the barycenters for all entities. If numTasks > 1, only compute and
return the part of the data indexed by task.
Input: elementType, tag, fast, primary, task = 0, numTasks = 1
Output: barycenters
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/preallocateBarycenters
Preallocate data before calling getBarycenters with numTasks > 1. For C and C++
only.
Input: elementType, tag = -1
Output: barycenters
Return: -
Language-specific definition:
C++, C
276 Gmsh 4.7.1
gmsh/model/mesh/getElementEdgeNodes
Get the nodes on the edges of all elements of type elementType classified on the
entity of tag tag. nodeTags contains the node tags of the edges for all the elements:
[e1a1n1, e1a1n2, e1a2n1, ...]. Data is returned by element, with elements in the
same order as in getElements and getElementsByType. If primary is set, only
the primary (begin/end) nodes of the edges are returned. If tag < 0, get the edge
nodes for all entities. If numTasks > 1, only compute and return the part of the data
indexed by task.
Input: elementType, tag = -1, primary = False, task = 0, numTasks = 1
Output: nodeTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (edges.cpp)
gmsh/model/mesh/getElementFaceNodes
Get the nodes on the faces of type faceType (3 for triangular faces, 4 for quad-
rangular faces) of all elements of type elementType classified on the entity of tag
tag. nodeTags contains the node tags of the faces for all elements: [e1f1n1, ...,
e1f1nFaceType, e1f2n1, ...]. Data is returned by element, with elements in the same
order as in getElements and getElementsByType. If primary is set, only the pri-
mary (corner) nodes of the faces are returned. If tag < 0, get the face nodes for all
entities. If numTasks > 1, only compute and return the part of the data indexed by
task.
Input: elementType, faceType, tag = -1, primary = False, task = 0,
numTasks = 1
Output: nodeTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (faces.cpp), Python (neighbors.py)
gmsh/model/mesh/getGhostElements
Get the ghost elements elementTags and their associated partitions stored in the
ghost entity of dimension dim and tag tag.
Input: dim, tag
Output: elementTags, partitions
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/setSize
Set a mesh size constraint on the model entities dimTags. Currently only entities of
dimension 0 (points) are handled.
Input: dimTags, size
Output: -
Appendix D: Gmsh API 277
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t16.cpp, t18.cpp, t21.cpp, adapt mesh.cpp), Python (t16.py,
t18.py, t21.py, adapt mesh.py, periodic.py, ...)
gmsh/model/mesh/setSizeAtParametricPoints
Set mesh size constraints at the given parametric points parametricCoord on the
model entity of dimension dim and tag tag. Currently only entities of dimension 1
(lines) are handled.
Input: dim, tag, parametricCoord, sizes
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/setSizeCallback
Set a global mesh size callback. The callback should take 5 arguments (dim, tag, x,
y and z) and return the value of the mesh size at coordinates (x, y, z).
Input: callback
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t10.cpp), Python (t10.py)
gmsh/model/mesh/removeSizeCallback
Remove the global mesh size callback.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/setTransfiniteCurve
Set a transfinite meshing constraint on the curve tag, with numNodes nodes dis-
tributed according to meshType and coef. Currently supported types are "Progres-
sion" (geometrical progression with power coef) and "Bump" (refinement toward
both extremities of the curve).
Input: tag, numNodes, meshType = "Progression", coef = 1.
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x2.cpp), Python (x2.py, terrain.py, terrain stl.py)
278 Gmsh 4.7.1
gmsh/model/mesh/setTransfiniteSurface
Set a transfinite meshing constraint on the surface tag. arrangement describes the
arrangement of the triangles when the surface is not flagged as recombined: cur-
rently supported values are "Left", "Right", "AlternateLeft" and "AlternateRight".
cornerTags can be used to specify the (3 or 4) corners of the transfinite interpola-
tion explicitly; specifying the corners explicitly is mandatory if the surface has more
that 3 or 4 points on its boundary.
Input: tag, arrangement = "Left", cornerTags = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x2.cpp, get data perf.cpp, square.cpp), Python (x2.py,
get data perf.py, terrain.py, terrain stl.py)
gmsh/model/mesh/setTransfiniteVolume
Set a transfinite meshing constraint on the surface tag. cornerTags can be used to
specify the (6 or 8) corners of the transfinite interpolation explicitly.
Input: tag, cornerTags = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x2.cpp), Python (x2.py, terrain.py, terrain stl.py)
gmsh/model/mesh/setTransfiniteAutomatic
Set transfinite meshing constraints on the model entities in dimTag. Transfinite
meshing constraints are added to the curves of the quadrangular surfaces and to
the faces of 6-sided volumes. Quadragular faces with a corner angle superior to
cornerAngle (in radians) are ignored. The number of points is automatically de-
termined from the sizing constraints. If dimTag is empty, the constraints are applied
to all entities in the model. If recombine is true, the recombine flag is automatically
set on the transfinite surfaces.
Input: dimTags = [], cornerAngle = 2.35, recombine = True
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x2.cpp), Python (x2.py)
gmsh/model/mesh/setRecombine
Set a recombination meshing constraint on the model entity of dimension dim and tag
tag. Currently only entities of dimension 2 (to recombine triangles into quadrangles)
are supported.
Input: dim, tag
Output: -
Appendix D: Gmsh API 279
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t11.cpp, x2.cpp), Python (t11.py, x2.py, poisson.py, terrain.py,
terrain stl.py)
gmsh/model/mesh/setSmoothing
Set a smoothing meshing constraint on the model entity of dimension dim and tag
tag. val iterations of a Laplace smoother are applied.
Input: dim, tag, val
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x2.cpp), Python (x2.py, terrain.py, terrain stl.py)
gmsh/model/mesh/setReverse
Set a reverse meshing constraint on the model entity of dimension dim and tag tag.
If val is true, the mesh orientation will be reversed with respect to the natural mesh
orientation (i.e. the orientation consistent with the orientation of the geometry). If
val is false, the mesh is left as-is.
Input: dim, tag, val = True
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/setAlgorithm
Set the meshing algorithm on the model entity of dimension dim and tag tag.
Currently only supported for dim == 2.
Input: dim, tag, val
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t5.cpp), Python (t5.py)
gmsh/model/mesh/setSizeFromBoundary
Force the mesh size to be extended from the boundary, or not, for the model entity
of dimension dim and tag tag. Currently only supported for dim == 2.
Input: dim, tag, val
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
280 Gmsh 4.7.1
gmsh/model/mesh/setCompound
Set a compound meshing constraint on the model entities of dimension dim and tags
tags. During meshing, compound entities are treated as a single discrete entity,
which is automatically reparametrized.
Input: dim, tags
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t12.cpp), Python (t12.py)
gmsh/model/mesh/setOutwardOrientation
Set meshing constraints on the bounding surfaces of the volume of tag tag so that
all surfaces are oriented with outward pointing normals. Currently only available
with the OpenCASCADE kernel, as it relies on the STL triangulation.
Input: tag
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/embed
Embed the model entities of dimension dim and tags tags in the (inDim, inTag)
model entity. The dimension dim can 0, 1 or 2 and must be strictly smaller than
inDim, which must be either 2 or 3. The embedded entities should not be part
of the boundary of the entity inTag, whose mesh will conform to the mesh of the
embedded entities.
Input: dim, tags, inDim, inTag
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t15.cpp), Python (t15.py, field dist surface.py)
gmsh/model/mesh/removeEmbedded
Remove embedded entities from the model entities dimTags. if dim is >= 0, only
remove embedded entities of the given dimension (e.g. embedded points if dim ==
0).
Input: dimTags, dim = -1
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/reorderElements
Reorder the elements of type elementType classified on the entity of tag tag ac-
cording to ordering.
Appendix D: Gmsh API 281
Examples: C++ (t13.cpp, x2.cpp), Python (t13.py, x2.py, glue and remesh stl.py,
remesh stl.py, terrain.py, ...)
gmsh/model/mesh/createTopology
Create a boundary representation from the mesh if the model does not have one (e.g.
when imported from mesh file formats with no BRep representation of the underlying
model). If makeSimplyConnected is set, enforce simply connected discrete surfaces
and volumes. If exportDiscrete is set, clear any built-in CAD kernel entities and
export the discrete entities in the built- in CAD kernel.
Input: makeSimplyConnected = True, exportDiscrete = True
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/mesh/computeHomology
Compute a basis representation for homology spaces after a mesh has been gener-
ated. The computation domain is given in a list of physical group tags domainTags;
if empty, the whole mesh is the domain. The computation subdomain for relative
homology computation is given in a list of physical group tags subdomainTags; if
empty, absolute homology is computed. The dimensions homology bases to be com-
puted are given in the list dim; if empty, all bases are computed. Resulting basis
representation chains are stored as physical groups in the mesh.
Input: domainTags = [], subdomainTags = [], dims = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t14.cpp), Python (t14.py)
gmsh/model/mesh/computeCohomology
Compute a basis representation for cohomology spaces after a mesh has been gener-
ated. The computation domain is given in a list of physical group tags domainTags;
if empty, the whole mesh is the domain. The computation subdomain for relative
cohomology computation is given in a list of physical group tags subdomainTags;
if empty, absolute cohomology is computed. The dimensions homology bases to be
computed are given in the list dim; if empty, all bases are computed. Resulting basis
representation cochains are stored as physical groups in the mesh.
Input: domainTags = [], subdomainTags = [], dims = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t14.cpp), Python (t14.py)
gmsh/model/mesh/computeCrossField
Compute a cross field for the current mesh. The function creates 3 views: the H
function, the Theta function and cross directions. Return the tags of the views
284 Gmsh 4.7.1
Input: -
Output: viewTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/addLine
Add a straight line segment in the built-in CAD representation, between the two
points with tags startTag and endTag. If tag is positive, set the tag explicitly;
otherwise a new tag is selected automatically. Return the tag of the line.
Input: startTag, endTag, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t5.cpp, t6.cpp, ...), Python (t1.py, t2.py,
t3.py, t5.py, t6.py, ...)
gmsh/model/geo/addCircleArc
Add a circle arc (strictly smaller than Pi) in the built-in CAD representation, be-
tween the two points with tags startTag and endTag, and with center centerTag.
If tag is positive, set the tag explicitly; otherwise a new tag is selected automati-
cally. If (nx, ny, nz) != (0, 0, 0), explicitly set the plane of the circle arc. Return
the tag of the circle arc.
Input: startTag, centerTag, endTag, tag = -1, nx = 0., ny = 0., nz = 0.
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t5.cpp), Python (t5.py)
gmsh/model/geo/addEllipseArc
Add an ellipse arc (strictly smaller than Pi) in the built-in CAD representation,
between the two points startTag and endTag, and with center centerTag and
major axis point majorTag. If tag is positive, set the tag explicitly; otherwise a new
tag is selected automatically. If (nx, ny, nz) != (0, 0, 0), explicitly set the plane of
the circle arc. Return the tag of the ellipse arc.
Input: startTag, centerTag, majorTag, endTag, tag = -1, nx = 0., ny = 0.,
nz = 0.
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/addSpline
Add a spline (Catmull-Rom) curve in the built-in CAD representation, going
through the points pointTags. If tag is positive, set the tag explicitly; other-
wise a new tag is selected automatically. Create a periodic curve if the first and last
points are the same. Return the tag of the spline curve.
Input: pointTags, tag = -1
Output: -
Return: integer value
Appendix D: Gmsh API 287
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t12.cpp), Python (t12.py)
gmsh/model/geo/addBSpline
Add a cubic b-spline curve in the built-in CAD representation, with pointTags
control points. If tag is positive, set the tag explicitly; otherwise a new tag is
selected automatically. Creates a periodic curve if the first and last points are the
same. Return the tag of the b-spline curve.
Input: pointTags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/addBezier
Add a Bezier curve in the built-in CAD representation, with pointTags control
points. If tag is positive, set the tag explicitly; otherwise a new tag is selected
automatically. Return the tag of the Bezier curve.
Input: pointTags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/addPolyline
Add a polyline curve in the built-in CAD representation, going through the points
pointTags. If tag is positive, set the tag explicitly; otherwise a new tag is selected
automatically. Create a periodic curve if the first and last points are the same.
Return the tag of the polyline curve.
Input: pointTags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/addCompoundSpline
Add a spline (Catmull-Rom) curve in the built-in CAD representation, going
through points sampling the curves in curveTags. The density of sampling points
on each curve is governed by numIntervals. If tag is positive, set the tag explicitly;
otherwise a new tag is selected automatically. Return the tag of the spline.
Input: curveTags, numIntervals = 5, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
288 Gmsh 4.7.1
gmsh/model/geo/addCompoundBSpline
Add a b-spline curve in the built-in CAD representation, with control points sam-
pling the curves in curveTags. The density of sampling points on each curve is
governed by numIntervals. If tag is positive, set the tag explicitly; otherwise a
new tag is selected automatically. Return the tag of the b-spline.
Input: curveTags, numIntervals = 20, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/addCurveLoop
Add a curve loop (a closed wire) in the built-in CAD representation, formed by
the curves curveTags. curveTags should contain (signed) tags of model entities of
dimension 1 forming a closed loop: a negative tag signifies that the underlying curve
is considered with reversed orientation. If tag is positive, set the tag explicitly;
otherwise a new tag is selected automatically. If reorient is set, automatically
reorient the curves if necessary. Return the tag of the curve loop.
Input: curveTags, tag = -1, reorient = False
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t5.cpp, t6.cpp, ...), Python (t1.py, t2.py,
t3.py, t5.py, t6.py, ...)
gmsh/model/geo/addPlaneSurface
Add a plane surface in the built-in CAD representation, defined by one or more
curve loops wireTags. The first curve loop defines the exterior contour; additional
curve loop define holes. If tag is positive, set the tag explicitly; otherwise a new tag
is selected automatically. Return the tag of the surface.
Input: wireTags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t5.cpp, t6.cpp, ...), Python (t1.py, t2.py,
t3.py, t5.py, t6.py, ...)
gmsh/model/geo/addSurfaceFilling
Add a surface in the built-in CAD representation, filling the curve loops in wireTags
using transfinite interpolation. Currently only a single curve loop is supported; this
curve loop should be composed by 3 or 4 curves only. If tag is positive, set the
tag explicitly; otherwise a new tag is selected automatically. Return the tag of the
surface.
Input: wireTags, tag = -1, sphereCenterTag = -1
Output: -
Appendix D: Gmsh API 289
gmsh/model/geo/revolve
Extrude the entities dimTags in the built-in CAD representation, using a rotation
of angle radians around the axis of revolution defined by the point (x, y, z) and
the direction (ax, ay, az). The angle should be strictly smaller than Pi. Return
extruded entities in outDimTags. If numElements is not empty, also extrude the
mesh: the entries in numElements give the number of elements in each layer. If
height is not empty, it provides the (cumulative) height of the different layers,
normalized to 1.
Input: dimTags, x, y, z, ax, ay, az, angle, numElements = [], heights = [],
recombine = False
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t3.cpp), Python (t3.py)
gmsh/model/geo/twist
Extrude the entities dimTags in the built-in CAD representation, using a combined
translation and rotation of angle radians, along (dx, dy, dz) and around the axis
of revolution defined by the point (x, y, z) and the direction (ax, ay, az). The
angle should be strictly smaller than Pi. Return extruded entities in outDimTags.
If numElements is not empty, also extrude the mesh: the entries in numElements
give the number of elements in each layer. If height is not empty, it provides the
(cumulative) height of the different layers, normalized to 1.
Input: dimTags, x, y, z, dx, dy, dz, ax, ay, az, angle, numElements = [],
heights = [], recombine = False
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t3.cpp), Python (t3.py)
gmsh/model/geo/translate
Translate the entities dimTags in the built-in CAD representation along (dx, dy,
dz).
Input: dimTags, dx, dy, dz
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t2.cpp), Python (t2.py)
gmsh/model/geo/rotate
Rotate the entities dimTags in the built-in CAD representation by angle radians
around the axis of revolution defined by the point (x, y, z) and the direction (ax,
ay, az).
Input: dimTags, x, y, z, ax, ay, az, angle
Appendix D: Gmsh API 291
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t2.cpp), Python (t2.py)
gmsh/model/geo/dilate
Scale the entities dimTag in the built-in CAD representation by factors a, b and
c along the three coordinate axes; use (x, y, z) as the center of the homothetic
transformation.
Input: dimTags, x, y, z, a, b, c
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/mirror
Mirror the entities dimTag in the built-in CAD representation, with respect to the
plane of equation a * x + b * y + c * z + d = 0.
Input: dimTags, a, b, c, d
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/symmetrize
Mirror the entities dimTag in the built-in CAD representation, with respect to the
plane of equation a * x + b * y + c * z + d = 0. (This is a synonym for mirror,
which will be deprecated in a future release.)
Input: dimTags, a, b, c, d
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/copy
Copy the entities dimTags in the built-in CAD representation; the new entities are
returned in outDimTags.
Input: dimTags
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t2.cpp), Python (t2.py)
292 Gmsh 4.7.1
gmsh/model/geo/remove
Remove the entities dimTags in the built-in CAD representation. If recursive is
true, remove all the entities on their boundaries, down to dimension 0.
Input: dimTags, recursive = False
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t6.cpp), Python (t6.py)
gmsh/model/geo/removeAllDuplicates
Remove all duplicate entities in the built-in CAD representation (different entities
at the same geometrical location).
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/splitCurve
Split the curve of tag tag in the built-in CAD representation, on the control points
pointTags. Return the tags curveTags of the newly created curves.
Input: tag, pointTags
Output: curveTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/getMaxTag
Get the maximum tag of entities of dimension dim in the built-in CAD representa-
tion.
Input: dim
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/setMaxTag
Set the maximum tag maxTag for entities of dimension dim in the built-in CAD
representation.
Input: dim, maxTag
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Appendix D: Gmsh API 293
gmsh/model/geo/addPhysicalGroup
Add a physical group of dimension dim, grouping the entities with tags tags in the
built-in CAD representation. Return the tag of the physical group, equal to tag if
tag is positive, or a new tag if tag < 0.
Input: dim, tags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t5.cpp), Python (t5.py)
gmsh/model/geo/removePhysicalGroups
Remove the physical groups dimTags from the built-in CAD representation. If
dimTags is empty, remove all groups.
Input: dimTags = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/synchronize
Synchronize the built-in CAD representation with the current Gmsh model. This
can be called at any time, but since it involves a non trivial amount of processing,
the number of synchronization points should normally be minimized. Without syn-
chronization the entities in the built-in CAD representation are not available to any
function outside of the built-in CAD kernel functions.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t5.cpp, t6.cpp, ...), Python (t1.py, t2.py,
t3.py, t5.py, t6.py, ...)
gmsh/model/geo/mesh/setSmoothing
Set a smoothing meshing constraint on the entity of dimension dim and tag tag in
the built-in CAD kernel representation. val iterations of a Laplace smoother are
applied.
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/mesh/setReverse
Set a reverse meshing constraint on the entity of dimension dim and tag tag in
the built-in CAD kernel representation. If val is true, the mesh orientation will be
reversed with respect to the natural mesh orientation (i.e. the orientation consistent
with the orientation of the geometry). If val is false, the mesh is left as-is.
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/mesh/setAlgorithm
Set the meshing algorithm on the entity of dimension dim and tag tag in the built-in
CAD kernel representation. Currently only supported for dim == 2.
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/geo/mesh/setSizeFromBoundary
Force the mesh size to be extended from the boundary, or not, for the entity of
dimension dim and tag tag in the built-in CAD kernel representation. Currently
only supported for dim == 2.
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
296 Gmsh 4.7.1
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp), Python (t19.py, closest point.py)
gmsh/model/occ/addEllipseArc
Add an ellipse arc in the OpenCASCADE CAD representation, between the two
points startTag and endTag, and with center centerTag and major axis point
majorTag. If tag is positive, set the tag explicitly; otherwise a new tag is selected
automatically. Return the tag of the ellipse arc. Note that OpenCASCADE does
not allow creating ellipse arcs with the major radius smaller than the minor radius.
Input: startTag, centerTag, majorTag, endTag, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addEllipse
Add an ellipse of center (x, y, z) and radii r1 and r2 along the x- and y-axes,
respectively, in the OpenCASCADE CAD representation. If tag is positive, set the
tag explicitly; otherwise a new tag is selected automatically. If angle1 and angle2
are specified, create an ellipse arc between the two angles. Return the tag of the
ellipse. Note that OpenCASCADE does not allow creating ellipses with the major
radius (along the x-axis) smaller than or equal to the minor radius (along the y-axis):
rotate the shape or use addCircle in such cases.
Input: x, y, z, r1, r2, tag = -1, angle1 = 0., angle2 = 2*pi
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addSpline
Add a spline (C2 b-spline) curve in the OpenCASCADE CAD representation, going
through the points pointTags. If tag is positive, set the tag explicitly; otherwise a
new tag is selected automatically. Create a periodic curve if the first and last points
are the same. Return the tag of the spline curve.
Input: pointTags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp, spline.cpp), Python (t19.py, spline.py)
gmsh/model/occ/addBSpline
Add a b-spline curve of degree degree in the OpenCASCADE CAD representation,
with pointTags control points. If weights, knots or multiplicities are not
provided, default parameters are computed automatically. If tag is positive, set the
tag explicitly; otherwise a new tag is selected automatically. Create a periodic curve
if the first and last points are the same. Return the tag of the b-spline curve.
298 Gmsh 4.7.1
gmsh/model/occ/addRectangle
Add a rectangle in the OpenCASCADE CAD representation, with lower left corner
at (x, y, z) and upper right corner at (x + dx, y + dy, z). If tag is positive, set the
tag explicitly; otherwise a new tag is selected automatically. Round the corners if
roundedRadius is nonzero. Return the tag of the rectangle.
Input: x, y, z, dx, dy, tag = -1, roundedRadius = 0.
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t17.cpp, t20.cpp, t21.cpp, adapt mesh.cpp, edges.cpp, ...), Python
(t17.py, t20.py, t21.py, adapt mesh.py, crack3d.py, ...)
gmsh/model/occ/addDisk
Add a disk in the OpenCASCADE CAD representation, with center (xc, yc, zc)
and radius rx along the x-axis and ry along the y-axis. If tag is positive, set the
tag explicitly; otherwise a new tag is selected automatically. Return the tag of the
disk.
Input: xc, yc, zc, rx, ry, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp, edges.cpp), Python (t19.py, poisson.py)
gmsh/model/occ/addPlaneSurface
Add a plane surface in the OpenCASCADE CAD representation, defined by one
or more curve loops (or closed wires) wireTags. The first curve loop defines the
exterior contour; additional curve loop define holes. If tag is positive, set the tag
explicitly; otherwise a new tag is selected automatically. Return the tag of the
surface.
Input: wireTags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: Python (field dist surface.py)
gmsh/model/occ/addSurfaceFilling
Add a surface in the OpenCASCADE CAD representation, filling the curve loop
wireTag. If tag is positive, set the tag explicitly; otherwise a new tag is selected
automatically. Return the tag of the surface. If pointTags are provided, force the
surface to pass through the given points.
Input: wireTag, tag = -1, pointTags = []
Output: -
Return: integer value
300 Gmsh 4.7.1
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addBSplineFilling
Add a BSpline surface in the OpenCASCADE CAD representation, filling the curve
loop wireTag. The curve loop should be made of 2, 3 or 4 BSpline curves. The
optional type argument specifies the type of filling: "Stretch" creates the flattest
patch, "Curved" (the default) creates the most rounded patch, and "Coons" creates
a rounded patch with less depth than "Curved". If tag is positive, set the tag
explicitly; otherwise a new tag is selected automatically. Return the tag of the
surface.
Input: wireTag, tag = -1, type = ""
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: Python (bspline filling.py)
gmsh/model/occ/addBezierFilling
Add a Bezier surface in the OpenCASCADE CAD representation, filling the curve
loop wireTag. The curve loop should be made of 2, 3 or 4 Bezier curves. The
optional type argument specifies the type of filling: "Stretch" creates the flattest
patch, "Curved" (the default) creates the most rounded patch, and "Coons" creates
a rounded patch with less depth than "Curved". If tag is positive, set the tag
explicitly; otherwise a new tag is selected automatically. Return the tag of the
surface.
Input: wireTag, tag = -1, type = ""
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addBSplineSurface
Add a b-spline surface of degree degreeU x degreeV in the OpenCASCADE CAD
representation, with pointTags control points given as a single vector [Pu1v1, ...
PunumPointsUv1, Pu1v2, ...]. If weights, knotsU, knotsV, multiplicitiesU or
multiplicitiesV are not provided, default parameters are computed automatically.
If tag is positive, set the tag explicitly; otherwise a new tag is selected automatically.
Return the tag of the b-spline surface.
Input: pointTags, numPointsU, tag = -1, degreeU = 3, degreeV = 3,
weights = [], knotsU = [], knotsV = [], multiplicitiesU = [],
multiplicitiesV = []
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: Python (bspline bezier patches.py)
Appendix D: Gmsh API 301
gmsh/model/occ/addBezierSurface
Add a Bezier surface in the OpenCASCADE CAD representation, with pointTags
control points given as a single vector [Pu1v1, ... PunumPointsUv1, Pu1v2, ...]. If
tag is positive, set the tag explicitly; otherwise a new tag is selected automatically.
Return the tag of the b-spline surface.
Input: pointTags, numPointsU, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: Python (bspline bezier patches.py)
gmsh/model/occ/addSurfaceLoop
Add a surface loop (a closed shell) in the OpenCASCADE CAD representation,
formed by surfaceTags. If tag is positive, set the tag explicitly; otherwise a new tag
is selected automatically. Return the tag of the surface loop. Setting sewing allows
to build a shell made of surfaces that share geometrically identical (but topologically
different) curves.
Input: surfaceTags, tag = -1, sewing = False
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addVolume
Add a volume (a region) in the OpenCASCADE CAD representation, defined by one
or more surface loops shellTags. The first surface loop defines the exterior bound-
ary; additional surface loop define holes. If tag is positive, set the tag explicitly;
otherwise a new tag is selected automatically. Return the tag of the volume.
Input: shellTags, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addSphere
Add a sphere of center (xc, yc, zc) and radius r in the OpenCASCADE CAD
representation. The optional angle1 and angle2 arguments define the polar angle
opening (from -Pi/2 to Pi/2). The optional angle3 argument defines the azimuthal
opening (from 0 to 2*Pi). If tag is positive, set the tag explicitly; otherwise a new
tag is selected automatically. Return the tag of the sphere.
Input: xc, yc, zc, radius, tag = -1, angle1 = -pi/2, angle2 = pi/2, angle3
= 2*pi
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
302 Gmsh 4.7.1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addTorus
Add a torus in the OpenCASCADE CAD representation, defined by its center (x,
y, z) and its 2 radii r and r2. If tag is positive, set the tag explicitly; otherwise a
new tag is selected automatically. The optional argument angle defines the angular
opening (from 0 to 2*Pi). Return the tag of the wedge.
Input: x, y, z, r1, r2, tag = -1, angle = 2*pi
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addThruSections
Add a volume (if the optional argument makeSolid is set) or surfaces in the Open-
CASCADE CAD representation, defined through the open or closed wires wireTags.
If tag is positive, set the tag explicitly; otherwise a new tag is selected automatically.
The new entities are returned in outDimTags. If the optional argument makeRuled
is set, the surfaces created on the boundary are forced to be ruled surfaces. If
maxDegree is positive, set the maximal degree of resulting surface.
Input: wireTags, tag = -1, makeSolid = True, makeRuled = False,
maxDegree = -1
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp), Python (t19.py)
gmsh/model/occ/addThickSolid
Add a hollowed volume in the OpenCASCADE CAD representation, built from an
initial volume volumeTag and a set of faces from this volume excludeSurfaceTags,
which are to be removed. The remaining faces of the volume become the walls of
the hollowed solid, with thickness offset. If tag is positive, set the tag explicitly;
otherwise a new tag is selected automatically.
Input: volumeTag, excludeSurfaceTags, offset, tag = -1
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/extrude
Extrude the entities dimTags in the OpenCASCADE CAD representation, using
a translation along (dx, dy, dz). Return extruded entities in outDimTags. If
numElements is not empty, also extrude the mesh: the entries in numElements
give the number of elements in each layer. If height is not empty, it provides the
(cumulative) height of the different layers, normalized to 1.
304 Gmsh 4.7.1
Input: dimTags, dx, dy, dz, numElements = [], heights = [], recombine =
False
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/revolve
Extrude the entities dimTags in the OpenCASCADE CAD representation, using
a rotation of angle radians around the axis of revolution defined by the point (x,
y, z) and the direction (ax, ay, az). Return extruded entities in outDimTags. If
numElements is not empty, also extrude the mesh: the entries in numElements
give the number of elements in each layer. If height is not empty, it provides
the (cumulative) height of the different layers, normalized to 1. When the mesh is
extruded the angle should be strictly smaller than 2*Pi.
Input: dimTags, x, y, z, ax, ay, az, angle, numElements = [], heights = [],
recombine = False
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/addPipe
Add a pipe in the OpenCASCADE CAD representation, by extruding the entities
dimTags along the wire wireTag. Return the pipe in outDimTags.
Input: dimTags, wireTag
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp), Python (t19.py)
gmsh/model/occ/fillet
Fillet the volumes volumeTags on the curves curveTags with radii radii. The
radii vector can either contain a single radius, as many radii as curveTags, or
twice as many as curveTags (in which case different radii are provided for the begin
and end points of the curves). Return the filleted entities in outDimTags. Remove
the original volume if removeVolume is set.
Input: volumeTags, curveTags, radii, removeVolume = True
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp), Python (t19.py)
Appendix D: Gmsh API 305
gmsh/model/occ/chamfer
Chamfer the volumes volumeTags on the curves curveTags with distances
distances measured on surfaces surfaceTags. The distances vector can either
contain a single distance, as many distances as curveTags and surfaceTags, or
twice as many as curveTags and surfaceTags (in which case the first in each
pair is measured on the corresponding surface in surfaceTags, the other on the
other adjacent surface). Return the chamfered entities in outDimTags. Remove the
original volume if removeVolume is set.
Input: volumeTags, curveTags, surfaceTags, distances, removeVolume =
True
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/fuse
Compute the boolean union (the fusion) of the entities objectDimTags and
toolDimTags in the OpenCASCADE CAD representation. Return the resulting
entities in outDimTags. If tag is positive, try to set the tag explicitly (only
valid if the boolean operation results in a single entity). Remove the object if
removeObject is set. Remove the tool if removeTool is set.
Input: objectDimTags, toolDimTags, tag = -1, removeObject = True,
removeTool = True
Output: outDimTags, outDimTagsMap
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (boolean.cpp, gui.cpp), Python (boolean.py, gui.py)
gmsh/model/occ/intersect
Compute the boolean intersection (the common parts) of the entities objectDimTags
and toolDimTags in the OpenCASCADE CAD representation. Return the resulting
entities in outDimTags. If tag is positive, try to set the tag explicitly (only valid if
the boolean operation results in a single entity). Remove the object if removeObject
is set. Remove the tool if removeTool is set.
Input: objectDimTags, toolDimTags, tag = -1, removeObject = True,
removeTool = True
Output: outDimTags, outDimTagsMap
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (boolean.cpp, gui.cpp), Python (boolean.py, gui.py)
gmsh/model/occ/cut
Compute the boolean difference between the entities objectDimTags and
toolDimTags in the OpenCASCADE CAD representation. Return the resulting
entities in outDimTags. If tag is positive, try to set the tag explicitly (only
valid if the boolean operation results in a single entity). Remove the object if
removeObject is set. Remove the tool if removeTool is set.
306 Gmsh 4.7.1
gmsh/model/occ/dilate
Scale the entities dimTags in the OpenCASCADE CAD representation by factors a,
b and c along the three coordinate axes; use (x, y, z) as the center of the homothetic
transformation.
Input: dimTags, x, y, z, a, b, c
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/mirror
Mirror the entities dimTags in the OpenCASCADE CAD representation, with re-
spect to the plane of equation a * x + b * y + c * z + d = 0.
Input: dimTags, a, b, c, d
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/symmetrize
Mirror the entities dimTags in the OpenCASCADE CAD representation, with re-
spect to the plane of equation a * x + b * y + c * z + d = 0. (This is a synonym for
mirror, which will be deprecated in a future release.)
Input: dimTags, a, b, c, d
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/affineTransform
Apply a general affine transformation matrix a (16 entries of a 4x4 matrix, by row;
only the 12 first can be provided for convenience) to the entities dimTags in the
OpenCASCADE CAD representation.
Input: dimTags, a
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/copy
Copy the entities dimTags in the OpenCASCADE CAD representation; the new
entities are returned in outDimTags.
Input: dimTags
Output: outDimTags
Return: -
308 Gmsh 4.7.1
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp, t20.cpp), Python (t19.py, t20.py)
gmsh/model/occ/remove
Remove the entities dimTags in the OpenCASCADE CAD representation. If
recursive is true, remove all the entities on their boundaries, down to dimension
0.
Input: dimTags, recursive = False
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t19.cpp, t20.cpp), Python (t19.py, t20.py)
gmsh/model/occ/removeAllDuplicates
Remove all duplicate entities in the OpenCASCADE CAD representation (different
entities at the same geometrical location) after intersecting (using boolean frag-
ments) all highest dimensional entities.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (bspline bezier patches.py)
gmsh/model/occ/healShapes
Apply various healing procedures to the entities dimTags (or to all the entities in the
model if dimTags is empty) in the OpenCASCADE CAD representation. Return
the healed entities in outDimTags. Available healing options are listed in the Gmsh
reference manual.
Input: dimTags = [], tolerance = 1e-8, fixDegenerated = True,
fixSmallEdges = True, fixSmallFaces = True, sewFaces = True,
makeSolids = True
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (bspline bezier patches.py, heal.py)
gmsh/model/occ/importShapes
Import BREP, STEP or IGES shapes from the file fileName in the OpenCAS-
CADE CAD representation. The imported entities are returned in outDimTags. If
the optional argument highestDimOnly is set, only import the highest dimensional
entities in the file. The optional argument format can be used to force the format
of the file (currently "brep", "step" or "iges").
Input: fileName, highestDimOnly = True, format = ""
Appendix D: Gmsh API 309
Output: outDimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t20.cpp), Python (t20.py)
gmsh/model/occ/importShapesNativePointer
Imports an OpenCASCADE shape by providing a pointer to a native OpenCAS-
CADE TopoDS_Shape object (passed as a pointer to void). The imported entities are
returned in outDimTags. If the optional argument highestDimOnly is set, only im-
port the highest dimensional entities in shape. For C and C++ only. Warning: this
function is unsafe, as providing an invalid pointer will lead to undefined behavior.
Input: shape, highestDimOnly = True
Output: outDimTags
Return: -
Language-specific definition:
C++, C
gmsh/model/occ/getEntities
Get all the OpenCASCADE entities. If dim is >= 0, return only the entities of the
specified dimension (e.g. points if dim == 0). The entities are returned as a vector
of (dim, tag) integer pairs.
Input: dim = -1
Output: dimTags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t20.cpp), Python (t20.py, bspline bezier patches.py)
gmsh/model/occ/getEntitiesInBoundingBox
Get the OpenCASCADE entities in the bounding box defined by the two points
(xmin, ymin, zmin) and (xmax, ymax, zmax). If dim is >= 0, return only the entities
of the specified dimension (e.g. points if dim == 0).
Input: xmin, ymin, zmin, xmax, ymax, zmax, dim = -1
Output: tags
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/getBoundingBox
Get the bounding box (xmin, ymin, zmin), (xmax, ymax, zmax) of the OpenCAS-
CADE entity of dimension dim and tag tag.
Input: dim, tag
Output: xmin, ymin, zmin, xmax, ymax, zmax
Return: -
310 Gmsh 4.7.1
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t20.cpp), Python (t20.py)
gmsh/model/occ/getMass
Get the mass of the OpenCASCADE entity of dimension dim and tag tag.
Input: dim, tag
Output: mass
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (step assembly.py, volume.py)
gmsh/model/occ/getCenterOfMass
Get the center of mass of the OpenCASCADE entity of dimension dim and tag tag.
Input: dim, tag
Output: x, y, z
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/getMatrixOfInertia
Get the matrix of inertia (by row) of the OpenCASCADE entity of dimension dim
and tag tag.
Input: dim, tag
Output: mat
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/getMaxTag
Get the maximum tag of entities of dimension dim in the OpenCASCADE CAD
representation.
Input: dim
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/setMaxTag
Set the maximum tag maxTag for entities of dimension dim in the OpenCASCADE
CAD representation.
Input: dim, maxTag
Output: -
Return: -
Appendix D: Gmsh API 311
Language-specific definition:
C++, C, Python, Julia
gmsh/model/occ/synchronize
Synchronize the OpenCASCADE CAD representation with the current Gmsh
model. This can be called at any time, but since it involves a non trivial amount
of processing, the number of synchronization points should normally be minimized.
Without synchronization the entities in the OpenCASCADE CAD representation
are not available to any function outside of the OpenCASCADE CAD kernel func-
tions.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t16.cpp, t17.cpp, t18.cpp, t19.cpp, t20.cpp, ...), Python (t16.py,
t17.py, t18.py, t19.py, t20.py, ...)
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (plugin.cpp), Python (plugin.py)
gmsh/view/getIndex
Get the index of the view with tag tag in the list of currently loaded views. This
dynamic index (it can change when views are removed) is used to access view options.
Input: tag
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x3.cpp), Python (t8.py, x3.py)
gmsh/view/getTags
Get the tags of all views.
Input: -
Output: tags
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (plugin.cpp), Python (t8.py, plugin.py)
gmsh/view/addModelData
Add model-based post-processing data to the view with tag tag. modelName iden-
tifies the model the data is attached to. dataType specifies the type of data, cur-
rently either "NodeData", "ElementData" or "ElementNodeData". step specifies
the identifier (>= 0) of the data in a sequence. tags gives the tags of the nodes or
elements in the mesh to which the data is associated. data is a vector of the same
length as tags: each entry is the vector of double precision numbers representing the
data associated with the corresponding tag. The optional time argument associate
a time value with the data. numComponents gives the number of data components
(1 for scalar data, 3 for vector data, etc.) per entity; if negative, it is automatically
inferred (when possible) from the input data. partition allows to specify data in
several sub-sets.
Input: tag, step, modelName, dataType, tags, data, time = 0.,
numComponents = -1, partition = 0
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (adapt mesh.cpp, plugin.cpp, view.cpp), Python (adapt mesh.py,
plugin.py, poisson.py, view.py)
Appendix D: Gmsh API 313
gmsh/view/addHomogeneousModelData
Add homogeneous model-based post-processing data to the view with tag tag. The
arguments have the same meaning as in addModelData, except that data is supposed
to be homogeneous and is thus flattened in a single vector. For data types that can
lead to different data sizes per tag (like "ElementNodeData"), the data should be
padded.
Input: tag, step, modelName, dataType, tags, data, time = 0.,
numComponents = -1, partition = 0
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x4.cpp), Python (x4.py, copy mesh.py)
gmsh/view/getModelData
Get model-based post-processing data from the view with tag tag at step step.
Return the data associated to the nodes or the elements with tags tags, as well as
the dataType and the number of components numComponents.
Input: tag, step
Output: dataType, tags, data, time, numComponents
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (get data perf.cpp, plugin.cpp), Python (get data perf.py,
plugin.py)
gmsh/view/getHomogeneousModelData
Get homogeneous model-based post-processing data from the view with tag tag
at step step. The arguments have the same meaning as in getModelData, except
that data is returned flattened in a single vector, with the appropriate padding if
necessary.
Input: tag, step
Output: dataType, tags, data, time, numComponents
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (get data perf.cpp), Python (get data perf.py)
gmsh/view/addListData
Add list-based post-processing data to the view with tag tag. List-based datasets
are independent from any model and any mesh. dataType identifies the data by
concatenating the field type ("S" for scalar, "V" for vector, "T" for tensor) and the
element type ("P" for point, "L" for line, "T" for triangle, "S" for tetrahedron, "I"
for prism, "H" for hexaHedron, "Y" for pyramid). For example dataType should
be "ST" for a scalar field on triangles. numEle gives the number of elements in
the data. data contains the data for the numEle elements, concatenated, with node
coordinates followed by values per node, repeated for each step: [e1x1, ..., e1xn,
e1y1, ..., e1yn, e1z1, ..., e1zn, e1v1..., e1vN, e2x1, ...].
314 Gmsh 4.7.1
Language-specific definition:
C++, C, Python, Julia
gmsh/view/setInterpolationMatrices
Set interpolation matrices for the element family type ("Line", "Triangle", "Quad-
rangle", "Tetrahedron", "Hexahedron", "Prism", "Pyramid") in the view tag. The
approximation of the values over an element is written as a linear combination of d
basis functions f i(u, v, w) = sum (j = 0, ..., d - 1) coef[i][j] u^exp[j][0] v^exp[j][1]
w^exp[j][2], i = 0, ..., d-1, with u, v, w the coordinates in the reference element. The
coef matrix (of size d x d) and the exp matrix (of size d x 3) are stored as vectors,
by row. If dGeo is positive, use coefGeo and expGeo to define the interpolation of
the x, y, z coordinates of the element in terms of the u, v, w coordinates, in exactly
the same way. If d < 0, remove the interpolation matrices.
Input: tag, type, d, coef, exp, dGeo = 0, coefGeo = [], expGeo = []
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x3.cpp), Python (x3.py)
gmsh/view/addAlias
Add a post-processing view as an alias of the reference view with tag refTag. If
copyOptions is set, copy the options of the reference view. If tag is positive use it
(and remove the view with that tag if it already exists), otherwise associate a new
tag. Return the view tag.
Input: refTag, copyOptions = False, tag = -1
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: Python (view combine.py)
gmsh/view/copyOptions
Copy the options from the view with tag refTag to the view with tag tag.
Input: refTag, tag
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
gmsh/view/combine
Combine elements (if what == "elements") or steps (if what == "steps") of all
views (how == "all"), all visible views (how == "visible") or all views having the
same name (how == "name"). Remove original views if remove is set.
Input: what, how, remove = True, copyOptions = True
Output: -
Return: -
316 Gmsh 4.7.1
Language-specific definition:
C++, C, Python, Julia
Examples: Python (view combine.py)
gmsh/view/probe
Probe the view tag for its value at point (x, y, z). Return only the value at step
step is step is positive. Return only values with numComp if numComp is positive.
Return the gradient of the value if gradient is set. Probes with a geometrical
tolerance (in the reference unit cube) of tolerance if tolerance is not zero. Re-
turn the result from the element described by its coordinates if xElementCoord,
yElementCoord and zElementCoord are provided.
Input: tag, x, y, z, step = -1, numComp = -1, gradient = False, tolerance
= 0., xElemCoord = [], yElemCoord = [], zElemCoord = []
Output: value
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x3.cpp), Python (x3.py)
gmsh/view/write
Write the view to a file fileName. The export format is determined by the file
extension. Append to the file if append is set.
Input: tag, fileName, append = False
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (x3.cpp, x4.cpp, adapt mesh.cpp, plugin.cpp, view.cpp, ...),
Python (x3.py, x4.py, adapt mesh.py, normals.py, plugin.py, ...)
gmsh/view/setVisibilityPerWindow
Set the global visibility of the view tag per window to value, where windowIndex
identifies the window in the window list.
Input: tag, value, windowIndex = 0
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t9.cpp, t21.cpp, get data perf.cpp, partition.cpp, plugin.cpp),
Python (t9.py, t21.py, crack3d.py, crack.py, get data perf.py, ...)
gmsh/plugin/setString
Set the string option option to the value value for plugin name.
Input: name, option, value
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t9.cpp), Python (t9.py)
gmsh/plugin/run
Run the plugin name.
Input: name
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t9.cpp, t21.cpp, get data perf.cpp, partition.cpp, plugin.cpp),
Python (t9.py, t21.py, crack3d.py, crack.py, get data perf.py, ...)
Examples: C++ (t8.cpp, custom gui.cpp, gui.cpp), Python (t8.py, custom gui.py,
gui.py, split window.py)
gmsh/fltk/wait
Wait at most time seconds for user interface events and return. If time < 0, wait
indefinitely. First automatically create the user interface if it has not yet been
initialized. Can only be called in the main thread.
Input: time = -1.
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (custom gui.cpp), Python (custom gui.py)
gmsh/fltk/update
Update the user interface (potentially creating new widgets and windows). First
automatically create the user interface if it has not yet been initialized. Can only
be called in the main thread: use awake("update") to trigger an update of the user
interface from another thread.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (custom gui.cpp), Python (custom gui.py)
gmsh/fltk/awake
Awake the main user interface thread and process pending events, and optionally
perform an action (currently the only action allowed is "update").
Input: action = ""
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (custom gui.cpp), Python (custom gui.py)
gmsh/fltk/lock
Block the current thread until it can safely modify the user interface.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (custom gui.cpp), Python (custom gui.py)
Appendix D: Gmsh API 319
gmsh/fltk/unlock
Release the lock that was set using lock.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (custom gui.cpp), Python (custom gui.py)
gmsh/fltk/run
Run the event loop of the graphical user interface, i.e. repeatedly call wait(). First
automatically create the user interface if it has not yet been initialized. Can only
be called in the main thread.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t1.cpp, t2.cpp, t3.cpp, t4.cpp, t5.cpp, ...), Python (t1.py, t2.py,
t3.py, t4.py, t5.py, ...)
gmsh/fltk/isAvailable
Check if the user interface is available (e.g. to detect if it has been closed).
Input: -
Output: -
Return: integer value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (custom gui.cpp), Python (custom gui.py)
gmsh/fltk/selectEntities
Select entities in the user interface. If dim is >= 0, return only the entities of the
specified dimension (e.g. points if dim == 0).
Input: dim = -1
Output: dimTags
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/fltk/selectElements
Select elements in the user interface.
Input: -
Output: elementTags
Return: integer value
320 Gmsh 4.7.1
Language-specific definition:
C++, C, Python, Julia
gmsh/fltk/selectViews
Select views in the user interface.
Input: -
Output: viewTags
Return: integer value
Language-specific definition:
C++, C, Python, Julia
gmsh/fltk/splitCurrentWindow
Split the current window horizontally (if how = "h") or vertically (if how = "v"),
using ratio ratio. If how = "u", restore a single window.
Input: how = "v", ratio = 0.5
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (split window.py)
gmsh/fltk/setCurrentWindow
Set the current window by speficying its index (starting at 0) in the list of all
windows. When new windows are created by splits, new windows are appended at
the end of the list.
Input: windowIndex = 0
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: Python (split window.py)
Input: -
Output: log
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t16.cpp), Python (t16.py)
gmsh/logger/stop
Stop logging messages.
Input: -
Output: -
Return: -
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (t16.cpp), Python (t16.py)
gmsh/logger/getWallTime
Return wall clock time.
Input: -
Output: -
Return: floating point value
Language-specific definition:
C++, C, Python, Julia
Examples: C++ (custom gui.cpp, import perf.cpp), Python (import perf.py)
gmsh/logger/getCpuTime
Return CPU time.
Input: -
Output: -
Return: floating point value
Language-specific definition:
C++, C, Python, Julia
gmsh/logger/getLastError
Return last error message, if any.
Input: -
Output: error
Return: -
Language-specific definition:
C++, C, Python, Julia
Appendix E: Information for developers 325
• Use memory checking tools to detect memory leaks and other nasty memory problems. For
example, on Linux you can use valgrind --leak-check=full gmsh file.geo -3.
On Unix try ‘ldd gmsh’ (or ‘otool -L gmsh’ on Mac OS X) to check if all the required shared
libraries are installed on your system. If not, install them. If it still doesn’t work, recompile
Gmsh from the source code.
2. Gmsh keeps re-displaying its graphics when other windows partially hide the graphical
window.
Disable opaque move in your window manager.
3. The graphics display very slowly.
Are you are executing Gmsh from a remote host (via the network) without GLX? You
should turn double buffering off (with the ‘-nodb’ command line option).
4. There is an ugly “ghost triangulation” in the vector PostScript/PDF files generated by
Gmsh!
No, there isn’t. This “ghost triangulation” is due to the fact that most PostScript previewers
nowadays antialias the graphic primitives when they display the page on screen. (For
example, in gv, you can disable antialising with the ‘State->Antialias’ menu.) You should
not see this ghost triangulation in the printed output (on paper).
5. How can I save GIF, JPEG, ..., images?
Just choose the appropriate format in ‘File->Export’. By default Gmsh guesses the format
from the file extension, so you can just type ‘myfile.jpg’ in the dialog and Gmsh will
automatically create a JPEG image file.
6. How save high-resolution images?
You can specify the dimension in the dialog (e.g. set the width of the image to 5000 pixels;
leaving one dimension negative will rescale using the natural aspect ratio), or through the
Print.Width and Print.Height options. The maximum image size is graphics hardware
dependent.
7. How can I save MPEG, AVI, ..., animations?
You can create simple MPEG animations by choosing MPEG as the format in ‘File-
>Export’: this allows you to loop over time steps or post-processing data sets, or to change
parameters according to Print.Parameter. To create fully customized animations or to
use different output formats (AVI, MP4, etc.) you should write a script. Have a look at
Section A.8 [t8], page 140 or demos/post processing/anim.script for some examples.
8. Can I change values in input fields with the mouse in the GUI?
Yes: dragging the mouse in a numeric input field slides the value! The left button moves
one step per pixel, the middle by ‘10*step’, and the right button by ‘100*step’.
9. Can I copy messages to the clipboard?
Yes: selecting the content of an input field, or lines in the message console (‘Tools->Message
Console’), copies the selected text to the clipboard.
• you may save the unrolled geometry in another file (e.g. with gmsh file.geo -0), and
use this new file for subsequent computations;
• or you may set the Geometry.AutoCoherence option to 0. This will prevent any
automatic duplicate check/replacement. If you still need to remove the duplicates
entities, simply add Coherence; at strategic locations in your .geo files (e.g. before
the creation of curve loops, etc.).
3. How can I display only selected parts of my model?
Use ‘Tools->Visibility’. This allows you to select elementary entities and physical groups,
as well as mesh elements, in a variety of ways (in a list or tree browser, by tag, interactively,
or per window).
4. Can I edit STEP/IGES/BRep models?
Yes: with the OpenCASCADE kernel (SetFactory("OpenCASCADE");), load the file (Merge
"file.step"; or ShapeFromFile("file.step");) and add the relevant scripting com-
mands after that to delete parts, create new parts or apply boolean operators. See e.g.
demos/boolean/import.geo.
5. Why are there surfaces missing when I export a STEP as an unrolled .geo file?
You should not export STEP models as .geo files. By design, Gmsh never translates from
one CAD format to another. The “unrolled GEO” feature is there for unrolling complex
GEO scripts. While it can indeed export a limited subset of geometrical entities created by
other CAD kernels, it’s there only for debugging purposes. If you want to modify a STEP
model, see the previous question.
6. How can I build modular geometries?
Define common geometrical objects and options in separate files or using Macro, reusable
in all your problem definition structures. Or use the features of your language of choice and
the Gmsh API.
7. Some files take much more time to load with Gmsh 4 compared to Gmsh 3: what’s hap-
pening?
In Gmsh 4, some operations (Color, Show, Hide, BoundingBox, Boundary, PointsOf,
Periodic, In embedding constraints, ..) are now applied directly on the internal Gmsh
model, instead of being handled at the level of the CAD kernel. This implies a synchro-
nization between the CAD kernel and the Gmsh model. To minimize the number of syn-
chronizations (which can become costly for large models), you should always create your
geometry first; and use these commands once the geometry has been created.
3. How can I only save tetrahedral elements (not triangles and lines)?
By default, if physical groups are defined, the output mesh only contains those elements
that belong to physical entities. So to save only 3D elements, simply define one (or more)
physical volume(s) and don’t define any physical surfaces, physical curves or physical points.
4. How can I remove mesh nodes for geometrical construction points (centers of spheres, etc.)
from output mesh file?
By default Gmsh saves all the geometrical entities and their associated mesh. In particular,
since each geometry point is meshed with a point element, defined by a mesh node, the
output file will contain one 0-D mesh element and one mesh node for each geometry point.
To remove such elements/nodes from the mesh, simply define physical groups for the entities
you want to save (see previous question).
5. My 2D meshes of IGES files present gaps between surfaces
IGES files do not contain the topology of the model, and tolerance problems can thus
appear when the OpenCASCADE importer cannot identify two (close) curves as actually
being identical.
The best solution is to not use IGES and use STEP instead. If you really have to use
IGES, check that you don’t have duplicate curves (e.g. by displaying their tags in the
GUI with ‘Tools->Options->Geometry->Visibility->Curve labels’). If there are duplicates,
try to change the geometrical tolerance and sew the faces (see options in ‘Tools->Options-
>Geometry->General’).
6. The quality of the elements generated by the 3D algorithm is very bad.
Use ‘Optimize quality’ in the mesh menu.
7. Non-recombined 3D extruded meshes sometimes fail.
The swapping algorithm is not very clever. Try to change the surface mesh a bit, or
recombine your mesh to generate prisms or hexahedra instead of tetrahedra.
8. Does Gmsh automatically couple unstructured tetrahedral meshes and structured hexahe-
dral meshed using pyramids?
Yes, but only if pyramids need to be created on a single side of the quadrangular surface
mesh.
9. Can I explicitly assign region tags to extruded layers?
No, this feature has been removed in Gmsh 2.0. You must use the standard entity tag
instead.
10. Did you remove the elliptic mesh generator in Gmsh 2.0?
Yes. You can achieve the same result by using the transfinite algorithm with smoothing
(e.g., with Mesh.Smoothing = 10).
11. Does Gmsh support curved elements?
Yes, just choose the appropriate order in the mesh menu after the mesh is completed.
High-order optimization tools are also available in the mesh menu. You can select the
order on the command line with e.g. -order 2, and activcate high-order optimization with
-optimize_ho.
12. Can I import an existing surface mesh in Gmsh and use it to build a 3D mesh?
Yes, you can import a surface mesh in any one of the supported mesh file formats, define a
volume, and mesh it. For an example see demos/simple geo/sphere-discrete.geo.
13. How do I define boundary conditions or material properties in Gmsh?
By design, Gmsh does not try to incorporate every possible definition of boundary conditions
or material properties—this is a job best left to the solver. Instead, Gmsh provides a simple
mechanism to tag groups of elements, and it is up to the solver to interpret these tags as
Appendix F: Frequently asked questions 331
boundary conditions, materials, etc. Associating tags with elements in Gmsh is done by
defining physical groups (Physical Points, Physical Curves, Physical Surfaces and Physical
Volumes). See the reference manual as well as the tutorials (in particular Section A.1 [t1],
page 127) for a detailed description and some examples.
14. How can I display only the mesh associated with selected geometrical entities?
See “How can I display only selected parts of my model?”.
15. How can I “explore” a mesh (for example, to see inside a complex structure)?
You can use ‘Tools->Clipping’ to clip the region of interest. You can define up to 6 clipping
planes in Gmsh (i.e., enough to define a “cube” inside your model) and each plane can
clip either the geometry, the mesh, the post-processing views, or any combination of the
above. The clipping planes are defined using the four coefficients A,B,C,D of the equation
A*x+B*y+C*y+D=0, which can be adjusted interactively by dragging the mouse in the
input fields.
16. What is the signification of SICN, Gamma and SIGE in Tools->Statistics?
They measure the quality of the tetrahedra in a mesh:
• SICN: signed inverse condition number
• Gamma: inscribed radius / circumscribed radius
• SIGE: signed inverse error on the gradient of FE solution
For the exact definitions, see Geo/MElement.cpp. The graphs plot the the number of
elements vs. the quality measure.
17. How can I save a mesh file with a given (e.g. older) MSH file format version?
• In the GUI: open ‘File->Export’, enter your ‘filename.msh’ and then pick the version
in the dropdown menu.
• On the command line: use the -format option (e.g. gmsh file.geo -format msh2
-2).
• In a .geo script: add the line Mesh.MshFileVersion = x.y; for any version number
x.y. You can also save this in your default options.
• In the API: gmsh::option::setNumber("Mesh.MshFileVersion", x.y).
As an alternative method, you can also not specify the format explicitly, and just choose a
filename with the .msh2 or .msh4 extension.
18. Why isn’t neighboring element information stored in the MSH file?
Each numerical method has its own requirements: it might need neighboring elements
connected by a node, an edge or a face; it might require a single layer or multiple layers;
it should include elements of lower dimension (boundaries) or not, go across geometrical
entities or mesh partitions or not, etc. Given the number of possibilities, generating the
appropriate information is thus best performed in the numerical solver itself. The Gmsh
API makes these computations easy: see for example demos/api/neighbors.py.
19. Could mesh edges/faces be stored in the MSH file?
Edge/faces can be easily generated from the information already available in the file (i.e.
nodes and elements), or through the Gmsh API: see for example demos/api/faces.cpp.
2. Can I launch Gmsh from my solver (instead of launching my solver from Gmsh) in order to
monitor a solution?
The simplest (but rather crude) approach if to re-launch Gmsh everytime you want to visual-
ize something (a simple C program showing how to do this is given in utils/misc/callgmsh.c).
Another approach is to modify your program so that it can communicate with Gmsh through
ONELAB over a socket, select ‘Always listen to incoming connection requests’ in the solver
option panel (or run gmsh with the -listen command line option), and Gmsh will always
listen for your program on the Solver.SocketName socket.
Using the Gmsh API, you can also directly embed Gmsh in your own solver, and use
ONELAB for interactive parameter definition and modification. See custom gui.py and
custom gui.cpp) for examples.
4.7.0 (November 5, 2020): API errors now throw exceptions with the last error
message (instead of an integer error code); API functions now print messages on
the terminal by default, and throw exceptions on all errors unless in
interactive mode; new API functions to retrieve "homogeneous" model-based data
(for improved Python performance), to set interpolation matrices for high-order
datasets, to assign "automatic" transfinite meshing constraints and to pass
native (C++, C, Python or Julia) mesh size callback; added option to save
high-order periodic nodes info; added support for scripted window splitting;
improved VTK reader; new MatrixOfInertia command; added support for Unicode
command line arguments on Windows; uniformized commands, options and field
option names to match the documented terminology (CharacteristicLength ->
MeshSize, geometry Line -> Curve, ...; old names are still accepted, but
deprecated); improved handling of complex periodic cases; removed bundled Mmg3D
and added support for stock Mmg 5; Gmsh now requires C++11 and CMake 3.1, and
uses Eigen by default instead of Blas/Lapack for dense linear algebra; small bug
fixes.
4.6.0 (June 22, 2020): new options to only generate initial 2D or 3D meshes
(without node insertion), and to only mesh non-meshed entities; added ability to
only remesh parts of discrete models; added support for mesh size fields and
embedded entities in HXT; improved reparametrization and partitioning code; new
OCC API functions to reduce the number of synchronizations for complex models;
new OCC spline surface interfaces; new functions and options to control the
first tag of entities, nodes and elements; fixed duplicated entities in STEP
output; improved mesh subdivision and high-order pipeline; MED output now
preserves node and element tags; small bug fixes.
4.5.6 (March 30, 2020): better calculation of OCC bounding boxes using STL; API
tutorials; small bug fixes.
4.5.5 (March 21, 2020): tooltips in GUI to help discovery of scripting options;
fixed MED IO of high-order elements; fixed OCC attribute search by bounding box;
fix parsing of mac-encoded scripts; new RecombineMesh command; added support for
extrusion of mixed-dimension entities with OCC; small bug fixes.
4.5.4 (February 29, 2020): periodic mesh optimization now ensures that the
master mesh is not modified; code cleanup; small bug fixes.
4.5.2 (January 30, 2020): periodic meshes now obey reorientation constraints;
physical group definitions now follow compound meshing constraints; small bug
fixes and improvements.
4.5.1 (December 28, 2019): new Min and Max commands in .geo files;
Mesh.MinimumCirclePoints now behaves the same with all geometry kernels; fixed
issue with UTF16-encoded home directories on Windows.
4.4.1 (July 25, 2019): small improvements (transfinite with degenerate curves,
renumbering for some mesh formats, empty MSH file sections, tunable accuracy of
compound meshes) and bug fixes (ellipse < pi, orientation and reclassification
of compound parts, serendip pyramids, periodic MeshAdapt robustness, invalidate
cache after mesh/addNodes).
4.4.0 (July 1, 2019): new STL remeshing workflow (with new ClassifySurfaces
command in .geo files); added API support for color options, mesh optimization,
recombination, smoothing and shape healing; exposed additional METIS options;
improved support for periodic entities (multiple curves with the same start/end
points, legacy MSH2 format, periodic surfaces with embedded entities); added
mesh renumbering also after interactive mesh modifications; improved support for
OpenCASCADE ellipse arcs; new interactive filter in visibility window; flatter
GUI; small bug fixes.
4.2.3 (April 3, 2019): added STL export by physical surface; added ability to
remove embedded entities; added handling of boundary entities in
addDiscreteEntity; small bug fixes.
4.2.2 (March 13, 2019): fixed regression in reading of extruded meshes; added
ability to export one solid per surface in STL format.
4.2.1 (March 7, 2019): fixed regression for STEP files without global compound
shape; added support for reading IGES labels and colors; improved search for
shared library in Python and Julia modules; improved Plugin(MeshVolume); updates
to the reference manual.
4.2.0 (March 5, 2019): new MSH4.1 revision of the MSH file format, with support
for size_t node and element tags (see the reference manual for detailed
changes); added support for reading STEP labels and colors with OCC CAF; changed
default "Geometry.OCCTargetUnit" value to none (i.e. use STEP file coordinates
Appendix G: Version history 337
* Incompatible API changes: changed type of node and element tags from int to
size_t to support (very) large meshes; changed logger/start,
mesh/getPeriodicNodes and mesh/setElementsByType.
4.1.5 (February 14, 2019): improved OpenMP parallelization, STL remeshing, mesh
partitioning and high-order mesh optimization; added classifySurfaces in API;
bug fixes.
4.1.3 (January 23, 2019): improved quad meshing; new options for automatic
full-quad meshes; save nodesets also for physical points (Abaqus, Tochnog); new
getPartitions, unpartition and removePhysicalName functions in API; small bug
fixes.
4.1.1 (January 20, 2019): added support for general affine transformations with
OpenCASCADE kernel; improved handling of boolean tolerance (snap vertices);
faster crossfield calculation by default (e.g. for Frontal-Delauany for quads
algorithm); fixed face vertices for PyramidN; renamed ONELAB "Action" and
"Button" parameters "ONELAB/Action" and "ONELAB/Button"; added support for
actions on any ONELAB button; added API functions for selections in user
interface.
4.1.0 (January 13, 2019): improved ONELAB and Fltk support in API; improved
renumbering of mesh nodes/elements; major code refactoring.
4.0.7 (December 9, 2018): fixed small memory leaks; removed unused code.
4.0.5 (November 17, 2018): new automatic hybrid mesh generation (pyramid layer)
when 3D Delaunay algorithm is applied to a volume with quadrangles on boundary;
improved robustness of 2D MeshAdapt algorithm; bug fixes.
4.0.2 (September 26, 2018): added support for creating MED files with specific
MED (minor) version; small bug fixes.
4.0.0 (August 22, 2018): new C++, C, Python and Julia API; new MSH4 format; new
mesh partitioning code based on Metis 5; new 3D tetrahedralization algorithm as
default; new workflow for remeshing (compound entities as meshing constraints,
CreateGeometry for mesh reparametrization); added support for general BSplines,
fillets and chamfers with OpenCASCADE kernel and changed default BSpline
338 Gmsh 4.7.1
parameters with the built-in kernel to match OpenCASCADE’s; STEP files are now
be default interpreted in MKS units (see Geometry.OCCTargetUnit); improved
meshing of surfaces with singular parametrizations (spheres, etc.); uniformized
entity naming conventions (line/curve, vertex/node, etc.); generalized handling
of "all" entities in geo file (using {:} notation); added support for creating
LSDYNA mesh files; removed old CAD creation factory (GModelFactory), old
reparametrization code (G{Edge, Face, Region}Compound) and old partitioning
code (Metis 4 and Chaco); various cleanups, bug fixes and enhancements.
3.0.4 (July 28, 2017): moved vorometal code to plugin; OpenMP improvements; bug
fixes.
3.0.3 (June 27, 2017): new element quality measures; Block->Box; minor fixes.
3.0.2 (May 13, 2017): improved handling of meshing constraints and entity
numbering after boolean operations; improved handling of fast coarseness
transitions in MeshAdapt; new TIKZ export; small bug fixes.
3.0.1 (April 14, 2017): fixed OpenCASCADE plane surfaces with holes.
3.0.0 (April 13, 2017): new constructive solid geometry features and boolean
operations using OpenCASCADE; improved graphical user interface for interactive,
parametric geometry construction; new or modified commands in .geo files:
SetFactory, Circle, Ellipse, Wire, Surface, Sphere, Block, Torus, Rectangle,
Disk, Cylinder, Cone, Wedge, ThickSolid, ThruSections, Ruled ThruSections,
Fillet, Extrude, BooleanUnion, BooleanIntersection, BooleanDifference,
BooleanFragments, ShapeFromFile, Recursive Delete, Unique; "Surface" replaces
the deprecated "Ruled Surface" command; faster 3D tetrahedral mesh optimization
enabled by default; major code refactoring and numerous bug fixes.
2.16.0 (January 3, 2017): small improvements (list functions, second order hexes
for MED, GUI) and bug fixes.
2.14.1 (October 30, 2016): fixed regression in periodic meshes; small bug fixes
and code cleanups.
2.14.0 (October 9, 2016): new Tochnog file format export; added ability to
remove last command in scripts generated interactively; ONELAB 1.3 with
usability and performance improvements; faster "Coherence Mesh".
2.13.2 (August 18, 2016)): small improvements (scale labels, periodic and
high-order meshes) and bug fixes.
2.13.0 (July 11, 2016): new ONELAB 1.2 protocol with native support for lists;
new experimental 3D boundary recovery code and 3D refinement algorithm; better
adaptive visualization of quads and hexahedra; fixed several regressions
introduced in 2.12.
2.10.0 (July 21, 2015): improved periodic meshing constraints; new Physical
specification with both label and numeric id; images can now be used as glyphs
in post-processing views, using text annotations with the ‘file://’ prefix;
Views can be grouped and organized in subtrees; improved visibility browser
navigation; geometrical entities and post-processing views can now react to
double-clicks, via new generic DoubleClicked options; new Get/SetNumber and
Get/SetString for direct access to ONELAB variables; small bug fixes and code
cleanups.
2.9.2 (March 31, 2015): added support for extrusion of embedded points/curves;
improved hex-dominant algorithm; fixed crashes in quad algorithm; fix regression
in MED reader introduced in 2.9.0; new dark interface mode.
2.9.0 (March 12, 2015): improved robustness of spatial searches (extruded meshes,
geometry coherence); improved reproductibility of 2D and 3D meshes; added
support for high resolution ("retina") graphics; interactive graph point
commands; on-the-fly creation of onelab clients in scripts; general periodic
meshes using afine transforms; scripted selection of entities in bounding boxes;
extended string and list handling functions; many small improvements and bug
fixes.
2.8.5 (Jul 9, 2014): improved stability and error handling, better Coherence
function, updated onelab API version and inline parameter definitions, new
background image modes, more robust Triangulate/Tetrahedralize plugins, new PGF
output, improved support for string~index variable names in parser, small
improvements and bug fixes all over the place.
2.8.3 (Sep 27, 2013): new quick access menu and multiple view selection in GUI;
enhanced animation creation; many small enhancements and bug fixes.
2.8.2 (Jul 16, 2013): improved high order tools interface; minor bug fixes.
2.8.1 (Jul 11, 2013): improved compound surfaces and transfinite arrangements.
2.8.0 (Jul 8, 2013): improved Delaunay point insertion; fixed mesh orientation
of plane surfaces; fixed mesh size prescribed at embedded points; improved
display of vectors at COG; new experimental text string display engines;
improved fullscreen mode; access time/step in transformations; new experimental
features: AdaptMesh and Surface In Volume; accept unicode file paths on Windows;
compilation and bug fixes.
2.7.1 (May 11, 2013): improved Delaunay point insertion; updated onelab; better
Abaqus and UNV export; small bug and compilation fixes.
2.6.0 (Jun 19, 2012): new quadrilateral meshing algorithms (Blossom and
Delaunay-Frontal for quads); new solver module based on ONELAB project (requires
FLTK 1.3); new tensor field visualization modes (eigenvectors, ellipsoid, etc.);
added support for interpolation schemes in .msh file; added support for MED3
format; rescale viewport around visible entities (shift+1:1 in GUI); unified
post-processing field export; new experimental stereo+camera visualization mode;
added experimental BAMG & Mmg3D support for anisotropic mesh generation; new OCC
cut & merge algorithm imported from Salome; new ability to connect extruded
meshes to tetrahedral grids using pyramids; new homology solver; Abaqus (INP)
mesh export; new Python and Java wrappers; bug fixes and small improvements all
over the place.
2.5.0 (Oct 15, 2010): new compound geometrical entities (for remeshing and/or
trans-patch meshing); improved mesh reclassification tool; new client/server
visualization mode; new ability to watch a pattern of files to merge; new
integrated MPEG export; new option to force the type of views dynamically;
bumped mesh version format to 2.2 (small change in the meaning of the partition
tags; this only affects partitioned (i.e. parallel) meshes); renamed several
post-processing plugins (as well as plugin options) to make them easier to
understand; many bug fixes and usability improvements all over the place.
2.4.2 (Sep 21, 2009): solver code refactoring + better IDE integration.
2.4.1 (Sep 1, 2009): fixed surface mesh orientation bug introduced in 2.4.0;
mesh and graphics code refactoring, small usability enhancements and bug fixes.
2.4.0 (Aug 22, 2009): switched build system to CMake; optionally copy
transfinite mesh constraints during geometry transformations; bumped mesh
version format to 2.1 (small change in the $PhysicalNames section, where the
group dimension is now required); ported most plugins to the new
post-processing API; switched from MathEval to MathEx and Flu_Tree_Browser to
Fl_Tree; small bug fixes and improvements all over the place.
2.3.1 (Mar 18, 2009): removed GSL dependency (Gmsh now simply uses Blas and
Lapack); new per-window visibility; added support for composite window printing
and background images; fixed string option affectation in parser; fixed surface
mesh orientation for OpenCASCADE models; fixed random triangle orientations in
Delaunay and Frontal algorithms.
2.3.0 (Jan 23, 2009): major graphics and GUI code refactoring; new
full-quad/hexa subdivision algorithm; improved automatic transfinite corner
selection (now also for volumes); improved visibility browser; new automatic
adaptive visualization for high-order simplices; modified arrow size, clipping
planes and transform options; many improvements and bug fixes all over the
place.
2.2.6 (Nov 21, 2008): better transfinite smoothing and automatic corner
selection; fixed high order meshing crashes on Windows and Linux; new uniform
mesh refinement (thanks Brian!); fixed various other small bugs.
2.2.5 (Oct 25, 2008): Gmsh now requires FLTK 1.1.7 or above; various small
improvements (STL and VTK mesh I/O, Netgen upgrade, Visual C++ support, Fields,
Mesh.{Msh,Stl,...}Binary changed to Mesh.Binary) and bug fixes (pyramid
interpolation, Chaco crashes).
2.2.4 (Aug 14, 2008): integrated Metis and Chaco mesh partitioners; variables
can now be deleted in geo files; added support for point datasets in model-based
postprocessing views; small bug fixes.
2.2.3 (Jul 14, 2008): enhanced clipping interface; API cleanup; fixed various
bugs (Plugin(Integrate), high order meshes, surface info crash).
Appendix G: Version history 341
2.2.2 (Jun 20, 2008): added geometrical transformations on volumes; fixed bug in
high order mesh generation.
2.2.1 (Jun 15, 2008): various small improvements (adaptive views, GUI, code
cleanup) and bug fixes (high order meshes, Netgen interface).
2.2.0 (Apr 19, 2008): new model-based post-processing backend; added MED I/O for
mesh and post-processing; fixed BDF vertex ordering for 2nd order elements;
replaced Mesh.ConstrainedBackgroundMesh with
Mesh.CharacteristicLength{FromPoints,ExtendFromBoundary}; new Fields interface;
control windows are now non-modal by default; new experimental 2D frontal
algorithm; fixed various bugs.
2.1.1 (Mar 1, 2008): small bug fixes (second order meshes, combine views, divide
and conquer crash, ...).
2.0.8 (Jul 13, 2007): unused vertices are not saved in mesh files anymore; new
plugin GUI; automatic GUI font size selection; renamed
Plugin(DecomposeInSimplex) into Plugin(MakeSimplex); reintroduced enhanced
Plugin(SphericalRaise); clarified meshing algo names; new option to save groups
of nodes in UNV meshes; new background mesh infrastructure; many small
improvements and small bug fixes.
2.0.7 (Apr 3, 2007): volumes can now be defined from external CAD surfaces;
Delaunay/Tetgen algorithm is now used by default when available; re-added
support for Plot3D structured mesh format; added ability to export external CAD
models as GEO files (this only works for the limited set of geometrical
primitives available in the GEO language, of course--so trying to convert e.g. a
trimmed NURBS from a STEP file into a GEO file will fail); "lateral" entities
are now added at the end of the list returned by extrusion commands; fixed
various bugs.
2.0.0 (Feb 5, 2007): new geometry and mesh databases, with support for STEP and
IGES import via OpenCASCADE; complete rewrite of geometry and mesh drawing
code; complete rewrite of mesh I/O layer (with new native binary MSH format and
support for import/export of I-deas UNV, Nastran BDF, STL, Medit MESH and VRML
1.0 files); added support for incomplete second order elements; new 2D and 3D
meshing algorithms; improved integration of Netgen and TetGen algorithms;
removed anisotropic meshing algorithm (as well as attractors); removed explicit
region number specification in extrusions; option changes in the graphical
interface are now applied instantaneously; added support for offscreen rendering
using OSMesa; added support for SVG output; added string labels for Physical
entities; lots of other improvements all over the place.
1.65 (May 15, 2006): new Plugin(ExtractEdges); fixed compilation errors with
gcc4.1; replaced Plugin(DisplacementRaise) and Plugin(SphericalRaise) with the
more flexible Plugin(Warp); better handling of discrete curves; new Status
command in parser; added option to renumber nodes in .msh files (to avoid holes
in the numbering sequence); fixed 2 special cases in quad->prism extrusion;
fixed saving of 2nd order hexas with negative volume; small bug fixes and
cleanups.
1.64 (Mar 18, 2006): Windows versions do no depend on Cygwin anymore; various
bug fixes and cleanups.
1.63 (Feb 01, 2006): post-processing views can now be exported as meshes;
improved background mesh handling (a lot faster, and more accurate); improved
support for input images; new Plugin(ExtractElements); small bug fixes and
342 Gmsh 4.7.1
enhancements.
1.62 (Jan 15, 2006): new option to draw color gradients in the background;
enhanced perspective projection mode; new "lasso" selection mode (same as
"lasso" zoom, but in selection mode); new "invert selection" button in the
visibility browser; new snapping grid when adding points in the GUI; nicer
normal smoothing; new extrude syntax (old syntax still available, but
deprecated); various small bug fixes and enhancements.
1.61 (Nov 29, 2005): added support for second order (curved) elements in
post-processor; new version (1.4) of post-processing file formats; new stippling
options for 2D plots; removed limit on allowed number of files on command line;
all "Combine" operations are now available in the parser; changed
View.ArrowLocation into View.GlyphLocation; optimized memory usage when loading
many (>1000) views; optimized loading and drawing of line meshes and 2D iso
views; optimized handling of meshes with large number of physical entities;
optimized vertex array creation for large post-processing views on
Windows/Cygwin; removed Discrete Line and Discrete Surface commands (the same
functionality can now be obtained by simply loading a mesh in .msh format);
fixed coloring by mesh partition; added option to light wireframe meshes and
views; new "mesh statistics" export format; new full-quad recombine option; new
Plugin(ModulusPhase); hexas and prisms are now always saved with positive
volume; improved interactive entity selection; new experimental Tetgen
integration; new experimental STL remeshing algorithm; various small bug fixes
and improvements.
1.60 (Mar 15, 2005): added support for discrete curves; new Window menu on Mac
OS X; generalized all octree-based plugins (CutGrid, StreamLines, Probe, etc.)
to handle all element types (and not only scalar and vector
triangles+tetrahedra); generalized Plugin(Evaluate), Plugin(Extract) and
Plugin(Annotate); enhanced clipping plane interface; new grid/axes/rulers for 3D
post-processing views (renamed the AbscissaName, NbAbscissa and AbscissaFormat
options to more general names in the process); better automatic positioning of
2D graphs; new manipulator dialog to specify rotations, translations and
scalings "by hand"; various small enhancements and bug fixes.
1.59 (Feb 06, 2005): added support for discrete (triangulated) surfaces, either
in STL format or with the new "Discrete Surface" command; added STL and Text
output format for post-processing views and STL output format for surface
meshes; all levelset-based plugins can now also compute isovolumes; generalized
Plugin(Evaluate) to handle external view data (based on the same or on a
different mesh); generalized Plugin(CutGrid); new plugins (Eigenvalues,
Gradient, Curl, Divergence); changed default colormap to match Matlab’s "Jet"
colormap; new transformation matrix option for views (for non-destructive
rotations, symmetries, etc.); improved solver interface to keep the GUI
responsive during solver calls; new C++ and Python solver examples; simplified
Tools->Visibility GUI; transfinite lines with "Progression" now allow negative
line numbers to reverse the progression; added ability to retrieve Gmsh’s
version number in the parser (to help write backward compatible scripts); fixed
white space in unv mesh output; fixed various small bugs.
1.58 (Jan 01, 2005): fixed UNIX socket interface on Windows (broken by the TCP
solver patch in 1.57); bumped version number of default post-processing file
formats to 1.3 (the only small modification is the handling of the end-of-string
character for text2d and text3d objects in the ASCII format); new File->Rename
menu; new colormaps+improved colormap handling; new color+min/max options in
views; new GetValue() function to ask for values interactively in scripts;
generalized For/EndFor loops in parser; new plugins (Annotate, Remove, Probe);
new text attributes in views; renamed some shortcuts; fixed TeX output for large
scenes; new option dialogs for various output formats; fixed many small memory
leaks in parser; many small enhancements to polish the graphics and the user
interface.
1.57 (Dec 23, 2004): generalized displacement maps to display arbitrary view
types; the arrows representing a vector field can now also be colored by the
Appendix G: Version history 343
values from other scalar, vector or tensor fields; new adaptive high order
visualization mode; new options (Solver.SocketCommand, Solver.NameCommand,
View.ArrowSizeProportional, View.Normals, View.Tangents and General.ClipFactor);
fixed display of undesired solver plugin popups; enhanced interactive plugin
behavior; new plugins (HarmonicToTime, Integrate, Eigenvectors); tetrahedral
mesh file reading speedup (50% faster on large meshes); large memory footprint
reduction (up to 50%) for the visualization of triangular/tetrahedral meshes;
the solver interface now supports TCP/IP connections; new generalized raise mode
(allows to use complex expressions to offset post-processing maps); upgraded
Netgen kernel to version 4.4; new optional TIME list in parsed views to specify
the values of the time steps; several bug fixes in the Elliptic mesh algorithm;
various other small bug fixes and enhancements.
1.56 (Oct 17, 2004): new post-processing option to draw a scalar view raised by
a displacement view without using Plugin(DisplacementRaise) (makes drawing
arbitrary scalar fields on deformed meshes much easier); better post-processing
menu (arbitrary number of views+scrollable+show view number); improved
view->combine; new horizontal post-processing scales; new option to draw the
mesh nodes per element; views can now also be saved in "parsed" format; fixed
various path problems on Windows; small bug fixes.
1.55 (Aug 21, 2004): added background mesh support for Triangle; meshes can now
be displayed using "smoothed" normals (like post-processing views); added GUI
for clipping planes; new interactive clipping/cutting plane definition;
reorganized the Options GUI; enhanced 3D iso computation; enhanced lighting;
many small bug fixes.
1.54 (Jul 03, 2004): integrated Netgen (3D mesh quality optimization +
alternative 3D algorithm); Extrude Surface now always automatically creates a
new volume (in the same way Extrude Point or Extrude Line create new lines and
surfaces, respectively); fixed UNV output; made the "Layers" region numbering
consistent between lines, surfaces and volumes; fixed home directory problem on
Win98; new Plugin(CutParametric); the default project file is now created in the
home directory if no current directory is defined (e.g., when double-clicking on
the icon on Windows/Mac); fixed the discrepancy between the orientation of
geometrical surfaces and the associated surface meshes; added automatic
orientation of surfaces in surface loops; generalized Plugin(Triangulate) to
handle vector and tensor views; much nicer display of discrete iso-surfaces and
custom ranges using smooth normals; small bug fixes and cleanups.
1.53 (Jun 04, 2004): completed support for second order elements in the mesh
module (line, triangles, quadrangles, tetrahedra, hexahedra, prisms and
pyramids); various background mesh fixes and enhancements; major performance
improvements in mesh and post-processing drawing routines (OpenGL vertex arrays
for tri/quads); new Plugin(Evaluate) to evaluate arbitrary expressions on
post-processing views; generalized Plugin(Extract) to handle any combination of
components; generalized "Coherence" to handle transfinite surface/volume
attributes; plugin options can now be set in the option file (like all other
options); added "undo" capability during geometry creation; rewrote the contour
guessing routines so that entities can be selected in an arbitrary order; Mac
users can now double click on geo/msh/pos files in the Finder to launch Gmsh;
removed support for FLTK 1.0; rewrote most of the code related to quadrangles;
fixed 2d elliptic algorithm; removed all OpenGL display list code and options;
fixed light positioning; new BoundingBox command to set the bounding box
explicitly; added support for inexpensive "fake" transparency mode; many code
cleanups.
1.52 (May 06, 2004): new raster ("bitmap") PostScript/EPS/PDF output formats;
new Plugin(Extract) to extract a given component from a post-processing view;
new Plugin(CutGrid) and Plugin(StreamLines); improved mesh projection on
non-planar surfaces; added support for second order tetrahedral elements; added
interactive control of element order; refined mesh entity drawing selection (and
renamed most of the corresponding options); enhanced log scale in
post-processing; better font selection; simplified View.Raise{X,Y,Z} by removing
the scaling; various bug fixes (default postscript printing mode, drawing of 3D
344 Gmsh 4.7.1
1.51 (Feb 29, 2004): initial support for visualizing mesh partitions; integrated
version 2.0 of the MSH mesh file format; new option to compute post-processing
ranges (min/max) per time step; Multiple views can now be combined into multi
time step ones (e.g. for programs that generate data one time step at a time);
new syntax: #var[] returns the size of the list var[]; enhanced "gmsh -convert";
temporary and error files are now created in the home directory to avoid file
permission issues; new 3D arrows; better lighting support; STL facets can now be
converted into individual geometrical surfaces; many other small improvements
and bug fixes (multi timestep tensors, color by physical entity, parser cleanup,
etc.).
1.50 (Dec 06, 2003): small changes to the visibility browser + made visibility
scriptable (new Show/Hide commands); fixed (rare) crash when deleting views;
split File->Open into File->Open and File->New to behave like most other
programs; Mac versions now use the system menu bar by default (if possible);
fixed bug leading to degenerate and/or duplicate tetrahedra in extruded meshes;
fixed crash when reloading sms meshes.
1.49 (Nov 30, 2003): made Merge, Save and Print behave like Include (i.e., open
files in the same directory as the main project file if the path is relative);
new Plugin(DecomposeInSimplex); new option View.AlphaChannel to set the
transparency factor globally for a post-processing view; new "Combine Views"
command; various bug fixes and cleanups.
1.48 (Nov 23, 2003): new DisplacementRaise plugin to plot arbitrary fields on
deformed meshes; generalized CutMap, CutPlane, CutSphere and Skin plugins to
handle all kinds of elements and fields; new "Save View[n]" command to save
views from a script; many small bug fixes (configure tests for libpng, handling
of erroneous options, multi time step scalar prism drawings, copy of surface
mesh attributes, etc.).
1.47 (Nov 12, 2003): fixed extrusion of surfaces defined by only two curves; new
syntax to retrieve point coordinates and indices of entities created through
geometrical transformations; new PDF and compressed PostScript output formats;
fixed numbering of elements created with "Extrude Point/Line"; use $GMSH_HOME as
home directory if defined.
1.46 (Aug 23, 2003): fixed crash for very long command lines; new options for
setting the displacement factor and Triangle’s parameters + renamed a couple of
options to more sensible names (View.VectorType, View.ArrowSize); various small
bug fixes; documentation update.
1.45 (Jun 14, 2003): small bug fixes (min/max computation for tensor views,
missing physical points in read mesh, "jumping" geometry during interactive
manipulation of large models, etc.); variable definition speedup; restored
support for second order elements in one- and two-dimensional meshes;
documentation updates.
1.44 (Apr 21, 2003): new reference manual; added support for PNG output; fixed
small configure script bugs.
1.43 (Mar 28, 2003): fixed solver interface problem on Mac OS X; new option to
specify the interactive rotation center (default is now the pseudo "center of
gravity" of the object, instead of (0,0,0)).
1.42 (Mar 19, 2003): suppressed the automatic addition of a ".geo" extension if
the file given on the command line is not recognized; added missing Layer option
for Extrude Point; fixed various small bugs.
1.41 (Mar 04, 2003): Gmsh is now licensed under the GNU General Public License;
Appendix G: Version history 345
1.40 (Feb 26, 2003): various small bug fixes (mainly GSL-related).
1.39 (Feb 23, 2003): removed all non-free routines; more build system work;
implemented Von-Mises tensor display for all element types; fixed small GUI
bugs.
1.38 (Feb 17, 2003): fixed custom range selection for 3D iso graphs; new build
system based on autoconf; new image reading code to import bitmaps as
post-processing views.
1.37 (Jan 25, 2003): generalized smoothing and cuts of post-processing views;
better Windows integration (solvers, external editors, etc.); small bug fixes.
1.36 (Nov 20, 2002): enhanced view duplication (one can now use "Duplicata
View[num]" in the input file); merged all option dialogs in a new general option
window; enhanced discoverability of the view option menus; new 3D point and line
display; many small bug fixes and enhancements ("Print" format in parser,
post-processing statistics, smooth normals, save window positions, restore
default options, etc.).
1.35 (Sep 11, 2002): graphical user interface upgraded to FLTK 1.1 (tooltips,
new file chooser with multiple selection, full keyboard navigation, cut/paste of
messages, etc.); colors can be now be directly assigned to mesh entities;
initial tensor visualization; new keyboard animation (right/left arrow for time
steps; up/down arrow for view cycling); new VRML output format for surface
meshes; new plugin for spherical elevation plots; new post-processing file
format (version 1.2) supporting quadrangles, hexahedra, prisms and pyramids;
transparency is now enabled by default for post-processing plots; many small bug
fixes (read mesh, ...).
1.34 (Feb 18, 2002): improved surface mesh of non-plane surfaces; fixed
orientation of elements in 2D anisotropic algorithm; minor user interface polish
and additions (mostly in post-processing options); various small bug fixes.
1.32 (Oct 04, 2001): new visibility browser; better floating point exception
checks; fixed infinite looping when merging meshes in project files; various
small clean ups (degenerate 2D extrusion, view->reload, ...).
1.31 (Nov 30, 2001): corrected ellipses; PostScript output update (better
shading, new combined PS/LaTeX output format); more interface polish; fixed
extra memory allocation in 2D meshes; Physical Volume handling in unv format;
various small fixes.
1.30 (Nov 16, 2001): interface polish; fix crash when extruding quadrangles.
1.29 (Nov 12, 2001): translations and rotations can now be combined in
extrusions; fixed coherence bug in Extrude Line; various small bug fixes and
additions.
1.28 (Oct 30, 2001): corrected the ’Using Progression’ attribute for tranfinite
meshes to actually match a real geometric progression; new Triangulate plugin;
new 2D graphs (space+time charts); better performance of geometrical
transformations (warning: the numbering of some automatically created entities
has changed); new text primitives in post-processing views (file format updated
to version 1.1); more robust mean plane computation and error checks; various
other small additions and clean-ups.
1.27 (Oct 05, 2001): added ability to extrude curves with Layers/Recombine
attributes; new PointSize/LineWidth options; fixed For/EndFor loops in included
files; fixed error messages (line numbers+file names) in loops and functions;
346 Gmsh 4.7.1
1.25 (Sep 01, 2001): fixed bug with mixed recombined/non-recombined extruded
meshes; Linux versions are now build with no optimization, due to bugs in gcc
2.95.X.
1.24 (Aug 30, 2001): fixed characteristic length interpolation for Splines;
fixed edge swapping bug in 3D initial mesh; fixed degenerated case in
geometrical extrusion (ruled surface with 3 borders); fixed generation of
degenerated hexahedra and prisms for recombined+extruded meshes; added BSplines
creation in the GUI; integrated Jonathan Shewchuk’s Triangle as an alternative
isotropic 2D mesh generator; added AngleSmoothNormals to control sharp edge
display with smoothed normals; fixed random crash for lighted 3D iso surfaces.
1.22 (Aug 03, 2001): fixed (yet another) bug for 2D mesh in the mean plane;
fixed surface coherence bug in extruded meshes; new double logarithmic scale,
saturate value and smoothed normals option for post-processing views; plugins
are now enabled by default; three new experimental statically linked plugins:
CutMap (extracts a given iso surface from a 3D scalar map), CutPlane (cuts a 3D
scalar map with a plane section), CutSphere (cuts a 3D scalar map with a
sphere); various other bug fixes, additions and clean-ups.
1.21 (Jul 25, 2001): fixed more memory leaks; added -opt command line option to
parse definitions directly from the command line; fixed missing screen refreshes
during contour/surface/volume selection; enhanced string manipulation functions
(Sprintf, StrCat, StrPrefix); many other small fixes and clean-ups.
1.20 (Jun 14, 2001): fixed various bugs (memory leaks, functions in included
files, solver command selection, ColorTable option, duplicate nodes in extruded
meshes (not finished yet), infinite loop on empty views, orientation of
recombined quadrangles, ...); reorganized the interface menus; added constrained
background mesh and mesh visibility options; added mesh quality histograms;
changed default mesh colors; reintegrated the old command-line extrusion mesh
generator.
1.19 (May 07, 2001): fixed seg. fault for scalar simplex post-processing; new
Solver menu; interface for GetDP solver through sockets; fixed multiple scale
alignment; added some options + full option descriptions.
1.18 (Apr 26, 2001): fixed many small bugs and incoherences in post-processing;
fixed broken background mesh in 1D mesh generation.
1.17 (Apr 17, 2001): corrected physical points saving; fixed parsing of DOS
files (carriage return problems); easier geometrical selections (cursor change);
plugin manager; enhanced variable arrays (sublist selection and affectation);
line loop check; New arrow display; reduced number of ’fatal’ errors + better
handling in interactive mode; fixed bug when opening meshes; enhanced File->Open
behavior for meshes and post-processing views.
1.16 (Feb 26, 2001): added single/double buffer selection (only useful for Unix
Appendix G: Version history 347
versions of Gmsh run from remote hosts without GLX); fixed a bug for recent
versions of the opengl32.dll on Windows, which caused OpenGL fonts not to show
up.
1.15 (Feb 23, 2001): added automatic visibility setting during entity selection;
corrected geometrical extrusion bug.
1.14 (Feb 17, 2001): corrected a few bugs in the GUI (most of them were
introduced in 1.13); added interactive color selection; made the option database
bidirectional (i.e. scripts now correctly update the GUI); default options can
now be saved and automatically reloaded at startup; made some changes to the
scripting syntax (PostProcessing.View[n] becomes View[n]; Offset0 becomes
OffsetX, etc.); corrected the handling of simple triangular surfaces with large
characteristic lengths in the 2D isotropic algorithm; added an ASCII to binary
post-processing view converter.
1.13 (Feb 09, 2001): added support for JPEG output on Windows.
1.10 (Feb 04, 2001): switched from Motif to FLTK for the GUI. Many small tweaks.
1.00 (Jan 15, 2001): added PPM and YUV output; corrected nested If/Endif;
Corrected several bugs for pixel output and enhanced GIF output (dithering,
transparency); slightly changed the post-processing file format to allow both
single and double precision numbers.
0.999 (Dec 20, 2000): added JPEG output and easy MPEG generation (see t8.geo in
the tutorial); clean up of export functions; small fixes; Linux versions are now
compiled with gcc 2.95.2, which should fix the problems encountered with
Mandrake 7.2.
0.998 (Dec 19, 2000): corrected bug introduced in 0.997 in the generation of the
initial 3D mesh.
0.995 (Dec 11, 2000): totally rewritten geometrical database (performance has
been drastically improved for all geometrical transformations, and most notably
for extrusion). As a consequence, the internal numbering of geometrical entities
has changed: this will cause incompatibilities with old .geo files, and will
require a partial rewrite of your old .geo files if these files made use of
geometrical transformations. The syntax of the .geo file has also been
clarified. Many additions for scripting purposes. New extrusion mesh
generator. Preliminary version of the coupling between extruded and Delaunay
meshes. New option and procedural database. All interactive operations can be
scripted in the input files. See the last example in the tutorial for an
example. Many stability enhancements in the 2D and 3D mesh
algorithms. Performance boost of the 3D algorithm. Gmsh is still slow, but the
performance becomes acceptable. An average 1000 tetrahedra/second is obtained on
a 600Mhz computer for a mesh of one million tetrahedra. New anisotropic 2D mesh
algorithm. New (ASCII and binary) post-processing file format and clarified mesh
file format. New handling for interactive rotations (trackball mode). New
didactic interactive mesh construction (watch the Delaunay algorithm in real
time on complex geometries: that’s exciting ;-). And many, many bug fixes and
348 Gmsh 4.7.1
cleanups.
0.992 (Nov 13, 2000): corrected recombined extrusion; corrected ellipses; added
simple automatic animation of post-processing maps; fixed various bugs.
0.991 (Oct 24, 2000): fixed a serious allocation bug in 2D algorithm, which
caused random crashes. All users should upgrade to 0.991.
0.989 (Sep 01, 2000): added ability to reload previously saved meshes; some new
command line options; reorganization of the scale menu; GIF output.
0.987: fixed bug with smoothing (leading to the possible generation of erroneous
3d meshes); corrected bug for mixed 3D meshes; moved the ’toggle view link’
option to Opt->Postprocessing_Options.
0.986: fixed overlay problems; SGI version should now also run on 32 bits
machines; fixed small 3d mesh bug.
0.985: corrected colormap bug on HP, SUN, SGI and IBM versions; corrected small
initialization bug in postscript output.
0.982: lighting for mesh and post-processing; corrected 2nd order mesh on non
plane surfaces; added example 13.
Appendix H: Copyright and credits 349
Christophe Geuzaine
<cgeuzaine at uliege.be>
and
Jean-Francois Remacle
<jean-francois.remacle at uclouvain.be>
Thanks to the following folks who have contributed by providing fresh ideas on
theoretical or programming topics, who have sent patches, requests for changes
or improvements, or who gave us access to exotic machines for testing Gmsh: Juan
Abanto, Olivier Adam, Guillaume Alleon, Laurent Champaney, Pascal Dupuis,
Patrick Dular, Philippe Geuzaine, Johan Gyselinck, Francois Henrotte, Benoit
Meys, Nicolas Moes, Osamu Nakamura, Chad Schmutzer, Jean-Luc Fl’ejou, Xavier
Dardenne, Christophe Prud’homme, Sebastien Clerc, Jose Miguel Pasini, Philippe
Lussou, Jacques Kools, Bayram Yenikaya, Peter Hornby, Krishna Mohan Gundu,
Christopher Stott, Timmy Schumacher, Carl Osterwisch, Bruno Frackowiak, Philip
Kelleners, Romuald Conty, Renaud Sizaire, Michel Benhamou, Tom De Vuyst, Kris
Van den Abeele, Simon Vun, Simon Corbin, Thomas De-Soza, Marcus Drosson, Antoine
Dechaume, Jose Paulo Moitinho de Almeida, Thomas Pinchard, Corrado Chisari, Axel
Hackbarth, Peter Wainwright, Jiri Hnidek, Thierry Thomas, Konstantinos Poulios,
Laurent Van Miegroet, Shahrokh Ghavamian, Geordie McBain, Jose Paulo Moitinho de
Almeida, Guillaume Demesy, Wendy Merks-Swolfs, Cosmin Stefan Deaconu, Nigel
Nunn, Serban Georgescu, Julien Troufflard, Michele Mocciola, Matthijs Sypkens
Smit, Sauli Ruuska, Romain Boman, Fredrik Ekre, Mark Burton, Max Orok, Paul
Cristini, Isuru Fernando, Jose Paulo Moitinho de Almeida, Sophie Le Bras,
Alberto Escrig, Samy Mukadi, Peter Johnston, Bruno de Sousa Alves, Stefan
Bruens, Luca Verzeroli, Tristan Seidlhofer, Ding Jiaming, Joost Gevaert, Marcus
Calhoun-Lopez, Michel Zou, Sir Sunsheep, Mariano Forti, Walter Steffe, Nico
Schloemer, Simon Tournier, Alexandru Dadalau, Thomas Ulrich.
Special thanks to Bill Spitzak, Michael Sweet, Matthias Melcher, Greg Ercolano
and others for the Fast Light Tool Kit on which Gmsh’s GUI is based. See
http://www.fltk.org for more info on this excellent object-oriented,
350 Gmsh 4.7.1
cross-platform toolkit. Special thanks also to EDF for funding the original
OpenCASCADE and MED integration in 2006-2007.
The AVL tree code (Common/avl.{cpp,h}) and the YUV image code
(Graphics/gl2yuv.{cpp,h}) are copyright (C) 1988-1993, 1995 The Regents of the
University of California. Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in supporting
documentation, and that the name of the University of California not be used in
advertising or publicity pertaining to distribution of the software without
specific, written prior permission. The University of California makes no
representations about the suitability of this software for any purpose. It is
provided "as is" without express or implied warranty.
The GIF and PPM routines (Graphics/gl2gif.cpp) are based on code copyright (C)
1989, 1991, Jef Poskanzer. Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in supporting
documentation. This software is provided "as is" without express or implied
warranty.
* contrib/ANN copyright (C) 1997-2005 University of Maryland and Sunil Arya and
David Mount;
* contrib/MathEx based in part on the work of the SSCILIB Library, copyright (C)
2000-2003 Sadao Massago;
* contrib/voro++ from Voro++ Copyright (c) 2008, The Regents of the University
of California, through Lawrence Berkeley National Laboratory (subject to
receipt of any required approvals from the U.S. Dept. of Energy). All rights
reserved;
Appendix I License
Gmsh is provided under the terms of the GNU General Public License
(GPL), Version 2 or later, with the following exception:
Note that people who make modified versions of Gmsh are not
obligated to grant this special exception for their modified
versions; it is their choice whether to do so. The GNU General
Public License gives permission to release a modified version
without this exception; this exception also makes it possible to
release a modified version which carries forward this exception.
End of exception.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation’s software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
354 Gmsh 4.7.1
Also, for each author’s protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors’ reputations.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients’ exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
<one line to give the program’s name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
The hypothetical commands ‘show w’ and ‘show c’ should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than ‘show w’ and ‘show c’; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.
Concept index 359
Concept index
2 Expressions, lists . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
2D plots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 Extrusion, geometry. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
Extrusion, mesh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
3
3D plots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
F
FAQ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 327
File format, mesh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
A File formats. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
File, comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 349
Floating point numbers . . . . . . . . . . . . . . . . . . . . . . . . . . 21
API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 249
Frequently asked questions . . . . . . . . . . . . . . . . . . . . . . 327
Functions, built-in . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
B
Background mesh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 G
Binary operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Bindings, keyboard . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 General commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
Bindings, mouse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 Geometry commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
Boolean operations, geometry . . . . . . . . . . . . . . . . . . . . 41 Geometry, boolean operations . . . . . . . . . . . . . . . . . . . . 41
Bugs, reporting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Geometry, difference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Geometry, extrusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
Geometry, fragments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
C Geometry, intersection . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Geometry, module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
Changelog . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
Geometry, options. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Colors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Geometry, transformations . . . . . . . . . . . . . . . . . . . . . . . 41
Command-line options . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Geometry, union . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Commands, general . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
Graphs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
Commands, geometry . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
Commands, mesh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Commands, post-processing . . . . . . . . . . . . . . . . . . . . . . 73
Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
H
Concepts, index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 359 History, versions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
Conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Contributors, list . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 349
I
Copyright . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3, 349 Index, concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 359
Credits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 349 Index, syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 361
Curves, elementary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 Interactive mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
Curves, physical. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 Internet address . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
D K
Developer, information . . . . . . . . . . . . . . . . . . . . . . . . . . 325
Document syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 Keyboard, shortcuts. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
Download . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Keywords, index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 361
E L
Elementary curves . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 License . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3, 353
Elementary points. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 Lines . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
Elementary surfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 Loops . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
Elementary volumes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
Evaluation order . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127 M
Expressions, affectation . . . . . . . . . . . . . . . . . . . . . . . . . . 29 Macros, user-defined . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
Expressions, character . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 Mesh commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Expressions, color . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 Mesh size . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Expressions, definition . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 Mesh, background . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Expressions, floating point . . . . . . . . . . . . . . . . . . . . . . . 21 Mesh, element size . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Expressions, identifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 Mesh, extrusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
360 Gmsh 4.7.1
N S
Nodes, ordering . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112
Scale . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Non-interactive mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Shortcuts, keyboard . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
Numbers, real . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Size, elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Solver, module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
O Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
Surfaces, elementary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
Operating system . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Surfaces, physical . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
Operator precedence . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 Symmetry . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Operators, definition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 Syntax, index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 361
Options, command-line . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 Syntax, rules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Options, geometry . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Options, mesh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
Options, post-processing . . . . . . . . . . . . . . . . . . . . . . . . 103 T
Order, evaluation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
Ternary operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Transfinite, mesh . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
Transformations, geometry . . . . . . . . . . . . . . . . . . . . . . . 41
P Translation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Tutorial. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127
Physical curves. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
Physical points . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
Physical surfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 U
Physical volumes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 Unary operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Plots. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
Plugins, post-processing . . . . . . . . . . . . . . . . . . . . . . . . . . 77
Points, elementary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 V
Points, physical . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
Versions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
Post-processing commands . . . . . . . . . . . . . . . . . . . . . . . 73
Views . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
Post-processing plugins . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
Volumes, elementary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
Post-processing, module . . . . . . . . . . . . . . . . . . . . . . . . . . 73
Volumes, physical . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
Post-processing, options . . . . . . . . . . . . . . . . . . . . . . . . . 103
Precedence, operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
Programming, API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 249 W
Programming, notes. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 325
Web site . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Syntax index 361
Syntax index
! -info . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
! . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 -link int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
!= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 -listen. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-log filename . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-match . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
% -merge . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
% . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 -minterpreter string . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-n . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-new . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
& -nodb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-nopopup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
&& . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
-nt int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-numsubedges . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
( -o file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-open . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
-optimize[_netgen] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-optimize_ho . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
* -optimize_threshold . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-option file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 -order int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
*= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 -part int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-part_[no_]ghosts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
+ -part_[no_]physicals . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-part_[no_]topo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
-part_split . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
++ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
-part_topo_pro . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
+= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
-part_weight [tri,quad,tet,hex,pri,pyr,trih]
int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
- -pid . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-preserve_numbering_msh2 . . . . . . . . . . . . . . . . . . . . . . 13
- ................................................ 25
-pyinterpreter string . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-, -parse_and_exit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-rand value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
-reclassify angle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
-refine. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-0 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-reparam angle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-1, -2, -3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-a, -g, -m, -s, -p . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 -run . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-algo string . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 -save . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-aniso_max value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 -save_all . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-barycentric_refine . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 -save_parametric . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-bg file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 -save_topology . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-bgm file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 -setnumber name value . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-bin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 -setstring name value . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-camera. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 -smooth int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
-check . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 -smooth_ratio value . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-clcurv value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 -stereo. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-clmax value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 -string "string" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-clmin value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 -swapangle value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-clscale value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 -theme string . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-combine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 -tol value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
-convert files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 -v int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-cpu . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 -version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-display string . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 -watch pattern . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
-epslc1d value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-fontsize int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
-format string . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 /
-gamepad . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 / ................................................ 25
-help . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 /*, */ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
-help_options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
-ho_[min,max,nlayers] . . . . . . . . . . . . . . . . . . . . . . . . . 13 /= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
-ignore_periocity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
362 Gmsh 4.7.1