summaryrefslogtreecommitdiff
path: root/3472/CH9/EX9.25/Example9_25.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3472/CH9/EX9.25/Example9_25.sce
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 '3472/CH9/EX9.25/Example9_25.sce')
-rw-r--r--3472/CH9/EX9.25/Example9_25.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3472/CH9/EX9.25/Example9_25.sce b/3472/CH9/EX9.25/Example9_25.sce
new file mode 100644
index 000000000..7da4ececf
--- /dev/null
+++ b/3472/CH9/EX9.25/Example9_25.sce
@@ -0,0 +1,30 @@
+// A Texbook on POWER SYSTEM ENGINEERING
+// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
+// DHANPAT RAI & Co.
+// SECOND EDITION
+
+// PART II : TRANSMISSION AND DISTRIBUTION
+// CHAPTER 2: CONSTANTS OF OVERHEAD TRANSMISSION LINES
+
+// EXAMPLE : 2.25 :
+// Page number 120
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+d_1 = 6.0 // Distance between conductor 1 & 2(m)
+d_2 = 6.0 // Distance between conductor 2 & 3(m)
+d_3 = 12.0 // Distance between conductor 3 & 1(m)
+dia = 1.24/100 // Diameter of conductor(m)
+l = 100.0 // Length of line(km)
+
+// Calculations
+r = dia/2 // Radius of conductor(m)
+e = 8.854*10**-12 // Constant ε_0
+d = (d_1*d_2*d_3)**(1.0/3) // Distance(m)
+C = 2*%pi*e/log(d/r) // Capacitance(F/m)
+C_l = C*1000.0*l // Capacitance for entire length(F)
+C_lu = C_l*10.0**6 // Capacitance for entire length(μF)
+
+// Results
+disp("PART II - EXAMPLE : 2.25 : SOLUTION :-")
+printf("\nCapacitance of the line, C = %.3f μF", C_lu)