summaryrefslogtreecommitdiff
path: root/2273/CH3/EX3.2/ex3_2.sce
blob: c5ad244cfc87488a456c732759df575ccf9f2c59 (plain)
1
2
3
4
5
6
7
8
9
10
11
//Calculate the max sag
clear;
clc;
//soltion
//given
W=.6;//kg/m//Line conductor wieght
L=300;//meter//span of the line
T=1200;//kg//max allowable tension
printf("Max sag= (W*L^2)/(8*T)\n");
sag= (W*L^2)/(8*T);
printf("Sag= %.3f m",sag);