필터 지우기
필터 지우기

How to remove large peaks around 0Hz in FRF?

조회 수: 9 (최근 30일)
EB
EB 2017년 3월 9일
편집: EB 2017년 3월 16일
Hi all, I have calculated FRF function as ratio of cpsd (acceleration,force) and cpsd(force,force). Before the FRF calculation I did detrend my data. When I plot the computed FRF I have very big spikes at 0Hz. How can these be removed? Also is there a way to get the FRF line more smooth because for some accelerations it is very noisy?
>>
I have attached the figures of obtained frf's.
I also tried to filter the accelerations because I am interested in the lower frequency range under 500Hz, but again the fRF curve is noisy and the spikes haven't disappeared. I used Lowpas IIR Butterworth filter with zero phase shift. Should I try with another filter?
Many thanks!

답변 (1개)

Star Strider
Star Strider 2017년 3월 9일
The detrend function operates as a relatively unsophisticated highpass filter. I do not recommend it if you want to do further signal processing on your signal.
The 0 Hz is a constant (or direct current, d-c) offset that is the mean of your data. You can remove it from your spectrum plot without losing the information by taking the mean of your data, then subtracting the mean of your data from your data before you take the Fourier transform of it.
Consider using a highpass or bandpass filter if you want to remove specific low-frequency components of your signal. A correctly-designed highpass or bandpass filter will remove low-frequency baseline variations and the d-c offset. A bandpass filter that also incorporates a high-frequency cutoff can remove high-frequency noise as well as low-frequency baseline drift and d-c offset. See the documentation for the Signal Processing Toolbox designfilt (link) function to design your filter.
  댓글 수: 3
Star Strider
Star Strider 2017년 3월 9일
The 0 Hz value will be 0 if you subtracted it from your signal before doing the transform. With your filter, you do not need to subtract the mean, since the filter you designed will essentially eliminate it for you (within the limits of the attenuation of the filter stopbands).
Note that the y-axis in in ‘dB/Hz’, so the plot algorithm may eliminate the 0 value at 0 Hz, because log10(0) (and the log of 0 in every base) is -Inf. That is inconvenient to plot, so the software likely uses the next finite value instead.
EB
EB 2017년 3월 16일
편집: EB 2017년 3월 16일
Thanks for all the tips. I have calculated the FRFs again but this time without detrend or mean subtraction.
This is the FRF plot only for raw data.
Do you suggest now to try filtering the time data?
Thanks!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Digital Filtering에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by