Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions dev/ci/cases/yamls/gcafs_cycled_noDA_defaults_dev.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
defaults:
!INC {{ HOMEgfs }}/dev/parm/config/sfs/yaml/defaults.yaml
!INC {{ HOMEgfs }}/dev/parm/config/gcafs/yaml/defaults.yaml
base:
DO_TEST_MODE: "NO"
USE_AERO_ANL: "NO"
AERO_ANL_RUNS: ""
assim_freq: 24
FHMAX: 24
FHOUT_AERO: 1
FHOUT_AERO: 1

12 changes: 6 additions & 6 deletions dev/parm/config/gcafs/config.atmos_products
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ if [[ "${RUN:-}" == "gcdas" ]]; then
export WGNE="NO" # WGNE products are created for first FHMAX_WGNE forecast hours
export FHMAX_WGNE=0
elif [[ "${RUN:-}" == "gcafs" ]]; then
export downset=2
export downset=1
export FHOUT_PGBS=${FHOUT_GFS:-3} # Output frequency of supplemental gfs pgb file at 1.0 and 0.5 deg
export FLXGF="YES" # Create interpolated sflux.1p00 file
export FLXGF="NO" # Create interpolated sflux.1p00 file
export WGNE="NO" # WGNE products are created for first FHMAX_WGNE forecast hours
export FHMAX_WGNE=180
fi

# paramlist files for the different forecast hours and downsets
export paramlista="${PARMgfs}/product/gfs.fFFF.paramlist.a.txt"
export paramlista_anl="${PARMgfs}/product/gfs.anl.paramlist.a.txt"
export paramlista_f000="${PARMgfs}/product/gfs.f000.paramlist.a.txt"
export paramlistb="${PARMgfs}/product/gfs.fFFF.paramlist.b.txt"
export paramlista="${PARMgfs}/product/gcafs.fFFF.paramlist.a.txt"
export paramlista_anl="${PARMgfs}/product/gcafs.anl.paramlist.a.txt"
export paramlista_f000="${PARMgfs}/product/gcafs.f000.paramlist.a.txt"
export paramlistb="${PARMgfs}/product/gcafs.fFFF.paramlist.b.txt"

echo "END: config.atmos_products"
4 changes: 2 additions & 2 deletions dev/scripts/exglobal_atmos_products.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ for ((nset = 1; nset <= downset; nset++)); do
if [[ ${rc} == 0 ]]; then # Matched the grep
last=$((last + 1))
fi
if [[ ${iproc} -eq ${nproc} ]]; then
if [[ ${iproc} -eq ${nproc} || ${last} -gt ${ncount} ]]; then
last=${ncount}
fi

Expand All @@ -114,7 +114,7 @@ for ((nset = 1; nset <= downset; nset++)); do
# if at final record and have not reached the final processor then write echo's to
# cmdfile for remaining processors
if [[ "${last}" -eq "${ncount}" ]]; then
for ((pproc = iproc + 1; pproc < nproc; pproc++)); do
for ((pproc = iproc + 1; pproc <= nproc; pproc++)); do
echo "/bin/echo ${pproc}" >> "${DATA}/cmdfile"
done
break
Expand Down
Loading