summaryrefslogtreecommitdiff
path: root/278/CH23/EX23.2/ex_23_2.sce
blob: 5545308161fea0824980289b69c662281cba7967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//find
clc
//solution
//given
d=6//mm
Do=75//mm
t=350//N/mm^2
G=84*1000//N/mm^2
D=Do-d//mm
C=D/d
//let W be axial load
//neglecting curvature
Ks=1+(1/(2*C))
//t=Ks*[8*W*D/(%pi*d^3)]//N/mm^2
W=(t*%pi*d^3)/(8*Ks*D)
printf("load acting is,%f N\n",W)
dpt=8*W*D^3/(G*d^4)//deflection per turn//mm
printf("defelection per turn is,%f mm",dpt)
//considering curvature
K=(4*C-1)/(4*C-4)+(0.615/C)
W=t*%pi*d^2/(K*8*C)//N
printf("load acting by takin curvature in consideration is,%f N\n",W)