Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error message in wave gempak script #73

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
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