summaryrefslogtreecommitdiff
path: root/3862/CH2/EX2.25/Ex2_25.sce
blob: 48941d59cc3417aa59b11c7108a1ac96b12a44b6 (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
clear
//

//variable declaration

PC=1500.0                       //Vertical loading at C,N
CD=2.0                        
AC=1.5
BD=1.0
AB=4.0

x=(((AC**2)-(BD**2))/4)+1
y=sqrt((AC**2)-(x**2))

alpha=acos(x/AC)
beta1=acos((CD-x)/BD)

//Applying Lami’s theorem to the system of forces acting at point C 

T1=PC*sin(%pi/2)/sin(%pi-alpha)
T2=PC*sin((%pi/2)+alpha)/sin(%pi-alpha)
T3=T2*sin(%pi/2)/sin((%pi/2)+beta1)
W=T2*sin(%pi-beta1)/sin((%pi/2)+beta1)


printf("\n W= %0.2f  N",W)