Skip to content

Commit

Permalink
Merge pull request festim-dev#714 from Allentro/Elapsed_type
Browse files Browse the repository at this point in the history
  • Loading branch information
RemDelaporteMathurin authored Mar 25, 2024
2 parents 09fccc2 + 63995a2 commit b5035d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion festim/generic_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def display_time(self):
elapsed_time = round(self.timer.elapsed()[0], 1)
msg = "{:.1f} % ".format(simulation_percentage)
msg += "{:.1e} s".format(self.t)
msg += " Ellapsed time so far: {:.1f} s".format(elapsed_time)
msg += " Elapsed time so far: {:.1f} s".format(elapsed_time)
if (
not np.isclose(self.t, self.settings.final_time, atol=0)
and self.log_level == 40
Expand Down

0 comments on commit b5035d6

Please sign in to comment.