Support required on given Vienna Rectifier Simulation: Control inside the PWM Generator
Afficher commentaires plus anciens
Thank you for providing the Vienna Simulation. The control for this rectifier is easy to understand except the PWM control used inside the PWM generator. It would be a great help, if anyone can suggest me the logic adopted inside the PWM generator block.
The link for the Vienna simulation : https://in.mathworks.com/help/sps/ug/vienna_rectifier.html?s_tid=srchtitle_vienna%20_1
Kindly elucidate the control inside the encircled block that is shown in the attached image.

Thank you!
1 commentaire
shiv singh
le 9 Jan 2023
Modifié(e) : shiv singh
le 9 Jan 2023
Kindly provide me matlab simulink model for "design of sliding mode controller for single phase quasi impedance source inverter".
Réponse acceptée
Plus de réponses (1)
Joel Van Sickel
le 10 Jan 2023
0 votes
The help doc here has references to the material used to derive it if you want to dig deeper (see bottom of document): https://www.mathworks.com/help/sps/ref/pwmgeneratorviennarectifier.html
The algorithm is also "white box" meaning you can view the matlab code that impelments it. If you right clock the block and look under mask, you will see a subsystem called "Switching Time Calculation". This is a matlab function block that you can double click on. Inside of it, you will see this line of code:
[TgabcON,TgabcOFF,SmallHexNum] = ee.control.pwm.SwitchingTimeViennaRectifier(Vabc,Iabc,vdc,vneutral,fsw);
if you highlight the following "ee.control.pwm.SwitchingTimeViennaRectifier" you can right click the text and select the option open("ee.control.pwm.SwitchingTimeViennaRectifier")
however, now that I've explained it, you can skip that step and just paste this into your command window ->
open("ee.control.pwm.SwitchingTimeViennaRectifier")
and it will open up the algorithm for you. That will get you started.
1 commentaire
ujas patel
le 15 Jan 2023
Communautés
Plus de réponses dans Power Electronics Control
Catégories
En savoir plus sur Simscape Electrical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!