diff --git a/Externals.cfg b/Externals.cfg index eb418c9b09..5bfc9ff979 100644 --- a/Externals.cfg +++ b/Externals.cfg @@ -8,7 +8,7 @@ protocol = git required = True [GSI] -tag = gfsda.v16.3.10 +tag = gfsda.v16.3.12 local_path = sorc/gsi.fd repo_url = https://github.com/NOAA-EMC/GSI.git protocol = git diff --git a/docs/Release_Notes.gfs.v16.3.12.md b/docs/Release_Notes.gfs.v16.3.12.md new file mode 100644 index 0000000000..3769f7e19a --- /dev/null +++ b/docs/Release_Notes.gfs.v16.3.12.md @@ -0,0 +1,126 @@ +GFS V16.3.12 RELEASE NOTES + +------- +PRELUDE +------- + +Enable the monitoring of NOAA-21 and GOES-18 radiances in the GFS. A new version of CRTM with new coefficient files is required and included in this change. + +IMPLEMENTATION INSTRUCTIONS +--------------------------- + +The NOAA VLab and the NOAA-EMC and NCAR organization spaces on GitHub .com are used to manage the GFS code. The SPA(s) handling the GFS implementation need to have permissions to clone VLab Gerrit repositories and private NCAR UPP_GTG repository. All NOAA-EMC organization repositories are publicly readable and do not require access permissions. Please proceed with the following steps to install the package on WCOSS2: + +```bash +cd $PACKAGEROOT +mkdir gfs.v16.3.12 +cd gfs.v16.3.12 +git clone -b EMC-v16.3.12 https://github.com/NOAA-EMC/global-workflow.git . +cd sorc +./checkout.sh -o +``` + +The checkout script extracts the following GFS components: + +| Component | Tag | POC | +| --------- | ----------- | ----------------- | +| MODEL | GFS.v16.3.1 | Jun.Wang@noaa.gov | +| GLDAS | gldas_gfsv16_release.v.2.1.0 | Helin.Wei@noaa.gov | +| GSI | gfsda.v16.3.12 | Andrew.Collard@noaa.gov | +| UFS_UTILS | ops-gfsv16.3.0 | George.Gayno@noaa.gov | +| POST | upp_v8.3.0 | Wen.Meng@noaa.gov | +| WAFS | gfs_wafs.v6.3.1 | Yali.Mao@noaa.gov | + +To build all the GFS components, execute: +```bash +./build_all.sh +``` +The `build_all.sh` script compiles all GFS components. Runtime output from the build for each package is written to log files in directory logs. To build an individual program, for instance, gsi, use `build_gsi.sh`. + +Next, link the executables, fix files, parm files, etc in their final respective locations by executing: +```bash +./link_fv3gfs.sh nco wcoss2 +``` + +Lastly, link the ecf scripts by moving back up to the ecf folder and executing: +```bash +cd ../ecf +./setup_ecf_links.sh +``` + +VERSION FILE CHANGES +-------------------- +* `versions/run.ver` - change `version=v16.3.12` and `gfs_ver=v16.3.12` + +SORC CHANGES +------------ + +* No changes from GFS v16.3.11 + +JOBS CHANGES +------------ + +* No changes from GFS v16.3.11 + +PARM/CONFIG CHANGES +------------------- + +* No changes from GFS v16.3.11 + +SCRIPT CHANGES +-------------- + +* No changes from GFS v16.3.11 + +FIX CHANGES +----------- + +* Changes to `fix/fix_gsi/global_satinfo.txt` and `fix/fix_gsi/global_convinfo.txt` + +MODULE CHANGES +-------------- + +* No changes from GFS v16.3.11 + +CHANGES TO FILE SIZES +--------------------- + +* No changes from GFS v16.3.11 + +ENVIRONMENT AND RESOURCE CHANGES +-------------------------------- + +* No changes from GFS v16.3.11 + +PRE-IMPLEMENTATION TESTING REQUIREMENTS +--------------------------------------- + +* Which production jobs should be tested as part of this implementation? + * GSI +* Does this change require a 30-day evaluation? + * No + +DISSEMINATION INFORMATION +------------------------- + +* No changes from GFS v16.3.11 + +HPSS ARCHIVE +------------ + +* No changes from GFS v16.3.11 + +JOB DEPENDENCIES AND FLOW DIAGRAM +--------------------------------- + +* No changes from GFS v16.3.11 + +DOCUMENTATION +------------- + +* No changes from GFS v16.3.11 + +PREPARED BY +----------- +Kate.Friedman@noaa.gov +Andrew.Collard@noaa.gov diff --git a/ecf/scripts/enkfgdas/analysis/create/jenkfgdas_diag.ecf b/ecf/scripts/enkfgdas/analysis/create/jenkfgdas_diag.ecf index e50e886381..86bf12980a 100755 --- a/ecf/scripts/enkfgdas/analysis/create/jenkfgdas_diag.ecf +++ b/ecf/scripts/enkfgdas/analysis/create/jenkfgdas_diag.ecf @@ -4,7 +4,7 @@ #PBS -q %QUEUE% #PBS -A %PROJ%-%PROJENVIR% #PBS -l walltime=00:06:00 -#PBS -l select=1:mpiprocs=48:ompthreads=1:ncpus=48:mem=24GB +#PBS -l select=1:mpiprocs=48:ompthreads=1:ncpus=48:mem=48GB #PBS -l place=vscatter #PBS -l debug=true diff --git a/parm/config/config.resources.emc.dyn b/parm/config/config.resources.emc.dyn index 9b1624fb15..6ad784473f 100755 --- a/parm/config/config.resources.emc.dyn +++ b/parm/config/config.resources.emc.dyn @@ -338,7 +338,7 @@ elif [ $step = "ediag" ]; then export npe_ediag=48 export nth_ediag=1 export npe_node_ediag=$npe_node_max - export memory_ediag="24GB" + export memory_ediag="48GB" elif [ $step = "eupd" ]; then diff --git a/parm/config/config.resources.nco.static b/parm/config/config.resources.nco.static index dbb57a6bbb..d7fd7d2975 100755 --- a/parm/config/config.resources.nco.static +++ b/parm/config/config.resources.nco.static @@ -274,7 +274,7 @@ elif [ $step = "ediag" ]; then export npe_ediag=48 export nth_ediag=1 export npe_node_ediag=$npe_node_max - export memory_ediag="24GB" + export memory_ediag="48GB" elif [ $step = "eupd" ]; then diff --git a/sorc/checkout.sh b/sorc/checkout.sh index ef01e4b807..bf53ed05fa 100755 --- a/sorc/checkout.sh +++ b/sorc/checkout.sh @@ -35,7 +35,7 @@ fi echo gsi checkout ... if [[ ! -d gsi.fd ]] ; then rm -f ${topdir}/checkout-gsi.log - git clone --recursive --branch gfsda.v16.3.10 https://github.com/NOAA-EMC/GSI.git gsi.fd >> ${topdir}/checkout-gsi.log 2>&1 + git clone --recursive --branch gfsda.v16.3.12 https://github.com/NOAA-EMC/GSI.git gsi.fd >> ${topdir}/checkout-gsi.log 2>&1 cd gsi.fd git submodule update --init cd ${topdir} diff --git a/versions/run.ver b/versions/run.ver index 06e2347e22..37eec20b25 100755 --- a/versions/run.ver +++ b/versions/run.ver @@ -1,5 +1,5 @@ -export version=v16.3.11 -export gfs_ver=v16.3.11 +export version=v16.3.12 +export gfs_ver=v16.3.12 export ukmet_ver=v2.2 export ecmwf_ver=v2.1 export nam_ver=v4.2