summaryrefslogtreecommitdiff
path: root/1904/CH5/EX5.4/5_4.sce
blob: 8db191eabbcd8e3c4f977540808ae87737b14570 (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
36
37
38
39
40
41
42
43
44
45
46
47
//To determine the percent voltage drops using nomnial operating voltage as base voltage
//Page 265
clc;
clear;

Sl=518; //Total Load on Lateral
Sm=5180; //Total Load on Main
Vll=12.47; //Line to Line voltage

//Currents in the respective current
Ilateral=Sl/(sqrt(3)*Vll);
Imain=Sm/(sqrt(3)*Vll);

C=5280; //Length Constant
Ll=5760/C; //Lateral Length
Lm=3300/C; //Main Length

//Constant for the cables
Km=0.0008;
Kl=0.00175;

//Voltage Drop Percents for 3 phase
VDlateral=Ll*Kl*Sl/2;

//Due to peculiarity of this new problem, one half of the main has to considered as express feeder and the other connected to a uniformly distributed load of 5180kVA
VDmain=Lm*Km*Sm*3/4;
TVD=VDmain+VDlateral;

//Since the inductive reactance of the line is
Cd=12; //Constant to find the distance in terms of feet

//Diameters of the Conductors
Dmi=37;
Dmn=53;

//Drops per mile
xdi=0.1213*log(Dmi/Cd);
xdn=0.1213*log(Dmn/Cd);

Dxd=xdn-xdi; //Difference in Drops

printf('\na) The percent voltage drops at :\n')
printf('Lateral End is %g percent\n',VDlateral)
printf('Main End is %g percent\n',VDmain)

printf('\nb) The Above Drops meet the required criterion of 4 percent voltage drop\n')
printf('\nc) The Difference in Voltage drop is %g ohm/mile, which is a smaller VD valuue that it really is.\n',Dxd)