summaryrefslogtreecommitdiff
path: root/1325/CH13/EX13.10
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1325/CH13/EX13.10
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1325/CH13/EX13.10')
-rw-r--r--1325/CH13/EX13.10/13_10.PNGbin0 -> 86040 bytes
-rw-r--r--1325/CH13/EX13.10/13_10.sce15
2 files changed, 15 insertions, 0 deletions
diff --git a/1325/CH13/EX13.10/13_10.PNG b/1325/CH13/EX13.10/13_10.PNG
new file mode 100644
index 000000000..5f9350e7e
--- /dev/null
+++ b/1325/CH13/EX13.10/13_10.PNG
Binary files differ
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)
+
+