Some hot fix.

setup.py journees-modelisation-2024-3
Pierre-Antoine Rouby 2024-01-30 13:04:53 +01:00
parent 1d0aded01d
commit f4ca2650e5
2 changed files with 4 additions and 0 deletions

View File

@ -287,12 +287,14 @@ class MeshingWithMageMailleurTT(AMeshingTool):
return reach
with tempfile.TemporaryDirectory() as tmp:
logger.debug(f"temp file: {tmp}")
st_file = self.export_reach_to_st(reach, tmp)
m_file = st_file.rsplit(".ST", 1)[0] + ".M"
proc = QProcess()
proc.setWorkingDirectory(tmp)
logger.debug(f"mailleurTT '{st_file}, {m_file}, {str(step)}'")
proc.start(
self._exe_path(), [st_file, m_file, str(step)]
)

View File

@ -507,6 +507,8 @@ class Mage(CommandLineSolver):
name = bhs.name
if name == "":
name = f"HS_{bhs.id:>3}".replace(" ", "0")
else:
name = name.replace(" ", "_")
f.write(
f"{sin_dict[bhs._type]} " +