-
Notifications
You must be signed in to change notification settings - Fork 29
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
Add debug #70
Merged
Merged
Add debug #70
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
77b5efa
Update ufs-s2s-model
binli2337 5e1bd90
update FV3, MOM6 and NEMS
binli2337 a05d12a
Merge remote-tracking branch 'upstream/develop' into develop
binli2337 b5deed6
Merge branch 'develop' of https://github.com/ufs-community/ufs-s2s-mo…
binli2337 21c5620
Merge branch 'develop' of https://github.com/ufs-community/ufs-s2s-mo…
binli2337 288874f
Merge branch 'develop' of https://github.com/ufs-community/ufs-s2s-mo…
binli2337 8e0df44
Merge branch 'develop' of https://github.com/ufs-community/ufs-s2s-mo…
binli2337 fdcabca
Updated FV3.
binli2337 a3a964c
Merge branch 'develop' of https://github.com/ufs-community/ufs-s2s-mo…
binli2337 8f0b2eb
Revised compsets/fv3mom6cice5_ccpp.input, compsets/nemscommon.input.
binli2337 c07a6cc
Updated conf/before_components.mk.
binli2337 7efd277
Revised compsets/all.input and compsets/fv3mom6cice5_ccpp.input.
binli2337 5d37c48
Revised compsets/nemscommon.input and added log files.
binli2337 879140c
Update NEMS and .gitmodules.
binli2337 11bd1c7
Update .gitmodules and NEMS.
binli2337 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
Submodule NEMS
updated
28 files
+3 −0 | .gitignore | |
+1 −1 | .gitmodules | |
+7 −0 | GNUmakefile | |
+2,445 −0 | doc/Doxyfile.IN | |
+64 −0 | doc/Makefile | |
+48 −0 | doc/architecture.md | |
+15 −0 | doc/cap-doc.md | |
+95 −0 | doc/configuring.md | |
+12 −0 | doc/documentation.dox | |
+76 −0 | doc/introduction.md | |
+3 −0 | doc/make-images-fit.css | |
+239 −0 | doc/mediator.md | |
+21 −0 | doc/nemsmain.md | |
+234 −0 | doc/prep_inputs.py | |
+34 −0 | doc/scan_repo.pl | |
+1 −0 | src/MAIN_NEMS.F90 | |
+6 −0 | src/conf/module-setup.csh.inc | |
+6 −0 | src/conf/module-setup.sh.inc | |
+1 −0 | src/incmake/buildenv.mk | |
+9 −12 | src/incmake/component_CCPP.mk | |
+3 −0 | src/incmake/env/rdhpcs/detect.mk | |
+7 −0 | src/incmake/env/rdhpcs/orion.intel.mk | |
+10 −0 | src/incmake/env/ssec/detect.mk | |
+7 −0 | src/incmake/env/ssec/s4.intel.mk | |
+9 −0 | src/incmake/relist_components.mk | |
+2 −0 | src/module_NEMS_GRID_COMP.F90 | |
+1 −1 | src/module_NEMS_Rusage.F90 | |
+1 −1 | tests/produtil/NCEPLIBS-pyprodutil |
This file contains 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 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 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 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.
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.
You are not comparing the CICE restart file. I believe that is because you have not created one because the default compset you are using has:
DUMPFREQ_N="@[DAYS]"
DUMPFREQ='d'
In order to generate a CICE restart for a 6 hour run, you need to set
DUMPFREQ_N ="@[FHMAX]"
DUMPFREQ='h'
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 are correct. The cice_in will be updated in the next commit this week.
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.
So we will update the test to produce the ice restart file and also compare it, correct?