summaryrefslogtreecommitdiff
path: root/3872/CH4/EX4.8/Ex4_8.sce
blob: d508fc80549c5d7f760299d24037d53e71d7ffab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Book - Power System: Analysis & Design 5th Edition
// Authors - J. Duncan Glover, Mulukutla S. Sharma, Thomas J. Overbye
// Chapter - 4 : Example 4.8
// Scilab Version 6.0.0 : OS - Windows

clc;
clear;

H = 18;                                          // Average line heightin ft
e = 8.854*10^-12; 
D = 5;                                           // Diameter of the conductor in ft
r = 0.023;                                       // Radius of the copper conductor ft

Hxx = 2*(H);                                     // Geometric mean radius in ft
Hxy = sqrt((Hxx)^2 + (5)^2);                     // Geometric mean distance in ft
Cxy = ((%pi)*(e))/((log(D/r))-(log(Hxy/Hxx)));   // Line to Line capacitance in F/m

printf('Line to Line capacitance is  (Cxy) = %0.3e  F/m', Cxy);