We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1096c62 commit 6d40c65Copy full SHA for 6d40c65
1 file changed
OMPython/ModelicaSystem.py
@@ -1790,8 +1790,8 @@ def worker(worker_id, task_queue):
1790
1791
sim_query_done = sim_query_total - self._sim_task_query.qsize()
1792
logger.info(f"[Worker {worker_id}] Task completed: {resultpath.name} "
1793
- f"({sim_query_done}/{sim_query_total} = "
1794
- 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)")
1795
1796
logger.info(f"Start simulations for DoE with {sim_query_total} simulations "
1797
f"using {num_workers} workers ...")
0 commit comments