Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to debug PYTHON.py before running script?

Status
Not open for further replies.
Replies continue below

Recommended for you

Partly.
I use Pythonwin, which provides a syntax checking feature. If the script does not pass this checking procedure will fail under CAE also. However, these checks do not take into account the ABAQUS Scripting Interface modules.
 
To identify run-time errors :

you can place various print "message #i" statements within the script and run the whole script.

Thus, you can identify the code portion generating the error as the set of code lines between the last printed message and first not printed message. Through several iterations, you can identify exactly the line causing the error.
 
Status
Not open for further replies.
Back
Top