We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca4817b + 1cfc3e1 commit 65ea408Copy full SHA for 65ea408
parcels/_core/particleset.py
@@ -545,6 +545,7 @@ def execute(
545
546
if verbose_progress:
547
pbar = tqdm(total=(end_time - start_time) / np.timedelta64(1, "s"), file=sys.stdout)
548
+ pbar.set_description("Integration time: " + str(start_time))
549
550
next_output = start_time + sign_dt * outputdt if output_file else None
551
@@ -566,6 +567,7 @@ def execute(
566
567
next_output += outputdt
568
569
570
+ pbar.set_description("Integration time: " + str(time))
571
pbar.update((next_time - time) / np.timedelta64(1, "s"))
572
573
time = next_time
0 commit comments