×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

ABAQUS queue manager (AKA job scheduler)

ABAQUS queue manager (AKA job scheduler)

ABAQUS queue manager (AKA job scheduler)

(OP)
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.

RE: ABAQUS queue manager (AKA job scheduler)

You can use a shell script to submit jobs.

RE: ABAQUS queue manager (AKA job scheduler)

(OP)
Can you please show an example?

RE: ABAQUS queue manager (AKA job scheduler)

An example in DOS,

CODE --> DOS

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 --> DOS

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 :)

RE: ABAQUS queue manager (AKA job scheduler)

(OP)
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. :)

RE: ABAQUS queue manager (AKA job scheduler)

You can run batch jobs on remote work stations :p

RE: ABAQUS queue manager (AKA job scheduler)

(OP)
How? Please give some example. The main problem will be providing username and password.

RE: ABAQUS queue manager (AKA job scheduler)

(OP)
Nobody???

This is the procedure I think will be most fitting for running jobs remotely - http://50.16.225.63/v6.14/books/usi/default.htm?st...

But I can't implement it in my Windows 7 host and local machine. Please somebody help me to achieve this properly.

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources