From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3472/CH9/EX9.15/Example9_15.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 3472/CH9/EX9.15/Example9_15.sce (limited to '3472/CH9/EX9.15/Example9_15.sce') diff --git a/3472/CH9/EX9.15/Example9_15.sce b/3472/CH9/EX9.15/Example9_15.sce new file mode 100644 index 000000000..e9d8d1d71 --- /dev/null +++ b/3472/CH9/EX9.15/Example9_15.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.15 : +// Page number 111 +clear ; clc ; close ; // Clear the work space and console + +// Given data +D_eq = 2.88 // Equilateral spacing of line(m) + +// Calculations +D = D_eq/2**(1.0/3) // Distance(m) +D_13 = 2.0*D // Distance between conductor 1 & 3(m) +D_12 = D // Distance between conductor 1 & 2(m) +D_23 = D // Distance between conductor 2 & 3(m) + +// Results +disp("PART II - EXAMPLE : 2.15 : SOLUTION :-") +printf("\nSpacing between conductor 1 & 2 to keep inductance same, D_12 = %.1f m", D_12) +printf("\nSpacing between conductor 2 & 3 to keep inductance same, D_23 = %.1f m", D_23) +printf("\nSpacing between conductor 1 & 3 to keep inductance same, D_13 = %.1f m", D_13) -- cgit