How to convert accelerometer data to find displacement graph
89 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Maaz Nayeem
am 8 Okt. 2021
Beantwortet: Bora Eryilmaz
am 21 Mär. 2024
I have a triple axis accelerometer sensors. we are doing vibrational analysis for a Civil engg structure, we are able to successfully get raw data from the accelerometer (XYZ in g's). We transfered this raw data into matlab and did acceleration and Fast fourier transform plot to get frequency. We are stuck on writing the code to change the acceleration data into displacement. If anyone has any tips on where we should go with this, it would be greatly appreciated. Thanks in advance.I have attached the Accleration plot. I have tried using CumTrapz command but it dosent give proper results.
0 Kommentare
Akzeptierte Antwort
Mathieu NOE
am 8 Okt. 2021
hello
see my suggestion below
clc
clearvars
data = csvread('data.csv',1); % time & Acceleration data
t = data(:,1);
acc = data(:,2);
acc = detrend(acc,'linear');
N = length(t);
dt = mean(diff(t)); % Average dt
fs = 1/dt; % Frequency [Hz] or sampling rate
% some additionnal high pass filtering
N = 4;
fc = 0.05; % Hz
[B,A] = butter(N,2*fc/fs,'high');
acc2 = filter(B,A,acc);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
velocity = cumtrapz(dt,acc2);
velocity = detrend(velocity,'linear');
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
disp = cumtrapz(dt,velocity);
%
figure(1)
subplot(311),plot(t,acc);
subplot(312),plot(t,velocity);
subplot(313),plot(t,disp);
10 Kommentare
Walter Roberson
am 22 Aug. 2023
See the discussion above at https://www.mathworks.com/matlabcentral/answers/1469521-how-to-convert-accelerometer-data-to-find-displacement-graph#comment_1777981
You might have to ask to display older comments.
Weitere Antworten (1)
Bora Eryilmaz
am 21 Mär. 2024
The new convertVibration function in MATLAB R2024a release of the Predictive Maintenance Toolbox lets you compute baseline-corrected and filtered acceleration, velocity, and displacement signals from vibration measurements using a single sensor output from either an accelerometer, velocity sensor, or displacement sensor.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Vibration Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!