summaryrefslogtreecommitdiff
path: root/3472/CH9/EX9.2/Example9_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3472/CH9/EX9.2/Example9_2.sce')
-rw-r--r--3472/CH9/EX9.2/Example9_2.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3472/CH9/EX9.2/Example9_2.sce b/3472/CH9/EX9.2/Example9_2.sce
new file mode 100644
index 000000000..af7bf6c61
--- /dev/null
+++ b/3472/CH9/EX9.2/Example9_2.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.2 :
+// Page number 101
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+l = 100.0 // Length of 3-phase transmission line(km)
+D = 120.0 // Distance between conductors(cm)
+d = 0.5 // Diameter of conductor(cm)
+
+// Calculations
+r_GMR = 0.7788*d/2.0 // GMR of conductor(cm)
+L = 2.0*10**-4*log(D/r_GMR) // Inductance per phase(H/km)
+L_l = L*l // Inductance per phase for 100km length(H)
+
+// Results
+disp("PART II - EXAMPLE : 2.2 : SOLUTION :-")
+printf("\nInductance per phase of the system, L = %.4f H \n", L_l)
+printf("\nNOTE: ERROR: In textbook to calculate L, log10 is used instead of ln i.e natural logarithm. So, there is change in answer")