Skip to content

Commit

Permalink
Add ensemble grib header info for SFS
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Jan 28, 2025
1 parent 5369470 commit 2bbef76
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ush/forecast_predet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -579,11 +579,19 @@ FV3_predet(){
export e1=3
fi
export e2="${ENSMEM:1:2}"
export e3="${NMEM_ENS}"
export e3="${NMEM_ENS}"
;;
sfs)
${NCP} "${PARMgfs}/post/sfs/postxconfig-NT-sfs.txt" "${DATA}/postxconfig-NT.txt"
${NCP} "${PARMgfs}/post/sfs/postxconfig-NT-sfs.txt" "${DATA}/postxconfig-NT_FH00.txt"
# Provide ensemble header information for SFS
if [[ "${ENSMEM}" == "000" ]]; then
export e1=1
else
export e1=3
fi
export e2="${ENSMEM:1:2}"
export e3="${NMEM_ENS}"
;;
*)
echo "FATAL ERROR: Unknown RUN ${RUN}, unable to determine appropriate post files"
Expand Down

0 comments on commit 2bbef76

Please sign in to comment.