-
Notifications
You must be signed in to change notification settings - Fork 131
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
Fix for rare instability in (probabilistic) seabed stress #810
Fix for rare instability in (probabilistic) seabed stress #810
Conversation
my personal preference would be to credit Kate and Elizabeth in the commit authorship, or at least using a |
readthedocs failed but it seems to be on the clone, not necessarily a problem with the changes. Can this be relaunched somehow? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes look good to me. @kshedstrom, can you check whether this fixes the failure in your run?
Yes, CI can easily be relaunched by pushing a modified version of the branch. The easiest way to do that is to change the timestamp of the tip commit: git commit --amend --no-edit
git push --force but this will also re-run the GitHub actions. There is no way for us (non admins and non developers) to only relaunch specific checks (as far as I know). |
I see how to rerun GHActions but not readthedocs. Might have to re-commit and push as @phil-blain suggests. |
I also don't see how to restart the readthedocs manually, will google later, but feel free to force push an update to the branch. thanks. |
Yes, this version works for me. |
I am not sure I follow this...should I just do what Philippe proposes? git commit --amend --no-edit |
Yes, give it a shot and see if it makes the readthedocs check work correctly. |
…t rare instability
c5fb854
to
6ce76f1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
For detailed information about submitting Pull Requests (PRs) to the CICE-Consortium,
please refer to: https://github.com/CICE-Consortium/About-Us/wiki/Resource-Index#information-for-developers
PR checklist
Fix rare instability in probabilistic seabed stress (log of negative number).
K. Hedstrom, E. Hunke
@eclare108213
262 measured results of 262 total results
262 of 262 tests PASSED
0 of 262 tests PENDING
0 of 262 tests MISSING data
0 of 262 tests FAILED
All tests are BFB including the ones with probabilistic seabed stress. The old code had v_i = v_i - m_i2 and the new one has v_i = max((v_i - m_i2), puny). It looks like v_i - m_i**2 is always larger than puny in the tests of the base suite. Longer simulations could lead to small differences.
The only thing that was modified is the reference for the Dupont et al. paper which has been published.
This PR replaces PR Fix for rare instabilities in basal stress. #808.