I have some force data and corresponding time data. How to remove vibration signal from force data?

2 visualizaciones (últimos 30 días)
I have some force data and corresponding time data. After having force signals (with large time gap) some vibration signals are coming. See attached figure. How to remove these signals. how to convert this vibration signal value to zero.
Attached excel file. column 1 is Time values, column 2 is force values.
The image shows only one wave...data having numbers of such waves.

Respuestas (2)

Christopher Berry
Christopher Berry el 6 de Ag. de 2014
Since there is a "gap" between your desired signal and the unwanted vibrations, the simplest way to do what you are describing is to just truncate the data or write all Force values after a certain time to 0. For instantance, to truncate your data to 14.984 secs:
ForceTruncated = Force(Time < 14.984);
TimeTruncated = Time(Time < 14.984);
Or if you want to keep the Time and Force vectors the same length, write zeros like:
Force(Time > 14.984) = 0
  3 comentarios
Christopher Berry
Christopher Berry el 6 de Ag. de 2014
Ok, I was thinking it was just the tail of the data you were trying to get rid of.
You could apply a threshold that will remove 'small' Force values like this:
Force(Force>-5 & Force<5) = 0
But this will also effect the regions that you are interested in as well. This shouldn't be a problem though, if you are just seeking the spike train data and not the wave shape...
Sagar Dhage
Sagar Dhage el 6 de Ag. de 2014
Thanks once again... i want values to zero which is shown in figure highlighted..pls see attached image

Iniciar sesión para comentar.


Chad Greene
Chad Greene el 6 de Ag. de 2014
You could do a bandstop butterworth filter to remove undesired frequencies.

Categorías

Más información sobre Vibration Analysis en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by