summaryrefslogtreecommitdiff
path: root/1325/CH13/EX13.10/13_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '1325/CH13/EX13.10/13_10.sce')
-rw-r--r--1325/CH13/EX13.10/13_10.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1325/CH13/EX13.10/13_10.sce b/1325/CH13/EX13.10/13_10.sce
new file mode 100644
index 000000000..54d8fbba4
--- /dev/null
+++ b/1325/CH13/EX13.10/13_10.sce
@@ -0,0 +1,15 @@
+//Find the coefficient of insensitiveness at the extreme radii of rotaion
+clc
+//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)
+
+