フィルターのクリア

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

コミュニティ

カテゴリ

Help Center および File ExchangeMotor Drives についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by