Support required on given Vienna Rectifier Simulation: Control inside the PWM Generator

13 次查看(过去 30 天)
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 个评论
shiv singh
shiv singh 2023-1-9
编辑:shiv singh 2023-1-9
Kindly provide me matlab simulink model for "design of sliding mode controller for single phase quasi impedance source inverter".

请先登录,再进行评论。

采纳的回答

Sabin
Sabin 2023-1-10
The Vienna Rectifier (PWM Generator) is used to generate the gate signals for Vienna Rectifier and is based on the theory from R. Burgos, R. Lai, Y. Pei, F.Wang, D. Boroyevich, and J. Pou, “Space vector modulation for Vienna-type rectifiers based on the equivalence between two- and three-level converters: A carrier-based implementation”, IEEE Trans. Power Electron., vol. 23, no. 4, pp. 1888–1898, Jul. 2008
It is implemented in a similar fashion with the PWM Generator (Three-phase, Two-level) block. Ineternally the small hexagon is choosen and the reference vector is calculated then the ON and OFF gating times are obtained. I hope this helps.

更多回答(1 个)

Joel Van Sickel
Joel Van Sickel 2023-1-10
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.

社区

更多回答在  Power Electronics Control

类别

Help CenterFile Exchange 中查找有关 Simscape Electrical 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by