Submitting a Large Cluster
Anywhere in your submit file, if you use $(Process), that will expand to the process number of each job in the cluster:
input = my_input.$(process)
arguments = $(process)
It is common to use $(Process) to specify InitialDir, so that each process runs in its own directory:
InitialDir = dir.$(process)