Lately, I’ve received a few questions related to python scripting. It is a nice way to add to the default Abaqus functionality and automate repetitive work. Here I want to give a few tips that may help when you are creating your first Abaqus python scripts.
Abaqus automatically stores what is done in Abaqus/CAE as python commands in a .rpy file. This file is a good starting point to base your own script on.
This blog post gives an example of automating postprocessing. This example is based on the .rpy file, and it includes a loop to do the same things for multiple inputs, in this case .odb’s. A similar approach can be used to automate model creation or job submission.
To quickly test Abaqus commands, the command line interface can be used. This is in the CAE, on the same place as the message area. Clicking on the icon with >>>
You can directly type in code and press enter. It also allows automatic completion using the TAB-key: if you start typing a command and then press the TAB-key, an option for continuing the command will be given. Pressing TAB again will give another option, cycling through all options. With SHIFT+TAB, you can cycle in the backwards direction, going back to the previous option.
The Abaqus Scripting Interface (ASI) is the python code that allows us to interact with Abaqus models and data. It includes many data types in a structure with methods to modify the data. In order to do things with Abaqus, we need to use this structure. If we want to use a certain output, for example, we need to know where to find it. There are several things that can help us with this.
When a job is submitted from a script, the script will continue while the job is running. If the job is part of a loop, often a second job is submitted while the first is still running, which takes up additional tokens and system resources. This is usually unintended. The .rpy file will not tell you how to solve this.
Luckily, the job has a method specifically for this purpose: waitForCompletion. Example usage:
job.submit()
job.waitForCompletion()
If a script is giving an error message, read it carefully. It usually provides information on the line number in which the error is occurring, as well as the type of error.
In this case, for example, the problem occurs in line 10 and is a KeyError. Apparently, the XYPlot-1 is not defined. We can then go through the script to determine why we though it could be referred to, while it is not available. It may be a typo (identifiers are case-sensitive); it may be defined inside a function and not available outside it; the script could be based on a macro, where it was already defined beforehand; or we could simply have forgotten something.
To determine what is going on, print statements can be of great use. By printing the value of an object or the fact that a certain part of the code is reached, a lot more clarity can be obtained on what is going on. A simple print statement can be defined as:
print “string with what is being printed”, identifier
Comments are also valuable. Apart from them helping to make sense out of machine code, they can be used to effectively remove part of the script, without deleting it entirely. (Similar to suppressing instances in a model for example). This helps to determine where an error occurs among other things.