Selective Harmonic Elimination (SHE) - PWM Techniques | MATLAB Simulation

Поделиться
HTML-код
  • Опубликовано: 14 окт 2024

Комментарии • 89

  • @RizwanHamidEE--SL-
    @RizwanHamidEE--SL- 4 года назад +6

    Sir can you provide whole simulation i.e,how to draw each block of simulation diagram

  • @gergelytakacs
    @gergelytakacs Год назад +1

    The Matlab code does run and it is correct. Be aware, that this is the version for a full bridge (3-level) inverter. Some lectures online derive the equations nicely, but mostly for the 2 level half bridge version.
    It implements the example from the Master's thesis OPTIMIZED HARMONIC STEPPED-WAVEFORM FOR
    MULTILEVEL INVERTER (Siriroj Sirisukprasert) and if it agrees with the one shown in this video, then produces the same result as in the example shown in the thesis.
    If you would like to see the derivation of why this works, the thesis does not show it but you can find it in the paper "Generalized Techniques of Harmonic Elimination and Voltage Control in Thyristor Inverters: Part I--Harmonic Elimination" by Patel et al.
    (If you want to make it run, be careful that F is a vector, but dF is a matrix (spaces) a mistake that some of the commenters have made. Also, the break condition needs the function "all", this may have been a subtle change in Matlab Since this video was posted.)

    • @SUNInnovative
      @SUNInnovative  Год назад

      Please subscribe this channel we are publishing more related video soon.

  • @Sushil_IITian
    @Sushil_IITian 29 дней назад

    Very nice video sir, could you please provide matlab simulation and script files that would be very useful for many students like me sir.

  • @MohdShadab-ql4nw
    @MohdShadab-ql4nw 3 года назад +2

    Sir Please make a video of CASCADED H-BRIDGE INVERTER up to the value of alpha 6

  • @wailalwajeeh6520
    @wailalwajeeh6520 3 года назад +1

    Thanks for sharing this valuable information. I have a question. Why the low order harmonics are not completely eliminated as the SHE technique eliminates the low order harmonics?

    • @harikapadma7337
      @harikapadma7337 2 года назад +1

      Same doubt, the value of THD is still around 75 which is very high

    • @sabheehali417
      @sabheehali417 Год назад +1

      @@harikapadma7337 I believe it is because of the presence of higher order harmonics which can be removed easily using filters.

  • @GoubindaSarkar-wi5js
    @GoubindaSarkar-wi5js 6 месяцев назад

    Can you tell how did you get the value of aplha1=20*pi/180....and so on

  • @vinayakashetty5993
    @vinayakashetty5993 2 года назад

    can you please explain how the SHE is applied for 5 level cascaded inverter, how to derive the switching pulses for all the switches.

  • @NK-nj8ug
    @NK-nj8ug 3 года назад

    For harmonic order =5,7 it shows negative values of angles. harmonic order you have written there it means for 3rd harmonic or upto 3 harmonics?

  • @debashishmohanty3596
    @debashishmohanty3596 4 года назад

    In the 3rd line of the script file, can you tell me what you've written after "The modulation index" ?

  • @avmnk
    @avmnk 3 дня назад

    clc;
    clear all;
    A=input('M=');
    H=input('H=');
    M=0:0.01:A;
    for ii = 1:length(M)
    alpha1=20*pi/180;
    alpha2=30*pi/180;
    alpha3=50*pi/180;
    alpha4=70*pi/180;
    alpha5=80*pi/180;
    for i=1:H+1

    T = [M(ii)*pi/4 0 0 0 0]';
    % F matrix: Cosine terms for harmonics
    F = [cos(alpha1)-cos(alpha2)+cos(alpha3)-cos(alpha4)+cos(alpha5);
    cos(3*alpha1)-cos(3*alpha2)+cos(3*alpha3)-cos(3*alpha4)+cos(3*alpha5);
    cos(5*alpha1)-cos(5*alpha2)+cos(5*alpha3)-cos(5*alpha4)+cos(5*alpha5);
    cos(7*alpha1)-cos(7*alpha2)+cos(7*alpha3)-cos(7*alpha4)+cos(7*alpha5);
    cos(9*alpha1)-cos(9*alpha2)+cos(9*alpha3)-cos(9*alpha4)+cos(9*alpha5)];
    dF =[-sin(alpha1) +sin(alpha2) -sin(alpha3) +sin(alpha4) -sin(alpha5);
    -3*sin(3*alpha1) +3*sin(3*alpha2) -3*sin(3*alpha3) +3*sin(3*alpha4) -3*sin(3*alpha5);
    -5*sin(5*alpha1) +5*sin(5*alpha2) -5*sin(5*alpha3) +5*sin(5*alpha4) -5*sin(5*alpha5);
    -7*sin(7*alpha1) +7*sin(7*alpha2) -7*sin(7*alpha3) +7*sin(7*alpha4) -7*sin(7*alpha5);
    -9*sin(9*alpha1) +9*sin(9*alpha2) -9*sin(9*alpha3) +9*sin(9*alpha4) -9*sin(9*alpha5)];
    dalpha=(inv(dF))*(T-F);

    i;
    alpha=[alpha1;alpha2;alpha3;alpha4;alpha5]*180/pi
    % Update alpha values with the calculated delta
    F;
    dalpha*180/pi;
    alpha1=alpha1+dalpha(1);
    alpha2=alpha2+dalpha(2);
    alpha3=alpha3+dalpha(3);
    alpha4=alpha4+dalpha(4);
    alpha5=alpha5+dalpha(5);
    % Check for convergence
    if dalpha>-1e-15 & dalpha

  • @engr.inamurrehmanshahid3774
    @engr.inamurrehmanshahid3774 4 года назад +1

    Sir kindly make a video on Grid tie multilevel inverter power control.... i really like your videos

  • @pentainamerica
    @pentainamerica 4 года назад

    Hello, Could you please help me with this question:
    How many harmonic components at most can be eliminated by using alpha1 to alpha5?

  • @kannank6518
    @kannank6518 3 года назад

    Thank you for valuable information and also I need how to do 9 level flying capacitor multilevel inverter topology sir. Please reply me

  • @GoubindaSarkar-wi5js
    @GoubindaSarkar-wi5js 6 месяцев назад

    Can you provide for the nine level inverter

  • @harikapadma7337
    @harikapadma7337 2 года назад

    Can you tell how will the output for 5level inverter with shepwm would look like?

  • @critic87
    @critic87 3 года назад

    I was wondering if you could give me the script code of this video for NR method?

  • @loveykumar2810
    @loveykumar2810 4 года назад

    Very helpful..How can I get the file for NR method or simulink

  • @akshaykelagade6941
    @akshaykelagade6941 3 года назад +1

    Sir can you provide C program for selected harmonic elimination

  • @gulshankumaryadav8930
    @gulshankumaryadav8930 2 года назад

    sir, what about 180 to 360 degree. you haven't shown that simulation. how to find ig2??

    • @SUNInnovative
      @SUNInnovative  Год назад

      Please subscribe this channel, very soon we are doing live this matlab simulation to solve every query

  • @maulikkhatri
    @maulikkhatri 4 года назад +1

    Amazing

  • @muslimdad7627
    @muslimdad7627 11 месяцев назад

    i need this simulation and its program code as well

  • @NurulAtikahBtAzamanA19EE013
    @NurulAtikahBtAzamanA19EE013 Год назад

    Can you try do SHE with 5level of cross connected source mli?

    • @SUNInnovative
      @SUNInnovative  Год назад

      Please subscribe this channel we are publishing more related video soon.

  • @alial-khayyat8934
    @alial-khayyat8934 4 года назад +1

    What is pi/4 refere to ? and how can we get it ?

  • @ruthelenamendoza8244
    @ruthelenamendoza8244 Год назад +1

    Gracias

    • @SUNInnovative
      @SUNInnovative  Год назад

      de nada, suscríbete y comparte este canal con tus amigos.

  • @Rahul-RR-86
    @Rahul-RR-86 Год назад

    Sir , Your lecture is very helpful can you sent me the program code please

    • @SUNInnovative
      @SUNInnovative  Год назад

      Please subscribe this channel we are publishing more related video soon.

  • @bijithababum1237
    @bijithababum1237 Год назад

    Sir.. there is an error while running the code... It is shown that " error using inv
    Matrix must be square"

    • @SUNInnovative
      @SUNInnovative  Год назад

      You might be doing wrong while putting values.

    • @bijithababum1237
      @bijithababum1237 Год назад

      @@SUNInnovative sir what changes should be done for a 3 phase inverter??

    • @bijithababum1237
      @bijithababum1237 Год назад

      dalpha*180/pi;
      What is it mean for???

    • @SUNInnovative
      @SUNInnovative  Год назад

      It's rad, to degree conversation

    • @SUNInnovative
      @SUNInnovative  Год назад

      In that case you need to provide each pahse by 120 degree phase shifting

  • @oussamasimo0232
    @oussamasimo0232 4 года назад

    could you create a model for five level inverter with thise command (SHE)

    • @SUNInnovative
      @SUNInnovative  4 года назад

      Yes, please contact eoyinnovative@gmail.com

    • @priyam6943
      @priyam6943 2 года назад

      Did you contact them?

  • @saitejamahankali483
    @saitejamahankali483 4 года назад

    hello, The THD value is very high. How to reduce it?

  • @sadiarafiq8693
    @sadiarafiq8693 11 месяцев назад

    Please provide the code file?

  • @sathyajithvp7011
    @sathyajithvp7011 4 года назад

    Could you help me with some doubts in this matlab simulation...
    Please help😇

  • @yaakoubmt9767
    @yaakoubmt9767 4 года назад

    i look for five level inverter single phase command by Selective Harmonic Elimination

    • @SUNInnovative
      @SUNInnovative  4 года назад

      Please send requirement on eoyinnovative@gmail.com

    • @priyam6943
      @priyam6943 2 года назад

      Did you get response?

  • @alial-khayyat8934
    @alial-khayyat8934 4 года назад

    Where is the value in the code, 20, 30, 50, 70 and 80 come from?

    • @SUNInnovative
      @SUNInnovative  4 года назад

      It's for cancellation of fundamental Frequency Eliminate

    • @alial-khayyat8934
      @alial-khayyat8934 4 года назад

      @@SUNInnovative how would you calculate them ?

  • @marcorosucci3903
    @marcorosucci3903 4 года назад

    could you create a model for v2g (Vehicle to Grid)

  • @sreelakshmi6549
    @sreelakshmi6549 3 года назад

    Can I get this simulation to my mail id?

  • @mdsartajahmed3398
    @mdsartajahmed3398 2 года назад

    I need simulation

  • @zong4264
    @zong4264 2 года назад

    I have mailed u seeking help in matlab haven't received any response from you, please response.Thank you!

  • @murtazabugti8305
    @murtazabugti8305 11 месяцев назад

    this can work for 11 harmonics

  • @swatinegi8941
    @swatinegi8941 4 года назад

    Pls provide this program

    • @SUNInnovative
      @SUNInnovative  4 года назад

      visit online store www.suninnovative.in

  • @himanshu3622
    @himanshu3622 4 года назад

    please give the code file

    • @dictionarycom7931
      @dictionarycom7931 4 года назад

      Assignment karna hai kya PQIS ka😆😆

    • @aecl6327
      @aecl6327 4 года назад

      Yaar tere assignment main jo answer hain wo galat hain. Alpha ki value satisfy nahi kar rhi equation ko. check kar bhai ek baar🤬🤬

    • @dictionarycom7931
      @dictionarycom7931 4 года назад

      @Himanshu Rajoria, ek bhi equation satisfy nhi ho rhi hai, check kro el baar

  • @sandeeppodder1491
    @sandeeppodder1491 4 года назад

    I have mailed u seeking help in matlab haven't received any response from you, please response,its 5days

    • @SUNInnovative
      @SUNInnovative  4 года назад

      Resend on eoyinnovative@gmail.com, sorry for inconvience,

    • @sandeeppodder1491
      @sandeeppodder1491 4 года назад

      Jst resent u the mail please look into it and help me

    • @pentainamerica
      @pentainamerica 4 года назад

      Hello bro, can you please forward the code to my mail
      harshitp9989@gmail.com
      I will help me so much in my project.
      Please send it to me.

    • @basavarajuk4135
      @basavarajuk4135 3 года назад

      @@pentainamerica bro do u get the code??

    • @pentainamerica
      @pentainamerica 3 года назад

      @@basavarajuk4135 noo

  • @avmnk
    @avmnk 23 дня назад

    very poor explanation of the matlab code