benoitvalley
Mining
- May 21, 2012
- 6
Referring to this thread: thread799-89238, in order to run multiple analyses with a MS dos batch file, one need to include the keyword call (ref.) in the file or alternatively use brackets (ref.).
Example:
Write the following in your text editor and save it as myruns.bat
or
Save in your abaqus active folder and run it:
C:\AbaqusWork\myruns
Example:
Write the following in your text editor and save it as myruns.bat
Code:
call abaqus job=Job-1 interactive
call abaqus job=Job-2 interactive
call abaqus job=Job-3 interactive
call abaqus job=Job-4 interactive
call abaqus job=Job-5 interactive
or
Code:
(
abaqus job=Job-1 interactive
abaqus job=Job-2 interactive
abaqus job=Job-3 interactive
abaqus job=Job-4 interactive
abaqus job=Job-5 interactive
)
Save in your abaqus active folder and run it:
C:\AbaqusWork\myruns