#PBS -N hwm_populate_cpp_nodes_%TIME%
#PBS -S /bin/bash
#PBS -j oe
#PBS -A %PROJ%-%PROJENVIR%
#PBS -q %QUEUE%
#PBS -l walltime=00:20:00
#PBS -l place=vscatter:shared,select=1:ncpus=1:mem=4000mb
#PBS -W umask=022
#PBS -l debug=true
export model=hwm
%include
%include
##############################################
# module load
##############################################
module load intel/${intel_ver}
module load python/${python_ver}
module list
set -x
#set count variable, nodes or cores from task name
task=%TASK%
export rescount="${task:18}"
export res="${task:14:3}"
${HOMEhwm}/jobs/JHWM_POPULATE
#used as event trigger to start task jhwm_combine
#ecflow_client --event=release_combine_$res_$rescount
ecflow_client --event=release_combine_cpp_nodes
sleep 1
%include
%manual
################################################################################
#TASKSCRIPT DOCUMENTATION BLOCK
#TASKSCRIPT: jhwm_populate_nodes
#LAST MODIFIER: Gregory Mott
#DATE: Oct 2021
#PURPOSE: To populate HWM Json files with per minute node count information per project
#JOB SCRIPT CALLED: JHWM_POPULATE
#################################################################################
######################################################################
# Job specific troubleshooting instructions:
# see generic troubleshoot manual page
#
######################################################################
%end