stellarmesh / stellarmesh

Create DAGMC geometry from CAD

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Integrate gmsh and stellarmesh loggers

akoen opened this issue · comments

Seems to not be doable easily as the logging module is not used

import gmsh
gmsh.initialize()
gmsh.option.set_number("General.Terminal", 0)
gmsh.open("refined.msh")
gmsh.write("refined2.msh")
logs = gmsh.logger.get()
print(logs)
gmsh.finalize()