-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setting variables to 0 or 1 in call to driver.simulate results in an error #132
Comments
This presumably has to do with the |
I've just tested Setting them in the |
Now that this parameter choice works it should be tested. This is a clone of the beta_plane_gyre test, but with freesurfFac set to 1. Doing this requires an entire directory until #132 is fixed, since freesurfFac can't be altered in the call to `simulate`.
Stupid Python: |
That's awkward. |
slip
variable in call to driver.simulate results in an errorAs described in #132 parameters can't be set to 0 or 1 in the python wrapper due to numerical/boolean confusion issues.
Trying to override the value for
slip
in the config file by passing a new one todriver.simulate
results inslip
being set toyes
forslip=1.
, orno
forslip=0.
, rather than the numerical value.Setting it for a partial slip simulation, somewhere in the open interval (0, 1), produces the expected outcome.
The text was updated successfully, but these errors were encountered: