#PBS -N nam_mos_gridded_%CYC%
#PBS -j oe
#PBS -A %PROJ%-%PROJENVIR%
#PBS -l walltime=00:30:00
#PBS -S /bin/bash
#PBS -l place=vscatter:shared,select=1:ncpus=32:mpiprocs=8:ompthreads=4:mem=15GB
#PBS -q %QUEUE%
#PBS -l debug=true
export model=nam_mos
%include
%include
export cyc=%CYC%
#######################################################################
# load modules
#######################################################################
module load intel/${intel_ver}
module load cfp/${cfp_ver}
module load cray-pals/${cray_pals_ver}
module use /apps/ops/prod/nco/models/modulefiles/
module load mos_shared/${mos_shared_ver}
module list
export FORT_BUFFERED=TRUE
export NTASK=$(wc -l ${PBS_NODEFILE:?} | cut -f 1 -d " ")
# SPECIFY WHICH JOB TO RUN and run the job
${HOMEnam_mos}/jobs/JNAMMOS_GRIDDED
%include
%manual
######################################################################
# Purpose: To execute the job that prepare NAM/NMM MOS guidance.
######################################################################
To speed up if needed, change the select line:
current setting:
select=1:ncpus=32:mpiprocs=8:ompthreads=4 -> ~21 minutes for consistancy with wcoss1
change to:
select=1:ncpus=64:mpiprocs=8:ompthreads=8 -> ~13 minutes
select=1:ncpus=128:mpiprocs=8:ompthreads=16 -> ~11 minutes
%end