-
Notifications
You must be signed in to change notification settings - Fork 230
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
Date in ocean_solo.res does not override nml as intended #1313
Comments
Sorry for only just now looking into this, I think we've all had a lot of distractions in the last two weeks. I think I see what you are saying. In the solo driver, Unsurprisingly, none of our tests ever evaluate this block: https://codecov.io/gh/NOAA-GFDL/MOM6/src/dev%2Fgfdl/config_src/solo_driver/MOM_driver.F90#L256 So I think you have a good point. Perhaps there was never an expectation of a calendar change in the middle of a set of runs. I'll run it past the others and see what the intended behavior is here. Thanks very much for noticing this. |
@herrwang0, I think that your proposed fix of adding
right before the line that first uses the value of There is a similar issue in @herrwang0, if you could, I would appreciate it if you would put in a PR with your solution to this issue, along with the analogous change to ice_solo_driver/ice_shelf_driver.F90. |
https://github.com/NOAA-GFDL/MOM6/blob/aee4df21e19ff1b816a40bd55bafb84f12e2b014/config_src/solo_driver/MOM_driver.F90#L254
It looks like the code is trying to locate
ocean_solo.res
indirs%restart_input_dir
. But if I interpreted it correctly,dirs
is not yet assigned here.I guess a hotfix could be simply adding something like
right before the line in question (in which case obviously
get_MOM_input
needs to be imported fromMOM_get_input
module).The text was updated successfully, but these errors were encountered: