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.
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.2.tar.gz
(4.5 kB
view details)
File details
Details for the file MistrasDTA-0.1.2.tar.gz
.
File metadata
- Download URL: MistrasDTA-0.1.2.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af9535f07e7244eeb8f56b653b570ea6b8b55be57c24399f8baaec7e4b3b9640 |
|
MD5 | cd62f34ee90cbb2b343d6b15a238e57a |
|
BLAKE2b-256 | c16dbc6000e54a5106b1de1daa4b786d557845f7518f17e43e50ee3b36578bfb |