Support required on given Vienna Rectifier Simulation: Control inside the PWM Generator
이전 댓글 표시
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
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".
채택된 답변
추가 답변 (1개)
Joel Van Sickel
2023년 1월 10일
0 개 추천
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 Community
카테고리
도움말 센터 및 File Exchange에서 Converters (High Power)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!