Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations MintJulep 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
Aug 21, 2006
171
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.
 
Replies continue below

Recommended for you

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