Sample job script for Queue : qssd_1day_small

#!/bin/bash 
#PBS -N testjob                                                        #(Job Name)
#PBS -l nodes=2:ppn=16                                                 #(Requests for 16 processors on 2 SSD nodes(Max 8)) 
#PBS -q qssd_1day_small                                                #(SSD small queue run on 1-127 cores) 
#PBS -l mem=6gb                                                        #(Requests 6GB of memory in total) 
#PBS -o outtest.log                                                    #(Writes output on this file) 
#PBS -e Error.log                                                      #(Writes Error on this file) 
module load <path of the required module>
cd $PBS_O_WORKDIR
mpirun -machinefile $PBS_NODEFILE -np <total no. of ppn among all nodes> <executable binary> <input file>