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/CH47/EX47.2/Example47_2.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 3472/CH47/EX47.2/Example47_2.sce (limited to '3472/CH47/EX47.2/Example47_2.sce') diff --git a/3472/CH47/EX47.2/Example47_2.sce b/3472/CH47/EX47.2/Example47_2.sce new file mode 100644 index 000000000..4b81630ae --- /dev/null +++ b/3472/CH47/EX47.2/Example47_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 IV : UTILIZATION AND TRACTION +// CHAPTER 9: ELECTRIC TRACTION SYSTEMS AND POWER SUPPLY + +// EXAMPLE : 9.2 : +// Page number 820 +clear ; clc ; close ; // Clear the work space and console + +// Given data +D = 50.0 // Distance between poles(m) +w = 0.5 // Weight of trolley wire per metre(kg) +T = 520.0 // Maximum tension(kg) + +// Calculations +l = D/2 // Half distance b/w poles(m) +d = w*l**2/(2*T) // Sag(m) +wire_length = 2*(l+(2*d**2/(3*l))) // Length of wire required(m) + +// Results +disp("PART IV - EXAMPLE : 9.2 : SOLUTION :-") +printf("\nMaximum sag, d = %.4f metres", d) +printf("\nLength of wire required = %.f metres", wire_length) -- cgit