blob: ff82085a431fd04256dae5f295201c03a5407f1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Example 8.3.
clc
format(6)
Vm=400
PIV=sqrt(3)*Vm
disp("As the supply voltage is 400 sin 314t, Vm = 400 V")
disp(PIV,"Peak inverse voltage(PIV)(V) = sqrt(3)*Vm =")
RMS=20
ff=1.11
Iav=round(RMS/ff)
disp("RMS value of current = 20 V")
disp(Iav,"Average value of current, Iav(A) = RMS value/form factor =")
pr=PIV*Iav
pr1=pr*10^-3
disp(pr1,"Power rating of the SCR(kW) = PIV * Iav =")
|