Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dev/test/nccmp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ HOMEgfs=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}")")" && git rev-par
declare -rx HOMEgfs

source "${HOMEgfs}/dev/ush/load_modules.sh" run
set +eu
module load "nccmp/${nccmp_ver:-"1.9.0.1"}"

file1=${1:?}
file2=${2:?}

nccmp -d -S -f -B --warn=format "${file1}" "${file2}"
echo $?
13 changes: 13 additions & 0 deletions dev/workflow/rocoto/gfs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2217,6 +2217,19 @@ def _arch_tars_deps(self):
dep_dict = {'type': 'metatask', 'name': f'{self.run}_gempakgrb2spec'}
deps.append(rocoto.add_dependency(dep_dict))

if self.options['do_awips'] and self.run in ['gfs']:

dep_dict = {'type': 'metatask', 'name': f'{self.run}_awips_20km_1p0deg'}
deps.append(rocoto.add_dependency(dep_dict))
dep_dict = {'type': 'task', 'name': f'{self.run}_fbwind'}
deps.append(rocoto.add_dependency(dep_dict))

if self.options['do_wave']:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is okay to add but we don't actually archive any of the awips files for waves to my knowledge, so I don't think this is actually needed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good to know! I'll open an issue to remove this tarball/job.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opened issues #4454 to retire AWIPS waves archiving.

dep_dict = {'type': 'task', 'name': f'{self.run}_waveawipsbulls'}
deps.append(rocoto.add_dependency(dep_dict))
dep_dict = {'type': 'task', 'name': f'{self.run}_waveawipsgridded'}
deps.append(rocoto.add_dependency(dep_dict))

if self.options['do_metp'] and self.run in ['gfs']:
deps2 = []
# taskvalid only handles regular tasks, so just check the first metp job exists
Expand Down
2 changes: 1 addition & 1 deletion sorc/ufs_model.fd
Submodule ufs_model.fd updated 126 files
3 changes: 3 additions & 0 deletions ush/parsing_ufs_configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ UFS_configure() {
local MED_history_n=1000000

local histaux_enabled=".false."
local MOM6_OUTPUT_DIR="./MOM6_OUTPUT"
local MOM6_RESTART_DIR="./MOM6_RESTART"
local MOM6_HISTFREQ_N=${FHOUT_OCN:-6}
fi

if [[ "${cplice}" = ".true." ]]; then
Expand Down
Loading