-
Notifications
You must be signed in to change notification settings - Fork 21
Updates and fixes for ensemble runs #311
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
Open
alperaltuntas
wants to merge
6
commits into
ESCOMP:main
Choose a base branch
from
alperaltuntas:inst_suffix_fixes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f0f3f07
Add 3deg and 10deg test modifiers. Also add fast_mom test suite
alperaltuntas 4b3b4eb
Allow MOM_input template to have INST_SUFFIX as an expandable variable
alperaltuntas 40cb805
Fix multi-instance hybrid run initial conditions (restart) files by a…
alperaltuntas d668476
apply black formatting to FType_MOM_params.py
alperaltuntas 85462ca
Address comments
alperaltuntas ed01978
increate timestep for low-res testmods and bump up core MOM6
alperaltuntas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule MOM6
updated
71 files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
There are a few other instances of
os.path.join()where you did not switch toPathobjects -- is there a reason to change these variables but notCIMEROOTorMARBL_dir?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.
Yes, one of the MARBL functions (I think, MARBL_settings_for_MOM) didn't like receiving Path object instead of str. Since this update had already grown beyond what I was originally comfortable with, I decided not to push the changes further into those MARBL scripts. But it would be great to complete this transition in the remaining scripts, perhaps in a subsequent PR.
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.
Sounds good! I can look into transitioning the MARBL scripts to
Pathobjects, but it's going to be pretty low on my priority list :)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.
You should be able to pass the Path variable with str(varname)