Skip to content

Commit

Permalink
fix: Fixed issue 27. Replaced "total_time[s]" by "total_time_s".
Browse files Browse the repository at this point in the history
  • Loading branch information
SilvinWillemsen authored and hqwang815 committed Jan 24, 2025
1 parent c963f9b commit 59dfe0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edg_acoustics/postprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def write_results(self, filename, file_format):
"Nt": self.sim.time_integrator.Nt,
"CFL": self.sim.time_integrator.CFL,
"rec": self.sim.rec,
"total_time[s]": self.sim.Ntimesteps * self.sim.time_integrator.dt,
"total_time_s": self.sim.Ntimesteps * self.sim.time_integrator.dt,
"N_tets": self.sim.N_tets,
},
)
Expand Down

0 comments on commit 59dfe0f

Please sign in to comment.