We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7e48c commit 81b4840Copy full SHA for 81b4840
1 file changed
OMPython/ModelicaSystem.py
@@ -1796,8 +1796,8 @@ def worker(worker_id, task_queue):
1796
1797
sim_query_done = sim_query_total - self._sim_task_query.qsize()
1798
logger.info(f"[Worker {worker_id}] Task completed: {resultpath.name} "
1799
- f"({sim_query_done}/{sim_query_total} = "
1800
- 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)")
1801
1802
logger.info(f"Start simulations for DoE with {sim_query_total} simulations "
1803
f"using {num_workers} workers ...")
0 commit comments