Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Switched default behavior of simulation class to *not* read an old binary file
  • Loading branch information
daminton committed Nov 7, 2022
1 parent 531a35d commit e999dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/swiftest/swiftest/simulation_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Simulation:
"""
This is a class that defines the basic Swift/Swifter/Swiftest simulation object
"""
def __init__(self, codename="Swiftest", param_file="param.in", readbin=True, verbose=True):
def __init__(self, codename="Swiftest", param_file="param.in", readbin=False, verbose=True):
self.ds = xr.Dataset()
self.param = {
'! VERSION': f"Swiftest parameter input",
Expand Down

0 comments on commit e999dd4

Please sign in to comment.