blob: 41173d8d46314fbc37d6d71d2787c614f677337c (
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
|
// Book - Power System: Analysis & Design 5th Edition
// Authors - J. Duncan Glover, Mulukutla S. Sharma, Thomas J. Overbye
// Chapter - 4 : Example 4.3
// Scilab Version 6.0.0 : OS - Windows
clc;
clear;
f = 60; // Single Phase line operating fruquency in Hz
S = 12; // Strand Copper conductors
Dxy = 5; // Geometrical Mean Distance between conductor centers in ft
Dxx =0.01750; // Geometrical Mean Radiance of Copper Conductor in feet from Table A.3
Dyy = Dxx;
l = 20; // Line length in miles
Lx = (2*10^-7)*log(Dxy/Dxx)*1609*l; // Line Inductance in Henry per conductor
Ly = Lx;
L = Lx+Ly; // Total Inductance in Henry per Circuit
Xl = (2*%pi*f*L); // Total Inductive Reactance in Ohm per circuit
printf('Line Inductance is (Lx) = %f H per conductor',Lx);
printf('\nTotal Inductance is (L) = %0.5f H per circuit',L);
printf('\nTotal Inductive Reactance is (Xl) = %0.2f Ohm per circuit',Xl);
|