summaryrefslogtreecommitdiff
path: root/3204/CH2/EX2.13/Ex2_13.sce
blob: 24bf02c3ee4fc58f77e2f5c42affa9e56426e966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Initilization of variables
W=2500 //N //This load acts at point B and C.
alpha=30 //degree // angle made by T1 with +ve y-axis & T2 with +ve x-axis
//Calculations
T2=W-(((cosd(alpha))^2/(sind(alpha)))-(sind(alpha))) // N // substuting eq'n 1 in 2
T1=(T2*cosd(30))/(sind(30)) //N // using eq'n 1
T3=T2 //N // By equilibrium eq'n at point C(sumFx=0)
//Results
clc
printf('Tension in portion AB is %f N \n',T1)
printf('Tension in portion BC is %f N \n',T2)
printf('Tension in portion CD is %f N \n',T3)