blob: 704b9f7f3c801815c51618829e8f4a30b9582806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//2,28
clc;
Vm=2^0.5*400/3^0.5;
Vdc=3*3^0.5*Vm/%pi*cos(%pi/3);
Idc=150;
Pdc=Vdc*Idc;
printf("Output Power = %.1f W", Pdc)
Iavg_thy=Idc/3;
printf("\nAverage thyristor current = %.0f A", Iavg_thy)
Irms_thy=Idc*(2/6)^0.5;
printf("\nRMS value of thyristor current = %.1f A", Irms_thy)
Ip_thy=Idc;
printf("\nPeak current through thyristor = %.0f A", Ip_thy)
PIV=2^0.5*400;
printf("\nPeak inverse voltage = %.1f V", PIV)
|