fft Matlab 振动时域到频率测量持续时间= 60 s

fft Matlab vibration time domain to frequency measurement duration= 60 s

我正在尝试将时域中的振动信号转换为频域(使用 fft)以显示幅度响应。但是图表显示是这样的。能否请您看一下,看看我哪里出了问题?

关于数据是从 2015 年 1 月 4 日开始的时域往复式压缩机的振动 0:00:00 - 2015 年 4 月 15 日 1:46:00 有 20267 行,测量持续时间 = 60 秒或 1 分钟,压缩机的 RPM = 372.99152 RPM Link to dataset 在数据中 x45= 振动 (m/s^2) 和 x52 = 压缩机的转速

%% load vibration data in csv file
filename = 'data.csv';
T = readtable(filename);

T1 = T(:,1:2);
x45 = T1{:,2};

plot(T.time,T.x45);
xlabel('Time in seconds');
ylabel('Amplitude of signal');

dc3 = dsp.DCBlocker('Algorithm','Subtract mean'); % I use mean to remove dc-offset
y3 = dc3(T.x45); 

%% Use FFT convert time domain signal into frequency domain
% FFT output follows complex notation (a+ib)
X45 = fft(y3); % X45 is the frequency domain representation

%% Retrieve the magnitude information from X45
X45_mag = abs(X45); 

%% Retrieve the phase information from X45
X45_phase = angle(X45); 

%% Frequency bins
N = length(x45);
Ts = 60; % measurement duration= 60 s or 1 minute
Fs = 1 / Ts ;
Fbins = ((0: 1/N: 1-1/N)*Fs).'; 

%% Plot magnitude response
helperFFT(Fbins,X45_mag,'Magnitude Response')

%% Plot phase response
helperFFT(Fbins,X45_phase,'Phase Response')


function helperFFT(bin, yVal,titleStr)
%Copyright 2014 The MathWorks, Inc
close all;clc;
figure;
plot(bin, yVal,'Color',[0,0,1],'LineWidth',1.5); box on; grid on;
xlabel('Frequency (Hz).'); 
if strcmp(titleStr,'Phase Response');
ylabel('Radians');
title('FFT - Phase Response');
else
ylabel('Magnitude');
title('FFT - Magnitude Response');
end

时域信号:

幅度谱:

相谱:

你的幅度谱看起来不错,但你只需要绘制一半的频谱(真实信号具有复共轭对称性)。

另请查看 periodogram 等 MATLAB 函数,它们可以为您完成上述许多工作。