-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGmsh.yml
37 lines (37 loc) · 1.4 KB
/
Gmsh.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
description: |
See default tetrehedrization of gmsh.info
step: { # case of 'Gmsh' applied on a 'step' subfolder
#
# input output
# files ┌────────[Gmsh]────────┐ files
# │ │
# STEP --▶ │CAD_file mesh│ --▶ TET_MESH_MEDIT
# └──────────────────────┘
# ▲ ▲
# | |
# nb_threads characteristic_length_factor
#
executable: {
path: GMSH,
command_line: '{CAD_file} -3 -format mesh -o {mesh} -setnumber Mesh.CharacteristicLengthFactor {characteristic_length_factor} -nt {nb_threads}', # 'Mesh.MeshSizeFactor' or '-clscale' instead ?
},
output_folder: 'Gmsh_{characteristic_length_factor}',
arguments: {
input_files: {
CAD_file: STEP
},
output_files: { # will be emplaced inside the 'output_folder'
mesh: TET_MESH_MEDIT
},
others: {
characteristic_length_factor: {
default: 0.05,
description: "Mesh.CharacteristicLengthFactor option of Gmsh http://gmsh.info/doc/texinfo/gmsh.html"
},
nb_threads: {
default: 8,
description: "Number of threads used for the mesh computation. See '-nt' in http://gmsh.info/doc/texinfo/gmsh.html#Gmsh-command_002dline-interface"
}
}
}
}