short interruptions in motors
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
zaid altameemi
il 19 Set 2016
Risposto: zaid altameemi
il 20 Set 2016
hi there please how can I put short interruption to motors in matlab simulink thank you in advance
0 Commenti
Risposta accettata
Nihar Deodhar
il 20 Set 2016
Modificato: Walter Roberson
il 20 Set 2016
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 Commenti
Walter Roberson
il 20 Set 2016
Note that this might be enough for quadrature encoder motors such as http://www.mathworks.com/help/supportpkg/texasinstrumentsc2000/examples/permanent-magnet-synchronous-motor-field-oriented-control.html
Più risposte (2)
Community
Più risposte nel Power Electronics Control
Vedere anche
Categorie
Scopri di più su Motor Drives in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!