Hi Arielle,
You could run jobs serially via a simply Windows Batch script file. A warning is that the script will not stop until the jobs are done or the script has been terminated. So attempting to terminate the SCALE jobs will not stop the next SCALE job from starting. You will need to find the Batch file in you task manager and terminate it.
Copy the contents of the script below into a file locally on your machine and update the paths to SCALE and your inputs.
SerialRunAll.bat:
for %%F in (C:\SCALE-6.2.1\playground\inputs\*.inp) do C:\SCALE-6.2.1\bin\scalerte.exe %%F
You will need to update
C:\SCALE-6.2.1\playground\inputs\*.inp to be the location of your input files and
C:\SCALE-6.2.1\bin\scalerte.exe to be the path to your SCALE installation.
A simple way to increase throughput is to copy the SerialRunAll.bat to the number of cores on your machine and update the inputs to be different, e.g., C:\SCALE-6.2.1\playground\inputs\coreN\*.inp
When N is 1 through 4 or 8, etc..
Hope this helps.
Best regards,
Rob Lefebvre
SCALE Code System