Skip to content
Snippets Groups Projects
Commit f9671e2f authored by Dennis Gläser's avatar Dennis Gläser
Browse files

Merge branch 'fix/test-for-gmsh4' into 'master'

[test] Explicitly tell gmsh to mesh in msh2 format

See merge request !1889
parents 0fdfa612 ec3dde5e
No related branches found
No related tags found
1 merge request!1889[test] Explicitly tell gmsh to mesh in msh2 format
...@@ -49,7 +49,7 @@ for permIndex in range(0, len(k)): ...@@ -49,7 +49,7 @@ for permIndex in range(0, len(k)):
geoFile.close() geoFile.close()
tmpGeoFile.close() tmpGeoFile.close()
subprocess.call(['gmsh', '-2', "grids/" + execName + ".geo"]) subprocess.call(['gmsh', '-format', 'msh2', '-2', "grids/" + execName + ".geo"])
subprocess.call(['./' + execName, 'params.input', subprocess.call(['./' + execName, 'params.input',
'-Vtk.OutputName', execName, '-Vtk.OutputName', execName,
'-Grid.File', "grids/" + execName + ".msh", '-Grid.File', "grids/" + execName + ".msh",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment