summaryrefslogtreecommitdiff
path: root/98/CH7/EX7.5/example7_5.sce
blob: d41d6f92c3a279ef293b2b9cadeeb236540c44c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//Chapter 7
//Example 7_5
//Page 149

clear;clc;

l=50;
mva=5;
pf=0.8;
kv=33;
n=0.9;
sr=2.85*1e-8;

p=mva*1e6*pf;
w=0.1*p;

//Single phase 2-wire system
i1=mva*1e6/kv/1000;
area1=2*sr*i1^2*l*1000/w;
vol1=2*area1*l*1000;

//3-phase 3-wire system
i2=mva*1e6/sqrt(3)/kv/1000;
area2=3*i2^2*sr*l*1000/w;
vol2=3*area2*l*1000;

printf("(I) SINGLE PHASE, 2-WIRE SYSTEM: \n");
printf("Line current = %.1f A \n", i1);
printf("Area of cross section = %.3f*10^-4 m^2 \n", area1*1e4);
printf("Volume of conductor required = %.2f m^3 \n\n", vol1);

printf("(II) 3-PHASE, 3-WIRE SYSTEM: \n");
printf("Line current = %.1f A \n", i2);
printf("Area of cross section = %.3f*10^-4 m^2 \n", area2*1e4);
printf("Volume of conductor required = %.2f m^3 \n\n", vol2);