Skip to content

Commit

Permalink
Merge pull request #73 from WalterKolczynski-NOAA/release/gefs_v12
Browse files Browse the repository at this point in the history
Fix error message in wave gempak script
  • Loading branch information
WalterKolczynski-NOAA authored May 19, 2020
2 parents d9a5fa5 + adb9e4e commit 429b487
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion scripts/exglobal_fcst_nemsfv3gfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,11 @@ EOF
if [ $cplchm = ".true." ]; then
if [ $imp_physics -eq 99 ]; then NTRACER=0; fi
if [ $imp_physics -eq 11 ]; then NTRACER=1; fi
chem_in_opt=1
if [[ warm_start = ".true." ]];
chem_in_opt=1
else
chem_in_opt=0
fi
cat >> input.nml << EOF
&chem_nml
aer_bc_opt=1
Expand Down
6 changes: 4 additions & 2 deletions scripts/exwave_nawips.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,10 @@ while [ $fhcnt -le $FHMAX_WAV ]; do
fi
if [ $icnt -ge $maxtries ]
then
msg="ABORTING after 1 hour of waiting for F$fhr to end."
err_exit $msg
msg="FATAL ERROR: aborting after waiting 1 hour for F$fhr to end."
echo "$msg"
export err=1; $err_chk
exit $err
fi
done

Expand Down

0 comments on commit 429b487

Please sign in to comment.