summaryrefslogtreecommitdiff
path: root/1055/CH11/EX11.1/ch11_1.sce
blob: 77d276d9d0817a098a033da08da40ef341d03e49 (plain)
1
2
3
4
5
6
7
8
9
10
// To find the inductance and KVA rating of the arc suppressor coil in the system 
clear
clc;
C1=2*%pi*(10^-9)/(36*%pi*log((4*4*8)^(1/3)/(10*(10^-3))));
C=C1*192*(10^9);// capacitance per phase (micro farad)
L=(10)^6/(3*314*314*C);
V=132;//voltage (kV)
MVA=V*V/(3*314*L);
mprintf("inductance ,L=%.2f H\n",L);
mprintf("MVA rating of suppressor  coil =%.3f MVA per coil",MVA);