summaryrefslogtreecommitdiff
path: root/3472/CH9/EX9.4/Example9_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3472/CH9/EX9.4/Example9_4.sce')
-rw-r--r--3472/CH9/EX9.4/Example9_4.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3472/CH9/EX9.4/Example9_4.sce b/3472/CH9/EX9.4/Example9_4.sce
new file mode 100644
index 000000000..8a496b294
--- /dev/null
+++ b/3472/CH9/EX9.4/Example9_4.sce
@@ -0,0 +1,26 @@
+// 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.4 :
+// Page number 101
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+l = 80.0 // Length of 3-phase transmission line(km)
+D = 100.0 // Distance between conductors(cm)
+d = 1.0 // Diameter of conductor(cm)
+
+// Calculations
+r_GMR = 0.7788*d/2.0 // GMR of conductor(cm)
+L = 2.0*10**-7*log(D/r_GMR) // Inductance per phase(H/m)
+L_l = L*l*1000.0 // Inductance per phase for 80km(H)
+
+// Results
+disp("PART II - EXAMPLE : 2.4 : SOLUTION :-")
+printf("\nInductance per phase of the system, L = %.4f H \n", L_l)
+printf("\nNOTE: ERROR: Calculation mistake in textbook to find Inductance per phase of the system")