summaryrefslogtreecommitdiff
path: root/3594/CH2/EX2.10/ex2_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3594/CH2/EX2.10/ex2_10.sce')
-rw-r--r--3594/CH2/EX2.10/ex2_10.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3594/CH2/EX2.10/ex2_10.sce b/3594/CH2/EX2.10/ex2_10.sce
new file mode 100644
index 000000000..70d70accf
--- /dev/null
+++ b/3594/CH2/EX2.10/ex2_10.sce
@@ -0,0 +1,21 @@
+
+clc
+//given
+Ia=200//lb ft2
+Ib=15//lb ft2
+G=5//wb==5*wa
+m=150//lb
+r=8//in
+printf("\n")
+//the equivalent mass of the geared system referred to the circumference of the drum is given by
+//Me=(1/r)^2*(Ia+(G^2*Ib))
+Me=(12/r)^2*(Ia+(G^2*Ib))
+M=m+Me
+a=(m/M)*32.2//acceleration
+//if efficiency of gearing is 90% then Me=(1/r^2)*(Ia+(G^2*Ib)/n)
+n=.9
+Me1=(12/r)^2*(Ia+(G^2*Ib)/n)
+M1=Me1+m
+a1=(m/M1)*32.2
+printf("acceleration = %.2f ft/s2\n",a)
+printf("acceleration when gear efficiency is 0.9= %.2f ft/s2\n",a1)