Read AEWin acoustic emissions DTA files
Project description
MistrasDTA
Python module to read acoustic emissions hit data and waveforms from Mistras DTA files. The structure of these binary files is detailed in Appendix II of the Mistras user manual.
Installation
MistrasDTA can be installed from PyPI with the following command:
python -m pip install MistrasDTA
Usage
Read the hit summary table from a DTA file:
import MistrasDTA
rec, _ = MistrasDTA.read_bin('cluster.DTA', skip_wfm=True)
Read hit summary and waveform data from a DTA:
import MistrasDTA
from numpy.lib.recfunctions import join_by
# Read the binary file and join summary and waveform tables
rec, wfm = MistrasDTA.read_bin('cluster.DTA')
merged = join_by(['SSSSSSSS.mmmuuun', 'CH'], rec, wfm)
# Extract the first waveform in units of microseconds and volts
t, V = MistrasDTA.get_waveform_data(merged[0])
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mistrasdta-0.1.3.tar.gz
(4.8 kB
view details)
Built Distribution
File details
Details for the file mistrasdta-0.1.3.tar.gz
.
File metadata
- Download URL: mistrasdta-0.1.3.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ab645dddee03d98bfad059d08d2020f4ec34ac2d25700e6dc079747f4b5abcb |
|
MD5 | a402fd05c5a78dba1bf5bb23150599ed |
|
BLAKE2b-256 | 4e920165a8439faa16b7f6549832deb9a1b10455fc4e0a5a31e574c5f9e6d23c |
File details
Details for the file MistrasDTA-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: MistrasDTA-0.1.3-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cf4572c01063ae64fc1cf67affaf202c5ac690c44062202dce10b6469f169d1 |
|
MD5 | e76fff445568c5cdb31fb7355bbb4ac6 |
|
BLAKE2b-256 | 36c639fe79bf65d4cd783f27b8639b53372f61856f8d4732386f4fc6753a3f59 |