Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 931 Bytes

README.md

File metadata and controls

43 lines (36 loc) · 931 Bytes

#ae

Python acoustic emission tools.

##Features

  • read *.wfs files
  • read *.sdcf files
  • event extractor
  • interactive decimated waveform plotting
  • optimized for files bigger than RAM

##Example

>>> import ae
>>> f = ae.open("M5.wfs")
>>> print f.size
642798592
>>> f.plot()

Graph

>>> events = f.get_events(0.02)
>>> print events.size
6161
>>> ae.hist(event.maxima)

Graph

##Install ###Dependencies:

###Linux:

git clone https://github.com/jove1/ae.git
python setup.py install

###Windows: Get windows installers of python, scipy-stack and ae itself.