summaryrefslogtreecommitdiff
path: root/371/CH16/EX16.6/16_6.sci
blob: 29e0b1f19fda88d1dde054dca2141299b2580252 (plain)
1
2
3
4
5
6
7
8
//Faults and Protection//
//Example 16.6//
V=230;//ac input voltage in volts//
Vh=30;//each selenium plate handling voltage in volts//
N=((V/Vh)+1);/number of plates in series in each direction in the ckt//
printf('number of plates in series in each direction=N=%f',N);
Nt=2*N;//total number of plates in series in the circuit//
printf('\ntotal number of plates in series in both directions=Nt=%f',Nt);