I created an Abaqus model and prepared a Python script to automatically change some simulation parameters and run the jobs.
To do so, I used a for loop like:
for i in range(0,20):
(Code's Main Body)
mdb.jobs['Job'+str(d[i])].submit(consistencyChecking=OFF)
Hopefully, my code runs well but the only problem is that Abaqus does NOT wait for one job to be completed and immediately starts all jobs!
How can I prevent multiple job execution?
Regards