PYABAQUS documentation#

Type hints for Python scripting of Abaqus.

pyabaqus is a Python package providing type hints for Python scripting of Abaqus, you can use it to write you Python script of Abaqus fluently, even without doing anything in Abaqus. It also provides some simple APIs to execute the Abaqus commands so that you can run your Python script to build the model, submit the job and extract the output data in just one Python script, even without opening the Abaqus/CAE.

Warning

The pyabaqus package has been deprecated. Please use the abqpy package instead.

Quick Start#

Installation#

pyabaqus is using type hints features that require Python 3.9 or a later version, please upgrade it to Python 3.9 or a later version if you are using an earlier version.

pyabaqus is uploaded to PyPI, you can simply install it using pip:

pip install pyabaqus

pyabaqus is also uploaded to anaconda, you can use conda to install it, since pyabaqus (from V1.0.15) depends on ipyparams and it is not distributed to anaconda, you have to use pip to install it manually:

pip install ipyparams
conda install -c haiiliin pyabaqus

You may install the latest development version by cloning the GitHub repository and use python to install from the local directory:

pip install ipyparams
git clone https://github.com/Haiiliin/pyabaqus.git
cd pyabaqus
python setup.py install

Write your Abaqus/Python script#

After installing the pyabaqus package, you can start writing your own Abaqus/Python script to build your model. You can refer pyabaqus/tests at main ยท Haiiliin/pyabaqus for some tests of the script, for more detailed documentation, please check pyabaqus documentation.

Setup your Abaqus Environment#

In order to use Abaqus command to execute the Python script and submit the job, you need to tell pyabaqus where the Abaqus command is located. Usually, Abaqus command locates in a directory like this:

C:/SIMULIA/Commands/abaqus.bat

You can add the directory C:/SIMULIA/Commands to the system environment variable Path, or you can create a new system variable named ABAQUS_BAT_PATH, and set the value to the file path of the Abaqus command, i.e., C:/SIMULIA/Commands/abaqus.bat.

Run your Abaqus/Python script#

Now you can just run your Abaqus/Python script using your own Python interpreter that pyabaqus is installed.

  • Create an Abaqus Model

Create an Abaqus Model
  • Extract Output Data

Extract Output Data

What next?#

You may wonder how does this package work, you can go Getting Started for more detailed introduction and go Tutorials for a simple tutorial. For more documentation about Abaqus/Python scripting, please check API Summary for a list of descriptions of objects and methods of Abaqus models, check API Reference for more detailed API references.

Documentation#

Indices and tables#