summaryrefslogtreecommitdiff
path: root/2078/CH10/EX10.9/Example10_9.sce
blob: 7087a20b6719170bf56f2956869751d86a330cc5 (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
//Exa 10.9
clc;
clear;
close;
//Given data :
L=250;//m
D=1.42;//cm
wc=1.09;//kg/m
Pw=37.8;//kg/m^2(Wind pressure)
r=1.25;//cm
Lis=1.43;//m(insulator string length)
Clearance=7.62;//m
rho_i=913.5;//kg/m^3(density of ice)
stress=1050;//kg/cm^2
T=stress*%pi/4*D^2;//kg
wi=rho_i*%pi*r*10^-2*(D+r)*10^-2;//kg
w_w=Pw*(D+2*r)*10^-2;//kg
wr=sqrt((wc+wi)^2+w_w^2);//kg(Resultant force per m length of conductor)
Smax=wr*L^2/8/T;//max sag in air
disp(Smax,"Sag in inclined direction(meter)");
Sdash=Smax*(wc+wi)/wr;//max sag in air
disp(Sdash,"Sag in vertical direction(meter)");
h=Clearance+Sdash+Lis;//m
disp(h,"Height of lowest cross arm(m)");