资源简介

对轴承振动信号进行滤波和包络频谱分析,可通过包络谱发现轴承故障,也可用于其他故障诊断的研究,程序已调试通过。

资源截图

代码片段和文件信息

% EMD的Hilbert包络解调
load 2004.02.17.08.02.39;
x1=X2004_02_17_08_02(1:200002);
load 2004.02.19.06.02.39;
x2=X2004_02_19_06_02(1:200002);
y1=x1;
y2=x2;

figure(1)
fs=20000;
N=20000;
t=1/fs:1/fs:N/fs;
plot(t(1:1000)x1(1:1000)‘k‘);
set(gca ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘XLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘YLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
xlabel(‘采样时间t/s‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);
ylabel(‘幅值A/g‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);

figure(2)
plot(t(1:1000)y1(1:1000)‘k‘);
set(gca ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘XLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘YLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
xlabel(‘采样时间t/s‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);
ylabel(‘幅值A/g‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);

figure(3)
envelope_xqy(y120000);
figure(4)
plot(t(1:1000)x2(1:1000)‘k‘);
set(gca ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘XLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘YLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
xlabel(‘采样时间t/s‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);
ylabel(‘幅值A/g‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);

figure(5);
plot(t(1:1000)y2(1:1000)‘k‘);
set(gca ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘XLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
set(get(gca‘YLabel‘) ‘Fontname‘ ‘Times New Roman‘ ‘Fontsize‘ 10.5);
xlabel(‘采样时间t/s‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);
ylabel(‘幅值A/g‘‘fontsize‘10.5‘Fontname‘ ‘方正宋黑简体‘);

figure(6);
envelope_xqy(y220000);

 

 
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1830  2014-11-25 11:21  bearing_envelope_test.m
     文件         574  2014-11-25 11:15  envelope_xqy.m
     文件         269  2014-10-31 15:51  signal_filter.m

评论

共有 条评论