summaryrefslogtreecommitdiff
path: root/3872/CH4/EX4.8
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3872/CH4/EX4.8
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3872/CH4/EX4.8')
-rw-r--r--3872/CH4/EX4.8/Ex4_8.JPGbin0 -> 13870 bytes
-rw-r--r--3872/CH4/EX4.8/Ex4_8.sce18
2 files changed, 18 insertions, 0 deletions
diff --git a/3872/CH4/EX4.8/Ex4_8.JPG b/3872/CH4/EX4.8/Ex4_8.JPG
new file mode 100644
index 000000000..12dbf307b
--- /dev/null
+++ b/3872/CH4/EX4.8/Ex4_8.JPG
Binary files differ
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);