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!

ABAQUS queue manager (AKA job scheduler)

Status
Not open for further replies.

ShadowWarrior

Civil/Environmental
Joined
Aug 21, 2006
Messages
171
Location
AU
Hi

Is there any commercial 3rd party Queue manager that works with ABAQUS?

ANSYS has Remote Solve Manager (RSM), looking for something similar to solve in remote workstation.

Thnaks.
 
You can use a shell script to submit jobs.
 
An example in DOS,

Code:
cd C:\Users\User\Documents\Hourglassing study\Sphere1
call abaqus job=Sphere1 interactive
cd C:\Users\User\Documents\Hourglassing study\SphereP9
call abaqus job=SphereP9 interactive

This will first run the job 'Sphere1' in the folder 'C:\Users\User\Documents\Hourglassing study\Sphere1' then wait until it has finished, (that is what the 'interactive' flag does), then it changes the directory to 'C:\Users\User\Documents\Hourglassing study\SphereP9' and runs the next job.

If you have a lot of similar named job you could put this into a loop of course,

Code:
FOR /l %%A IN (1,1,9) DO (
cd C:\Users\User\Documents\Hourglassing study\SphereP%%A
call abaqus job=SphereP%%A interactive
)


The same is possible on Linux machines using a Bash script I'm sure but I'd ask someone else how to do that properly :)
 
Perhaps you did not read the question correctly. I asked for a queue manager to submit jobs to remote workstation (Over Lan or Internet).

ANSYS has Remote Solve Manager (RSM), looking for something similar to solve in remote workstation.

I already know how to run batch jobs, but thanks nevertheless. :)
 
You can run batch jobs on remote work stations :p
 
How? Please give some example. The main problem will be providing username and password.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top