#PBS -N wsp_early_%CYC%
#PBS -j oe
#PBS -S /bin/bash
#PBS -q prod_transfer
#PBS -A %PROJ%-%PROJENVIR%
#PBS -l walltime=00:20:00
#PBS -l select=1:ncpus=2:mem=1GB
#PBS -l debug=true
model=wsp
%include
%include
set -x
# The early run should NOT send to AWIPS over the SBN
export SENDDBN_NTC=NO
############################################################
## Load modules
#############################################################
module load intel/${intel_ver}
module load libjpeg/${libjpeg_ver}
module load grib_util/${grib_util_ver}
module load wgrib2/${wgrib2_ver}
module list
#############################################################
# EXPORT list here
#############################################################
export cyc=%CYC%
export EVAL=%EVAL:NO%
#############################################################
# CALL executable job script here
#############################################################
${HOMEwsp}/jobs/JNHC_WINDPROB
if [ $? -ne 0 ]; then
ecflow_client --msg="***JOB ${ECF_NAME} ERROR RUNNING J-SCRIPT ***"
ecflow_client --abort
exit
fi
%include
%manual
%end