How to continue the abaqus cae analysis even if job stopped in a loop?
How to continue the abaqus cae analysis even if job stopped in a loop?
(OP)
I wrote a python script for abaqus which contains many loops inside. My analysis is riks analysis which usually is some cases inside loop does not converge, but the result up to the point of convergence is enough for me and I want abaqus cae from command line continues for the next case inside loop, however, abaqus cae from command line stops whenever the job fails to converge, is there any option to ask abaqus to continues in case of divergence?
Many Thanks
Many Thanks





RE: How to continue the abaqus cae analysis even if job stopped in a loop?
RE: How to continue the abaqus cae analysis even if job stopped in a loop?
I used waitForCompletion(), and it does not stop in the Abaqus GUI but it stops in the Abaqus ran from command line using:
abaqus cae noGUI=script.py
RE: How to continue the abaqus cae analysis even if job stopped in a loop?
windows: abaqus job=job1.inp interactive & abaqus job=job2.inp interactive & ...
linux: abaqus job=job1.inp interactive ; abaqus job=job2.inp interactive ; ...
RE: How to continue the abaqus cae analysis even if job stopped in a loop?
Unfortunately, I use python script not the input file.
RE: How to continue the abaqus cae analysis even if job stopped in a loop?
*********************************************************
Are you new to this forum? If so, please read these FAQs:
http://www.eng-tips.com/faqs.cfm?fid=376
http://www.eng-tips.com/faqs.cfm?fid=1083