blob: 245d0deff79b80874b36b249e30c82e36235913e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//given
fs=3//lb
W=90//lb
w=15//lb
//fb=(fs/2)*(1+k)*(r/h) From equation 13.31
k=1//All the arms are of equal length
//fb=fs*(r/h)
//comparing the above result with the one obtained from example 8 , F=(W+w)*(r/h), we get coefficient of insensitiveness = k = (N1-N2)/N = fs/(W+w)
k=fs/(W+w)
K=k*100
printf("Coefficient of insensitiveness = %.3f",k)
|