Frequency domain and time-frequency domain for sae data

조회 수: 1 (최근 30일)
Sameer Sayyad
Sameer Sayyad 2021년 5월 13일
댓글: Star Strider 2021년 5월 20일
% clear window
clc;
clear all;
% import xls or csv file
axial_Depth_1 = readtable('E:Variable axial cutting depth\1');
% fz: feed per tooth= 0.03 ; n: spindle speed= 1200; ap: axial cutting depth=1; ae: radial cutting depth=3.0
% extract data in respective sensors sensors
Cutting_force1= axial_Depth_1 (:,1:4);
% set sampling frequency for each sensor data
fz_force= 600;
L= 27900; % Total sample data points
%Timestamp for each sensor data signal based on sampling rate
%Ts_force= (0:L-1)*1/fz % To create time span data based on frequency
Ts_force= (0:L-1)*1/fz_force;
Ts_force= Ts_force'; % To transform rows into colomn
% Add Ts_force to Cutting force table
Cutting_force1 = addvars(Cutting_force1,Ts_force,'After','Torsion_Z');
Cutting_force1= head(Cutting_force1,27900);
%Plot cutting force data with respect to time (time-series data)
%Plot 1 Axial cutting force Vs. Time
figure(5);
%subplot (1,2,1)
plot(Cutting_force1.Ts_force,Cutting_force1.Axial_force, 'b');
title('Cutting forces for Variable Depath of cut (ap=1)'); grid on
xlabel('Time (Ts force)')
ylabel('Axial force in N')
I have done this much part till time domain graph. Please help me out to plot frequency domain graph and time- frequency domain graph.
Thanks in advance.

채택된 답변

Star Strider
Star Strider 2021년 5월 13일
The pspectrum function can likely help with this, specifically with respect to the time-frequency plot.
  댓글 수: 4
Star Strider
Star Strider 2021년 5월 13일
My pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by