Metadata-Version: 2.1
Name: MistrasDTA
Version: 0.1.0
Summary: Read AEWin acoustic emissions binary data files
Home-page: https://github.com/d-cogswell/MistrasDTA
Author: Dan Cogswell
Author-email: cogswell@mit.edu
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# MistrasDTA
Python module to read Mistras acoustic emissions DTA files. The structure of these binary files is detailed in the an appendix of the Mistras user manual. 

# Usage
```
import MistrasDTA

# Read the binary file
rec, wfm = MistrasDTA.read_bin('cluster.DTA')

# Extract the first waveform in units of microseconds and volts
t, V = MistrasDTA.get_waveform_data(wfm[0])
```


