A Python 3 client for odbAccess using pylife-odbserver
Project description
pylife-odbclient
A Python 3 client for odbAccess using pylife-odbserver
Purpose
Unfortunately Abaqus still comes with a python-2.x engine. So you can't access an Abaqus odb file from within modern python code. This python package is the client part of a client server setup to make odb files accessible from within python-3.x code in a transparent way.
Solution
The sibling package pylife-odbserver
provides a slim server that as
python-2.7 software, that can be run inside the Abaqus python engine. It
accepts command via sys.stdin
and according to the command is querying data
from the odbAccess
interface and returning them in a pickle object.
This package comes with a python class OdbClient
that spawns the server in
the background when an instance of OdbClient
is instantiated. Then the client
object can be used to transparently access data from the odb file via the
server. Once the client object goes out of scope i.e. is deleted, the server
process is stopped automatically.
Installation
- Install the odbclient using
pip
with the command
pip install pylife-odbclient
- See the instructions in
pylife-odbserver
on how to install the server.
Usage
Usually you only will see the OdbClient
class interface when you access an
odb file. The only point you care about the server is when you instantiate an
OdbClient
object. You need to know the following things
-
The path to the Abaqus executable
-
The path to the python environment
pylife-server
is installed into.
Then you can instantiate a OdbClient
object using
import odbclient as CL
client = CL.OdbClient("yourodb.odb")
See the API docs of OdbClient
for details.
Limitations
Limited functionality
Only a subset of Abaqus variable locations are supported. These are: nodal, element nodal, whole element and centroid. Integration point variables are extrapolated to element nodal.
You can only extract data from an odb file, not write to it.
String literals
So far only names made of ascii
strings are supported. That means that
instance names, node that names and the like containing non-ascii characters
like German umlauts will not work.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pylife_odbclient-2.1.3.tar.gz
.
File metadata
- Download URL: pylife_odbclient-2.1.3.tar.gz
- Upload date:
- Size: 226.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a7964d8d7e6a8bfa46d857af8ca03a6a3ffd06010a476bedc30a14a8592d382 |
|
MD5 | 99d40aedf60b113591df9d7fb617b1d2 |
|
BLAKE2b-256 | 0cb899df212d2e6971f0977a298b013019f74581840e8fa3f8dda48a52553f9b |
File details
Details for the file pylife_odbclient-2.1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: pylife_odbclient-2.1.3-py2.py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f0b5426c514914ef67d8f7aea6013fd47094a7a2beeb39c26dd3962bbf2d6f5 |
|
MD5 | 03b2722da473e62d3609958dbbb77a9d |
|
BLAKE2b-256 | ceb47ae69a045b9fe96aeb460e9e42ce7c40a6d6ef1314279b60e599b388f545 |