필터 지우기
필터 지우기

short interruptions in motors

조회 수: 2 (최근 30일)
zaid altameemi
zaid altameemi 2016년 9월 19일
답변: zaid altameemi 2016년 9월 20일
hi there please how can I put short interruption to motors in matlab simulink thank you in advance

채택된 답변

Nihar Deodhar
Nihar Deodhar 2016년 9월 20일
편집: Walter Roberson 2016년 9월 20일
This could be done by sending 'zero' input to the motor for the desired time. Create a simple embedded function in simulink with input as time (clock block from simulink) and the output as input to the motor. The embedded function can have programmed interruptions with if conditions. For instance,
function y = f(t)
if 20<t && t<25
y = 0;
else
y = 1;
end
something like that would send a zero input signal to the motor for 5 seconds between t = 20 and t = 25 seconds.
  댓글 수: 2
Walter Roberson
Walter Roberson 2016년 9월 20일
zaid altameemi
zaid altameemi 2016년 9월 20일
thank you so much

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

추가 답변 (2개)

zaid altameemi
zaid altameemi 2016년 9월 20일
thank you so much

zaid altameemi
zaid altameemi 2016년 9월 20일
hi Nihar Deodhar i applied this way but im not sure about it please could you help me

커뮤니티

더 많은 답변 보기:  Power Electronics Community

카테고리

Help CenterFile Exchange에서 Motor Drives에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by