Skip to content

Commit

Permalink
Added line to stop supersession dt from blowing up
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlhicks committed Apr 29, 2023
1 parent f4cab49 commit e336423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/qtensor3d
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def auto_run(path, *, overwrite=False, supersessions):
completed = resume_save(path, supersessions=supersessions)

if completed:
supersessions['dt'] *= 10
supersessions['dt'] *= 10 if supersessions['dt'] >= 1_000_000_000 else 1
continue

supersessions['dt'] *= 0.1
Expand Down

0 comments on commit e336423

Please sign in to comment.