summaryrefslogtreecommitdiff
path: root/3594/CH13/EX13.10/Ex13_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3594/CH13/EX13.10/Ex13_10.sce')
-rw-r--r--3594/CH13/EX13.10/Ex13_10.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3594/CH13/EX13.10/Ex13_10.sce b/3594/CH13/EX13.10/Ex13_10.sce
new file mode 100644
index 000000000..245d0deff
--- /dev/null
+++ b/3594/CH13/EX13.10/Ex13_10.sce
@@ -0,0 +1,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)
+
+