阶次跟踪(Order Tracking) 阶次跟踪,英文Order Tracking,实际上对旋转机械测试信号进行采样分析的一种先进技术。 目前可以进行阶次分析的信号采样方法基本有两种。一种是固定采样(Fixed Sample),另一种是同步重采样(Synchronous Sample),也称阶次跟踪(Order Tracking)。 固定采样(Fixed sample)是基于时间数据 而阶次跟...
MATLAB提供了多个函数和工具箱来进行阶次分析,其中比较常用的是orderAnalysis函数,它属于信号处理工具箱(Signal Processing Toolbox)。此外,Order Tracking Toolbox也提供了更专业的阶次分析工具。 3. 准备用于阶次分析的数据 在进行阶次分析之前,我们需要准备包含振动信号和对应转速信号的数据。这些数据通常以时间序列的...
trackSingleObject函数需要一个传入参数para,因此实际需要先调用getDefaultParameters函数得到para,再传给trackSingleObject函数。我这里新建了一个kalmanFilterForTracking函数实现这个功能。 function kalmanFilterForTracking trackSingleObject(getDefaultParameters) end 1. 2. 3. 4. 5. 2.4 卡尔曼滤波器参数配置 卡尔曼...
⛄ 参考文献 T. Li, Z. Peng, H. Xu and Q. He, "Parameterized domain mapping for order tracking of rotating machinery," in IEEE Transactions on Industrial Electronics, 2022, doi: 10.1109/TIE.2022.3201311 ⛳️ 代码获取关注我 ️部分理论引用网络文献,若有侵权联系博主删除 ️ 关注我...
T. Li, Z. Peng, H. Xu and Q. He, "Parameterized domain mapping for order tracking of rotating machinery," in IEEE Transactions on Industrial Electronics, 2022, doi: 10.1109/TIE.2022.3201311 ?? 代码获取关注我 ??部分理论引用网络文献,若有侵权联系博主删除 ...
Use the script to get some hints how to perform order tracking and Campbell plots like used in sound and vibration testing of rotating machinery. Cite As Berthold Kaeferstein (2025). campbell (https://www.mathworks.com/matlabcentral/fileexchange/2251-campbell), MATLAB Central File Exchange. ...
VibroMaster大型旋转机械振动在线监测与故障诊断系统系统是一款旋转机械振动信号实时采集,实时分析与实时显示的专业化多视图振动信号分析系统,支持设备振动信号稳态分析以及启停瞬态分析功能。系统采用了最新的计算阶比跟踪技术(Computed Order Tracking-COT)、时域同步平均技术(Time Synchronous Averaging-TSA)以及故障特征增强技...
If you apply scan matching to a sequence of scans, you can use it to recover a rough map of the environment that the robot traverses. Scan matching also plays a crucial role in other applications, such as position tracking and Simultaneous Localization and Mapping (SLAM). ...
order = 1; nameC = {}; for i=1:size(nameAll,1) if strcmp(nameAll{i,1}(1,end-3:end),'.jpg')==1 % 找到'.jpg'文件名 nameC{order,1} = nameAll{i,1}; order = order + 1; end end 17.matlab 如何获取文件名 [转] 和 拷贝文件/matlab中哪个函数提取文件路径和名称 http://blog...
%% *** Do Tracking Algorithm *** tic for i = 2:num_frm % number of frames old_cent(i-1,:) = new_cent(i-1,:); framei = imread(img_dir(i).name); center_Ns = sampling(new_cent(i-1,:),Hx,Hy,Ns); % propagate particles (habitats) ...