Skip to content

Commit

Permalink
Fixed how time prints in generic multiphysics solver
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaguer committed Aug 3, 2023
1 parent e17b7cf commit 7e75cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpnm/contrib/_generic_multiphysics.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def run(self, x0, tspan, interval=None, integrator=None, g_tol=None,
self.soln[alg.settings['quantity']] = soln
phase = network.project.phases[0]
for t in times:
print(t0)
print(f'Time: {str(t0)}')
# Initialize residuals & old/new fields for time marching
g_res = {}
g_old = {}
Expand Down

0 comments on commit 7e75cef

Please sign in to comment.