debug QSO export

scenarios
Theophile Terraz 2026-04-23 09:36:36 +02:00
parent 260efc17a9
commit 6c6da90952
1 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ class Mage(CommandLineSolver):
v0 = d[0] v0 = d[0]
v1 = d[1] v1 = d[1]
if t in ["HYD", "QSO", "LIM"]: if t in ["HYD", "LIM"]:
v0 /= 60 # Convert first column to minute v0 /= 60 # Convert first column to minute
f.write(f"{v0:9} {v1:9} \n") f.write(f"{v0:9} {v1:9} \n")
@ -989,7 +989,7 @@ class Mage8(Mage):
# Data # Data
for d in bound.data: for d in bound.data:
f.write(f"{d[0]:10.3f}{d[1]:10.3f}\n") f.write(f"{d[0]/60:10.3f}{d[1]:10.3f}\n")
return files return files