Skip to content

Commit

Permalink
Fixing type Ellapsed -> Elapsed
Browse files Browse the repository at this point in the history
  • Loading branch information
Allentro authored Mar 25, 2024
1 parent 583572d commit 63995a2
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 @@ -423,7 +423,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 63995a2

Please sign in to comment.