diff --git a/Externals.cfg b/Externals.cfg index 59b4aa4ed1e..eb418c9b09e 100644 --- a/Externals.cfg +++ b/Externals.cfg @@ -1,14 +1,14 @@ # External sub-modules of global-workflow [FV3GFS] -tag = GFS.v16.3.0 +tag = GFS.v16.3.1 local_path = sorc/fv3gfs.fd repo_url = https://github.com/ufs-community/ufs-weather-model.git protocol = git required = True [GSI] -tag = gfsda.v16.3.8 +tag = gfsda.v16.3.10 local_path = sorc/gsi.fd repo_url = https://github.com/NOAA-EMC/GSI.git protocol = git @@ -22,7 +22,7 @@ protocol = git required = True [UPP] -tag = upp_v8.2.0 +tag = upp_v8.3.0 local_path = sorc/gfs_post.fd repo_url = https://github.com/NOAA-EMC/UPP.git protocol = git diff --git a/docs/Release_Notes.gfs.v16.3.11.md b/docs/Release_Notes.gfs.v16.3.11.md new file mode 100644 index 00000000000..c6449cd6cf3 --- /dev/null +++ b/docs/Release_Notes.gfs.v16.3.11.md @@ -0,0 +1,133 @@ +GFS V16.3.11 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.11 +cd gfs.v16.3.11 +git clone -b EMC-v16.3.11 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.10 | 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 +``` + +Additional release notes for `upp/8.3.0` installation on WCOSS2: +https://docs.google.com/document/d/18bUYWmsN7FuweyA2CQTBW1rk3FNRMHKPlYHZlbS8ODs/edit?pli=1 + +VERSION FILE CHANGES +-------------------- + +* `versions/build.ver` - change `crtm_ver=2.4.0.1` and `upp_ver=8.3.0` +* `versions/run.ver` - change `version=v16.3.11`, `gfs_ver=v16.3.11` and `crtm_ver=2.4.0.1` + +SORC CHANGES +------------ + +* No changes from GFS v16.3.10 + +JOBS CHANGES +------------ + +* No changes from GFS v16.3.10 + +PARM/CONFIG CHANGES +------------------- + +* No changes from GFS v16.3.10 + +SCRIPT CHANGES +-------------- + +* Changes to sorc/gsi.fd/scripts/exglobal_atmos_analysis.sh + +FIX CHANGES +----------- + +* Changes to `fix/fix_gsi/global_anavinfo.l127.txt`, `fix/fix_gsi/global_satinfo.txt` and add `fix/fix_gsi/Rcov_crisn21` + +MODULE CHANGES +-------------- + +* No changes from GFS v16.3.10 + +CHANGES TO FILE SIZES +--------------------- + +* No changes from GFS v16.3.10 + +ENVIRONMENT AND RESOURCE CHANGES +-------------------------------- + +* No changes from GFS v16.3.10 + +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.10 + +HPSS ARCHIVE +------------ + +* No changes from GFS v16.3.10 + +JOB DEPENDENCIES AND FLOW DIAGRAM +--------------------------------- + +* No changes from GFS v16.3.10 + +DOCUMENTATION +------------- + +* No changes from GFS v16.3.10 + +PREPARED BY +----------- +Kate.Friedman@noaa.gov +Andrew.Collard@noaa.gov +Wen.Meng@noaa.gov +Jun.Wang@noaa.gov diff --git a/sorc/checkout.sh b/sorc/checkout.sh index 2756b1da75a..ef01e4b807f 100755 --- a/sorc/checkout.sh +++ b/sorc/checkout.sh @@ -26,7 +26,7 @@ echo $topdir echo fv3gfs checkout ... if [[ ! -d fv3gfs.fd ]] ; then rm -f ${topdir}/checkout-fv3gfs.log - git clone --recursive --branch GFS.v16.3.0 https://github.com/ufs-community/ufs-weather-model.git fv3gfs.fd >> ${topdir}/checkout-fv3gfs.log 2>&1 + git clone --recursive --branch GFS.v16.3.1 https://github.com/ufs-community/ufs-weather-model.git fv3gfs.fd >> ${topdir}/checkout-fv3gfs.log 2>&1 cd ${topdir} else echo 'Skip. Directory fv3gfs.fd already exists.' @@ -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.8 https://github.com/NOAA-EMC/GSI.git gsi.fd >> ${topdir}/checkout-gsi.log 2>&1 + git clone --recursive --branch gfsda.v16.3.10 https://github.com/NOAA-EMC/GSI.git gsi.fd >> ${topdir}/checkout-gsi.log 2>&1 cd gsi.fd git submodule update --init cd ${topdir} @@ -64,7 +64,7 @@ fi echo EMC_post checkout ... if [[ ! -d gfs_post.fd ]] ; then rm -f ${topdir}/checkout-gfs_post.log - git clone ${gtg_git_args:-} --branch upp_v8.2.0 https://github.com/NOAA-EMC/UPP.git gfs_post.fd >> ${topdir}/checkout-gfs_post.log 2>&1 + git clone ${gtg_git_args:-} --branch upp_v8.3.0 https://github.com/NOAA-EMC/UPP.git gfs_post.fd >> ${topdir}/checkout-gfs_post.log 2>&1 ################################################################################ # checkout_gtg ## yes: The gtg code at NCAR private repository is available for ops. GFS only. diff --git a/versions/build.ver b/versions/build.ver index c3feba31d93..a072d253f75 100755 --- a/versions/build.ver +++ b/versions/build.ver @@ -15,7 +15,7 @@ export netcdf_ver=4.7.4 export esmf_ver=8.0.1 export wgrib2_ver=2.0.7 -export crtm_ver=2.4.0 +export crtm_ver=2.4.0.1 export g2tmpl_ver=1.9.1 export bacio_ver=2.4.1 @@ -33,4 +33,4 @@ export gfsio_ver=1.4.1 export sfcio_ver=1.4.1 export ncio_ver=1.0.0 -export upp_ver=8.2.0 +export upp_ver=8.3.0 diff --git a/versions/run.ver b/versions/run.ver index 187cb41356c..06e2347e22f 100755 --- a/versions/run.ver +++ b/versions/run.ver @@ -1,5 +1,5 @@ -export version=v16.3.10 -export gfs_ver=v16.3.10 +export version=v16.3.11 +export gfs_ver=v16.3.11 export ukmet_ver=v2.2 export ecmwf_ver=v2.1 export nam_ver=v4.2 @@ -35,7 +35,7 @@ export util_shared_ver=1.4.0 export grib_util_ver=1.2.3 export wgrib2_ver=2.0.7 -export crtm_ver=2.4.0 +export crtm_ver=2.4.0.1 export g2tmpl_ver=1.9.1 export bacio_ver=2.4.1