Torque ripple plot in MATLAB

조회 수: 3 (최근 30일)
Seung Hyuk (Mark) CHOI
Seung Hyuk (Mark) CHOI 2021년 10월 18일
답변: Star Strider 2021년 10월 18일
I get that the above plot is sinusoidal waves in multiple phases, but I don't understand how to isolate them into bold gren line. I have tried googling torque ripple or cogging but came with no luck. Anybody point me in the right direction, that'd be great.

답변 (1개)

Star Strider
Star Strider 2021년 10월 18일
Try something like this —
t = linspace(0, 720, 1000);
s = [sind(2.5*t); sind(2.5*t+180)];
figure
plot(t,s, '--')
hold on
plot(t, max(s),'-g', 'LineWidth',2)
hold off
grid
.

카테고리

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