summaryrefslogtreecommitdiff
path: root/98/CH11/EX11.17/example11_17.sce
blob: 4c40c34b124d94a961682d4015c9ef747f90d1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Chapter 11
//Example 11_17
//Page 289

clear;clc;

c=0.3;
v=11;
f=50;
l=5;

c3=l*c;
vph=v*1000/sqrt(3);
cn=2*c3;
ic=2*%pi*f*cn*vph/1e6;

printf("The capacitance between a pair of cores with third core earthed for a length of %d km is: \n C3 = %.2f uF \n\n", l, c3);
printf("Phase voltage = %.0f V \n\n", vph);
printf("Core to nuetral capacitance = %.2f uF \n\n", cn);
printf("Charging current = %.2f A \n\n", ic);