summaryrefslogtreecommitdiff
path: root/3776/CH12/EX12.3/Ex12_3.sce
blob: 889a51feeb3893e8382e4ec73f5f0d10bd83ef80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
clear
//Given
//Virtual loading
//Two parts 
//Part -1 
p_ab = 5     //KN The recorded virtual loading
p_bc = -4    //KN The recorded virtual loading
F_ab = 10    //KN
F_bc = -8    //KN
l_ab = 2.5           //mt - The length of the rod
l_bc = 2             //mt - The length of the rod
A_ab = 5*(10**-4)    //mt2 the areaof ab
A_bc = 5*(10**-3)    //mt2 the areaof bc
E = 70 //GPa The youngs modulus of the material
e_a =(p_ab*l_ab*F_ab/(A_ab*E) + p_bc*l_bc*F_bc/(A_bc*E))*(10**-6) //KN-m
//Part -2 due to flexure
I = 60*10**6    //mm4 - the moment of inertia 
//After solving the integration 
e_b = 0.01525 //KN-m
//Total
e = (e_a+e_b)*1 //m
printf("\n The point C deflects %d mm down",e*10**3)