We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d670331 commit a4d8e0cCopy full SHA for a4d8e0c
1 file changed
OMPython/ModelicaSystem.py
@@ -1911,8 +1911,8 @@ def worker(worker_id, task_queue):
1911
1912
sim_query_done = sim_query_total - self._sim_task_query.qsize()
1913
logger.info(f"[Worker {worker_id}] Task completed: {resultpath.name} "
1914
- f"({sim_query_done}/{sim_query_total} = "
1915
- f"{sim_query_done / sim_query_total * 100:.2f}% of tasks left)")
+ f"({sim_query_total - sim_query_done}/{sim_query_total} = "
+ f"{(sim_query_total - sim_query_done) / sim_query_total * 100:.2f}% of tasks left)")
1916
1917
logger.info(f"Start simulations for DoE with {sim_query_total} simulations "
1918
f"using {num_workers} workers ...")
0 commit comments