Skip to content

Commit

Permalink
print correct dt time / total time
Browse files Browse the repository at this point in the history
  • Loading branch information
jhdark committed Oct 20, 2023
1 parent 07fe002 commit 0d71c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def siverts_law(T, S_0, E_S, pressure):
times = []
t = 0
progress = tqdm.autonotebook.tqdm(
desc="Solving H transport problem", total=final_time
desc="Solving H transport problem", total=final_time, unit_scale=True
)
while t < final_time:
progress.update(float(dt))
Expand Down

0 comments on commit 0d71c93

Please sign in to comment.