Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

MS dos batch file for starting multiple small analyses in once

Status
Not open for further replies.

benoitvalley

Mining
Joined
May 21, 2012
Messages
6
Location
CA
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

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top