Experimental and operational modal analysis.
Project description
Experimental and operational modal analysis
Check out the documentation.
This project is successor of the pyEMA project. pyEMA is no longer developed after version 0.26.
New in version 0.27
UFF support: Import FRFs directly from UFF files. The pyUFF package is used to read the UFF files.
Stability chart upgrade: Show/hide unstable poles to improve the clarity of the chart.
Documentation update.
Basic usage
Import EMA module:
from sdypy import EMA
Make an instance of Model class:
a = EMA.Model(
frf_matrix,
frequency_array,
lower=50,
upper=10000,
pol_order_high=60
)
Compute poles:
a.get_poles()
Determine correct poles:
The stable poles can be determined in two ways:
Display stability chart
a.select_poles()
The stability chart displayes calculated poles and the user can hand-pick the stable ones.
If the approximate values of natural frequencies are already known, it is not necessary to display the stability chart:
approx_nat_freq = [314, 864]
a.select_closest_poles(approx_nat_freq)
After the stable poles are selected, the natural frequencies and damping coefficients can now be accessed:
a.nat_freq # natrual frequencies
a.nat_xi # damping coefficients
Reconstruction:
There are two types of reconstruction possible:
Reconstruction using own poles (the default option):
H, A = a.get_constants(whose_poles='own')
where H is reconstructed FRF matrix and A is a matrix of modal constants.
Reconstruction on c using poles from a:
c = EMA.Model(frf_matrix, frequency_array, lower=50, upper=10000, pol_order_high=60)
H, A = c.get_constants(whose_poles=a)
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
Built Distribution
File details
Details for the file sdypy-EMA-0.27.2.tar.gz
.
File metadata
- Download URL: sdypy-EMA-0.27.2.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | beb43badf6a8e7490cf709dcb13a6a1e19d4b0b46a583e1fbabee28d7622ea6a |
|
MD5 | cea1b63041bb61eaa3a1d4e845af2d87 |
|
BLAKE2b-256 | 31d9e6ca4728b98f40b771944858ee1ee18910f63a0445cfb4ab19ba6459eb76 |
File details
Details for the file sdypy_EMA-0.27.2-py3-none-any.whl
.
File metadata
- Download URL: sdypy_EMA-0.27.2-py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7063c5304d3b0d6bec87989e0cf7faa201ba6c66abebc17fc5e1c46ba036d89 |
|
MD5 | a7e84e37fa26399d12388e24df4c22fd |
|
BLAKE2b-256 | 6b5e519b03c4a2be0f907ee26daf1ded721325ea1432c6f1f9df6510b9d669c9 |