diff options
Diffstat (limited to '1325/CH9/EX9.7/9_7.sce')
-rw-r--r-- | 1325/CH9/EX9.7/9_7.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1325/CH9/EX9.7/9_7.sce b/1325/CH9/EX9.7/9_7.sce new file mode 100644 index 000000000..a8677e50d --- /dev/null +++ b/1325/CH9/EX9.7/9_7.sce @@ -0,0 +1,20 @@ +//to find the angular velocity and the angular acceleration of the follower
+clc
+//given
+N=600//rpm
+BC=3//in
+rmin=1.125//in
+rf=39/8//in
+OP=rf-rmin
+OM1=0.79//in;given
+NZ1=2.66//in
+w=N*%pi/30
+vb=w*OM1
+Vang=vb/BC
+at=w^2*NZ1
+fBC=at/BC
+OM2=.52//in
+NZ2=3.24//in
+af=w*OM2/BC
+angf=w^2*NZ2/BC
+printf("\nWhen theta = 25 degrees\nangular velocity = %.1f rad/s\nangular acceleration = %.f rad/s^2\nWhen theta = 45 degrees\nangular velocity = %.1f rad/s\nangular acceleration = %.f rad/s^2",Vang,fBC,af,angf)
|