summaryrefslogtreecommitdiff
path: root/278/CH23/EX23.4/ex_23_4.sce
blob: 94c11b6b87dcc314e72dc5315973f9877715f89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//find
clc
//solution
//given
W=30//N
d=2//mm
n=18
C=6
D=12//mm
t=680//N/mm^2
G=80*1000//N/mm^2
K=(4*C-1)/(4*C-4)+(0.615/C)
t1=K*(8*W*C)/(%pi*d^2)
printf("tortional shear stress is,%f N/mm^2\n",t1)
k=G*d/(8*C^3*n)
printf("spring rate is,%f N/mm\n",k)
//let W1 force cause t shear
W1=t*%pi*d^2/(K*8*C)//N
printf("force to cause the body of spring to yield stregth is,%f N",W1)