summaryrefslogtreecommitdiff
path: root/3472/CH12/EX12.1/Example12_1.sce
blob: 6e781e9b662c7b3928a7b69890310d67965bc59b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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)