Skip to content

Commit

Permalink
GFSv16.3.14 - Remove ldebug flag from wave post ecf scripts (#2436)
Browse files Browse the repository at this point in the history
Remove the temporary `ldebug=true` setting in the ecf scripts
for the wave post jobs in operations (GFSv16.3).

Refs #2431
  • Loading branch information
KateFriedman-NOAA authored Mar 27, 2024
1 parent 42d096d commit 09f9c52
Show file tree
Hide file tree
Showing 5 changed files with 127 additions and 5 deletions.
125 changes: 125 additions & 0 deletions docs/Release_Notes.gfs.v16.3.14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
GFS V16.3.14 RELEASE NOTES

-------
PRELUDE
-------

This version removes the PBS `ldebug=true` flags from the wave post ecf scripts. The flag is no longer needed after recent lustre upgrades on WCOSS2.

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.14
cd gfs.v16.3.14
git clone -b EMC-v16.3.14 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 | [email protected] |
| GLDAS | gldas_gfsv16_release.v.2.1.0 | [email protected] |
| GSI | gfsda.v16.3.12 | [email protected] |
| UFS_UTILS | ops-gfsv16.3.0 | [email protected] |
| POST | upp_v8.3.0 | [email protected] |
| WAFS | gfs_wafs.v6.3.2 | [email protected] |

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.14` and `gfs_ver=v16.3.14`

SORC CHANGES
------------

* No changes from GFS v16.3.13

JOBS CHANGES
------------

* No changes from GFS v16.3.13

PARM/CONFIG CHANGES
-------------------

* No changes from GFS v16.3.13

SCRIPT CHANGES
--------------

* No changes from GFS v16.3.13

FIX CHANGES
-----------

* No changes from GFS v16.3.13

MODULE CHANGES
--------------

* No changes from GFS v16.3.13

CHANGES TO FILE SIZES
---------------------

* No changes from GFS v16.3.13

ENVIRONMENT AND RESOURCE CHANGES
--------------------------------

* Remove `ldebug=true` from PBS statements in wave post ecf scripts.

PRE-IMPLEMENTATION TESTING REQUIREMENTS
---------------------------------------

* Which production jobs should be tested as part of this implementation?
* Wave post
* Does this change require a 30-day evaluation?
* No

DISSEMINATION INFORMATION
-------------------------

* No changes from GFS v16.3.13

HPSS ARCHIVE
------------

* No changes from GFS v16.3.13

JOB DEPENDENCIES AND FLOW DIAGRAM
---------------------------------

* No changes from GFS v16.3.13

DOCUMENTATION
-------------

* No changes from GFS v16.3.13

PREPARED BY
-----------
[email protected]
1 change: 0 additions & 1 deletion ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpnt.ecf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#PBS -l select=3:ncpus=80:ompthreads=1
#PBS -l place=vscatter:exclhost
#PBS -l debug=true
#PBS -l ldebug=true

model=gfs
%include <head.h>
Expand Down
1 change: 0 additions & 1 deletion ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpntbll.ecf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#PBS -l select=4:ncpus=112:ompthreads=1
#PBS -l place=vscatter:exclhost
#PBS -l debug=true
#PBS -l ldebug=true

model=gfs
%include <head.h>
Expand Down
1 change: 0 additions & 1 deletion ecf/scripts/gfs/wave/post/jgfs_wave_postpnt.ecf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#PBS -l select=4:ncpus=50:ompthreads=1
#PBS -l place=vscatter:exclhost
#PBS -l debug=true
#PBS -l ldebug=true

model=gfs
%include <head.h>
Expand Down
4 changes: 2 additions & 2 deletions versions/run.ver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export version=v16.3.13
export gfs_ver=v16.3.13
export version=v16.3.14
export gfs_ver=v16.3.14
export ukmet_ver=v2.2
export ecmwf_ver=v2.1
export nam_ver=v4.2
Expand Down

0 comments on commit 09f9c52

Please sign in to comment.