Pybaqus
Pybaqus is a python library to import the output files generated by Abaqus in the ASCII *.fil format, and create a VTK object from the data.
The results can then be analyzed in pure python (i.e. no Abaqus licence needed) with the great tools provided by PyVista.
Features
Pybaqus is in a very early development stage. Therefore, there are still many unimplemented functionalities. However, basic operations like importing the mesh and the nodal and element results is implemented and can be used for some analysis.
The following features are either already implemented or planned:
- Import 2D meshes
- Import 3D meshes
- Import nodal results
- Import element results
- Element and node sets
- Extrapolate element results from Gaussian points to nodes (implemented for some elements)
- Import history output
- Compute stresses along paths
- Compute section forces and moments
- Documentation
Installation
pip install pybaqus
Quick-start
The first thing you need is to tell Abaqus that you want an ASCII *.fil result file.
To get that you need to write the following lines in your *.inp file, within the step definition (before the *End Step command) e.g.:
...
*FILE FORMAT, ASCII
*EL FILE, DIRECTIONS=YES
S, E, COORD
*NODE FILE
COORD, U
*End Step
...
You can specify different output variables (as long as they are available for the elements you are using, of course).
After submitting your model you will get a *.fil file.
This is the file you need, as it can be imported with Pybaqus.
Import the *.fil file like this:
from pybaqus import open_fil
res = open_fil("your_result.fil")
Great! That was it. :)
Now you have your results as a VTK object, wrapped by PyVista, and there's nothing that can get in your way to analyze your results with pure python.
Plot the mesh
import pyvista as pv
mesh = res.get_mesh()
plot = pv.Plotter()
plot.add_mesh(mesh, show_edges=True, color="white")
plot.view_xy()
plot.show()
Cool! But something's missing there. Colors! We can plot some of our results like this:
mesh = res.get_deformed_mesh(step=1, inc=1, scale=3)
s2 = res.get_nodal_result(var="S2", step=1, inc=1)
mesh.point_data["S2"] = s2
plot = pv.Plotter()
plot.add_mesh(mesh, show_edges=True, color="white",
scalars="S2", show_scalar_bar=True)
plot.view_xy()
plot.show()
That's it! Since the API is still under development, some of these functions might change.
And now you can de whatever you want with your results in python. Have fun!
Acknowledgments
This project has benefited from funding from the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation) under Germany's Excellence Strategy – EXC 2120/1 – 390831618 IntCDC
Release files for pybaqus 0.2.17
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pybaqus-0.2.17.tar.gz | 299.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pybaqus-0.2.17-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 323.9 kB
Release files / pybaqus-0.2.17.tar.gz
| Download URL | pybaqus-0.2.17.tar.gz |
|---|---|
| Size | 299.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dd0e9b7fe86dc8904f7a6f82625d24aba6d14852564081291824963d4ada507d
|
|
BLAKE2b-256 checksum How to use checksums |
e9171d5b778ac923bce63383da86ed276314a3a469ffad271e2a306c665b49a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Apr 16, 2026.
Transparency logRelease files / pybaqus-0.2.17-py3-none-any.whl
| Download URL | pybaqus-0.2.17-py3-none-any.whl |
|---|---|
| Size | 24.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9523a1dc5193b6a859dd5338b4415141b90b676788c7ace49d20692b8cc21265
|
|
BLAKE2b-256 checksum How to use checksums |
bfabbdb8617267c07aa08b638b4d366165b5592491cc883219770be80db1016a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Apr 16, 2026.
Transparency log