Hmmm... I see. Well, what led me to ask was the result of the execution of gridgen example 6...
>> help gridgen
gridgen Grid generation for geometry objects.
...
6) Complex geometry with several holes and subdomains (using Gridgen2D).
...which produced the following output.
>> gridgen_ex6
Initializing Grid Generation...
Meshing Boundaries...
Pre-processing grid...
Meshing Subdomain 1...
Meshing Subdomain 2...
Meshing Subdomain 3...
Post-processing grid...
Joining subdomains 1 and 3...
Joining subdomains 1 and 2...
Grid Generation Done.
Grid Statistics:
number of grid points: 5323
number of grid cells: 10172
grid cell min area: 1.4332e-10
grid cell mean area: 1.3305e-09
grid cell max area: 3.0255e-08
grid cell min quality: 0.1190
grid cell mean quality: 0.9696
number of boundaries: 54
number of subdomains: 3
time for grid generation: 12.8990
>>
But perhaps this is because ex6 uses a 2D object...?
From gmsh 4.8.0 documentation I did find this:
General.Verbosity
Level of information printed on the terminal and the message console (0: silent except for fatal errors,
1: +errors, 2: +warnings, 3: +direct, 4: +information, 5: +status, 99: +debug)
Default value: 5
Saved in: General.OptionsFileName
and included in the command-line options:
-v int
Set verbosity level (General.Verbosity)
..from which get that a verbosity level without "Info:" can be specified in the gmsh call by, for example:
gmsh ... -v 3
If I understand this correctly, is there a way to add gmsh command-line arguments from the FEATool GUI ... perhaps Grid Generation Settings dialog, "Optional Parameters"?
-Randal