diff options
Diffstat (limited to '3872/CH4/EX4.8/Ex4_8.sce')
-rw-r--r-- | 3872/CH4/EX4.8/Ex4_8.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3872/CH4/EX4.8/Ex4_8.sce b/3872/CH4/EX4.8/Ex4_8.sce new file mode 100644 index 000000000..d508fc805 --- /dev/null +++ b/3872/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,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);
|