summaryrefslogtreecommitdiff
path: root/3472/CH12/EX12.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3472/CH12/EX12.1
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/CH12/EX12.1')
-rw-r--r--3472/CH12/EX12.1/Example12_1.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/3472/CH12/EX12.1/Example12_1.sce b/3472/CH12/EX12.1/Example12_1.sce
new file mode 100644
index 000000000..6e781e9b6
--- /dev/null
+++ b/3472/CH12/EX12.1/Example12_1.sce
@@ -0,0 +1,29 @@
+// 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 5: MECHANICAL DESIGN OF OVERHEAD LINES
+
+// EXAMPLE : 5.1 :
+// Page number 198
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+u = 5758.0 // Ultimate strength(kg)
+S = 2.0 // Sag(m)
+s = 2.0 // Factor of safety
+L = 250.0 // Span length(m)
+
+// Calculations
+T = u/s // Allowable max tension(kg)
+w = S*8.0*T/L**2 // weight(kg/m)
+l = L/2 // Half span length(m)
+half_span = l+(w**2*l**3/(6*T**2)) // Half span length(m)
+total_length = 2*half_span // Total length(m)
+weight = w*total_length // Weight of conductor(kg)
+
+// Results
+disp("PART II - EXAMPLE : 5.1 : SOLUTION :-")
+printf("\nWeight of conductor = %.2f kg", weight)