forked from NOAA-EMC/global-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate fcst resources and reorg configs
Resource settings for the forecast job were previously scattered between multiple files. These settings are now consolidated in config.resources. The total number of PEs is now calculated properly if different coupled models are included. The config.fcst script is updated to properly source component scripts if that component is on. New scripts for those components were created where needed, and settings were moved into the appropriate scripts (though it may be appropriate to relocate additional settings in the future). The special load of the wave config in the j-job is removed as it is no longer needed. CDUMP assignment had to be moved up in the j-job to occur before the config files are sourced so the correct settings are used. Undefined DO switches for stochastic components are added to prevent syntax errors downstream. Settings for do_ugwp, do_tofd, and launch_level are removed from the forecast config, as they are now set in the forecast script based on the CCPP suite. Refs: NOAA-EMC#416
- Loading branch information
1 parent
68385d9
commit 107e99f
Showing
7 changed files
with
125 additions
and
94 deletions.
There are no files selected for viewing
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
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/ksh -x | ||
|
||
export NX_GLB="1440" | ||
export NY_GLB="1080" | ||
export MESHICE="mesh.mx025.nc" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/ksh -x | ||
|
||
case "$CASE" in | ||
"C48") export OCNRES=100;; | ||
"C96") export OCNRES=100;; | ||
"C192") export OCNRES=050;; | ||
"C384") export OCNRES=025;; | ||
"C768") export OCNRES=025;; | ||
*) export OCNRES=025;; | ||
esac |
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