Double integration of the acceleration signals to obtain displacment signals

123 Ansichten (letzte 30 Tage)
Hi,
In order to obtain the displacement signals from the acceleration data, The following steps are used to convert the acceleration data to achieve the displacement values:
1- The acceleration signals are filtered [High pass filter]
2- The cumtrapz is applied to integrate the displacement to obtain the velocity
3- The velocity signals are filtered [High pass filter]
4- Finally, the filtered signals of velocity is integrated to get the displacement signals.
The concern is still about the correct methods and the accuracy of the results which are obtained.
Please have look at the Matlab Program as stated below; If there any comments and contribution regarding the proposed methodology please do not hesitate to shear us your experience, Thank you
%%accelerations are integrated twice to produce displacements
clear all
close all
clc
time = load('D:\Users\Desktop\time.txt');
acc = load('D:\Users\Desktop\data.txt');
figure
plot(time,acc)
xlabel('Time (sec)')
ylabel('Acceleration (mm/sec^2)')
%%Design High Pass Filter
fs = 8000; % Sampling Rate
fc = 0.1/30; % Cut off Frequency
order = 6; % 6th Order Filter
%%Filter Acceleration Signals
[b1 a1] = butter(order,fc,'high');
accf=filtfilt(b1,a1,acc);
figure (2)
plot(time,accf,'r'); hold on
plot(time,acc)
xlabel('Time (sec)')
ylabel('Acceleration (mm/sec^2)')
%%First Integration (Acceleration - Veloicty)
velocity=cumtrapz(time,accf);
figure (3)
plot(time,velocity)
xlabel('Time (sec)')
ylabel('Velocity (mm/sec)')
%%Filter Veloicty Signals
[b2 a2] = butter(order,fc,'high');
velf = filtfilt(b2,a2,velocity);
%%Second Integration (Velocity - Displacement)
Displacement=cumtrapz(time, velf);
figure(4)
plot(time,Displacement)
xlabel('Time (sec)')
ylabel('Displacement (mm)')
  6 Kommentare
Samuel Hudson
Samuel Hudson am 14 Jul. 2022
Would you be willing to provide a sample of data that works in this code?

Melden Sie sich an, um zu kommentieren.

Antworten (7)

UTS
UTS am 18 Dez. 2014
Any comments, Thanks
  1 Kommentar
Matthew Nijsten
Matthew Nijsten am 27 Mär. 2018
Hi there, so if i put an array of 2498x1 acceleration points into this code it will output me 2498x1 respective data points

Melden Sie sich an, um zu kommentieren.


as k
as k am 3 Apr. 2016
Its working ıts working , Thank you so much my friend . Really saved my life today. I hope the sun may always shine upon your path.

as k
as k am 3 Apr. 2016
One more thing , we usually measure disp. in mm and those calculation above give us result ,generally, in meters so this is just a reminder.

Hasan Siddiqui
Hasan Siddiqui am 14 Jul. 2016
What units does the original accelerometer data need to be in originally? I have data collected from an arduino that is a 10 bit voltage reading from 0-1023. Does it need to be converted to the range of the accelerometer in gs first (-3g to 3g)?

Adi Negoro
Adi Negoro am 24 Apr. 2017
I'm newbie,
how to understand the "fc=0.1/30; % Cut off Frequency"?
  7 Kommentare
Desmond Dunggat
Desmond Dunggat am 26 Mai 2022
@Vincent den Ouden so actually the filter designed above is Butterworth filter is it? Not High Pass filter?
Vincent den Ouden
Vincent den Ouden am 26 Mai 2022
the term butterworth says more something about the idea/characteristics behind the filter, and in the case of the butterworth the idea is to have the most flat frequency response possible in the passband (frequencies that you want). The filter itself can be lowpass/highpass or bandpass.

Melden Sie sich an, um zu kommentieren.


Aashish Sah
Aashish Sah am 19 Mai 2020
Bearbeitet: Aashish Sah am 19 Mai 2020
Hi,
I have one question regarding this code. I have acceleration data in terms of g, so I multiply by 9.8 to get in terms of ms^-2. The displacement should then be in terms of m. However, when I apply the filter to my acceleration data, it normalizes the data. For example, the max and min of raw acceleration data is [10.5, 9.6] ms^-2 and after I apply the filter I get [0.68 -0.56]. It seems that filtering process normalizes the raw data between -1 and 1.
This introduces an issue for me since I wish to compare the actual displacement from different accelerometer sensors.
Any suggestions?
  1 Kommentar
Broc Sommermeyer
Broc Sommermeyer am 15 Nov. 2020
This code is designed to measure the velocity and displacement that are a function of time dependent acceleration by applying the high pass filter to remove the constant gravity value of 1g. Fourier series representation of periodic signals would break down a(t) into a constant term and an infinite sum of sine and cosine terms. The filter removes the constant term and any sine and cosine terms that have a frequency lower than the cutoff frequency fc. If you want to look at the complete accelerometer data including gravity remove the filter from the code.

Melden Sie sich an, um zu kommentieren.


Joven Chou
Joven Chou am 30 Dez. 2020
awesome codes

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by