From 9696c8a3f1de8a59b5919b0779861c1f93c73524 Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Thu, 14 Sep 2023 13:34:36 +0000 Subject: [PATCH 1/2] Update GFS and OBSPROC versions in version files - update gfs version to v16.3.10 - update obsproc version to v1.2.0 This redoes work already done before when this update was still v16.3.8. Refs #1356 --- versions/hera.ver | 2 +- versions/orion.ver | 2 +- versions/run.ver | 6 +++--- versions/wcoss2.ver | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/versions/hera.ver b/versions/hera.ver index 025dc5004ea..42fc9bd2083 100644 --- a/versions/hera.ver +++ b/versions/hera.ver @@ -2,7 +2,7 @@ export hpc_ver=1.2.0 export hpc_intel_ver=18.0.5.274 export hpc_impi_ver=2018.0.4 -export obsproc_run_ver=1.1.2 +export obsproc_run_ver=1.2.0 export prepobs_run_ver=1.0.1 export hpss_ver=hpss diff --git a/versions/orion.ver b/versions/orion.ver index 419f77e2ea4..00beb4f9e07 100644 --- a/versions/orion.ver +++ b/versions/orion.ver @@ -2,7 +2,7 @@ export hpc_ver=1.2.0 export hpc_intel_ver=2018.4 export hpc_impi_ver=2018.4 -export obsproc_run_ver=1.1.2 +export obsproc_run_ver=1.2.0 export prepobs_run_ver=1.0.1 export prod_util_ver=1.2.2 diff --git a/versions/run.ver b/versions/run.ver index e3a6371db29..7cede4ad625 100755 --- a/versions/run.ver +++ b/versions/run.ver @@ -1,11 +1,11 @@ -export version=v16.3.9 -export gfs_ver=v16.3.9 +export version=v16.3.10 +export gfs_ver=v16.3.10 export ukmet_ver=v2.2 export ecmwf_ver=v2.1 export nam_ver=v4.2 export rtofs_ver=v2.3 export radarl2_ver=v1.2 -export obsproc_ver=v1.1 +export obsproc_ver=v1.2 export PrgEnv_intel_ver=8.1.0 export intel_ver=19.1.3.304 diff --git a/versions/wcoss2.ver b/versions/wcoss2.ver index e96d7ad3f30..55bfd23d677 100644 --- a/versions/wcoss2.ver +++ b/versions/wcoss2.ver @@ -2,7 +2,7 @@ export envvar_ver=1.0 export prod_envir_ver=${prod_envir_ver:-2.0.4} # Allow override from ops ecflow export prod_util_ver=${prod_util_ver:-2.0.9} # Allow override from ops ecflow -export obsproc_run_ver=1.1.2 +export obsproc_run_ver=1.2.0 export prepobs_run_ver=1.0.1 export tracker_ver=v1.1.15.5 From bc0ce76de6c8ea559a18d92631cb9e32e2c93f8d Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Thu, 14 Sep 2023 13:35:53 +0000 Subject: [PATCH 2/2] Create Release_Notes.gfs.v16.3.10.md for upgrade - Further edits to release notes to come. Refs #1356 --- docs/Release_Notes.gfs.v16.3.10.md | 130 +++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 docs/Release_Notes.gfs.v16.3.10.md diff --git a/docs/Release_Notes.gfs.v16.3.10.md b/docs/Release_Notes.gfs.v16.3.10.md new file mode 100644 index 00000000000..857a8658f6b --- /dev/null +++ b/docs/Release_Notes.gfs.v16.3.10.md @@ -0,0 +1,130 @@ +GFS V16.3.10 RELEASE NOTES + +------- +PRELUDE +------- + + +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.10 +cd gfs.v16.3.10 +git clone -b EMC-v16.3.10 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.0 | Jun.Wang@noaa.gov | +| GLDAS | gldas_gfsv16_release.v.2.1.0 | Helin.Wei@noaa.gov | +| GSI | gfsda.v16.3.8 | Andrew.Collard@noaa.gov | +| UFS_UTILS | ops-gfsv16.3.0 | George.Gayno@noaa.gov | +| POST | upp_v8.2.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.10`, `gfs_ver=v16.3.10`, and `obsproc_ver=v1.2` +* `versions/hera.ver` - change `obsproc_run_ver=1.2.0` +* `versions/orion.ver` - change `obsproc_run_ver=1.2.0` +* `versions/wcoss2.ver` - change `obsproc_run_ver=1.2.0` + +SORC CHANGES +------------ + +* No changes from GFS v16.3.9 + +JOBS CHANGES +------------ + +* No changes from GFS v16.3.9 + +PARM/CONFIG CHANGES +------------------- + +* No changes from GFS v16.3.9 + +SCRIPT CHANGES +-------------- + +* No changes from GFS v16.3.9 + +FIX CHANGES +----------- + +* No changes from GFS v16.3.9 + +MODULE CHANGES +-------------- + +* No changes from GFS v16.3.9 + +CHANGES TO FILE SIZES +--------------------- + +* No changes from GFS v16.3.9 + +ENVIRONMENT AND RESOURCE CHANGES +-------------------------------- + +* No changes from GFS v16.3.9 + +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.9 + +HPSS ARCHIVE +------------ + +* No changes from GFS v16.3.9 + +JOB DEPENDENCIES AND FLOW DIAGRAM +--------------------------------- + +* No changes from GFS v16.3.9 + +DOCUMENTATION +------------- + +* No changes from GFS v16.3.9 + +PREPARED BY +----------- +Kate.Friedman@noaa.gov +Andrew.Collard@noaa.gov +Iliana.Genkova@noaa.gov