Commit 4f0f2514 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Config: Add default mage solver for new configuration.

Showing with 7 additions and 0 deletions
+7 -0
......@@ -250,6 +250,13 @@ class Config(SQL):
# Solvers
self._solvers = []
posix = os.name == 'posix'
ctor = solver_type_list["mage8"]
new = ctor("default-mage")
new._description = "Default PAMHYR mage 8 version"
new._cmd_solver = f"""@install_dir/mage/mage{"" if posix else ".exe"} -fp=1 @input"""
self._solvers.append(new)
# Meshing tool
self.meshing_tool = ""
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment