#!/bin/sh #PBS -N jgefs_chem_init_00 #PBS -j oe #PBS -S /bin/bash #PBS -q dev #PBS -A GEFS-DEV #PBS -l walltime=0:30:00 ##PBS -l place=vscatter,select=1:ncpus=1:mem=40GB #PBS -l place=vscatter,select=1:prepost=true:ncpus=1:mem=40GB #PBS -l debug=true set -x cd $PBS_O_WORKDIR #module purge export model=gefs # to get HOMEgefs f=lsf_common.sh if [[ -f "$f" ]]; then echo "$f exists." source $f elif [[ -f "../$f" ]]; then echo "../$f exists." source ../$f elif [[ -f "../../$f" ]]; then echo "../../$f exists." source ../../$f elif [[ -f "../../../$f" ]]; then echo "../../../$f exists." source ../../../$f fi . ${HOMEgefs}/versions/run.ver module purge module load envvar/$envvar_ver module load PrgEnv-intel/$PrgEnv_intel_ver module load craype/$craype_ver module load intel/$intel_ver module load cray-mpich/$cray_mpich_ver module load cray-pals/$cray_pals_ver module load prod_util/$prod_util_ver module load prod_envir/$prod_envir_ver module load python/$python_ver module load nco/$nco_ver #module load lsf/$lsf_ver module load hdf5/$hdf5_ver module load netcdf/$netcdf_ver module list # EXPORT list here ulimit -s unlimited ulimit -a f=lsf_common.sh if [[ -f "$f" ]]; then echo "$f exists." source $f elif [[ -f "../$f" ]]; then echo "../$f exists." source ../$f elif [[ -f "../../$f" ]]; then echo "../../$f exists." source ../../$f elif [[ -f "../../../$f" ]]; then echo "../../../$f exists." source ../../../$f fi #=== export RUNMEM=geaer export total_tasks=1 export taskspernode=1 export OMP_NUM_THREADS=1 export envir=prod # CALL executable job script here ${HOMEgefs}/jobs/JGEFS_CHEM_INIT