diff options
Diffstat (limited to '1325/CH2/EX2.9')
-rw-r--r-- | 1325/CH2/EX2.9/2_9.PNG | bin | 0 -> 100660 bytes | |||
-rw-r--r-- | 1325/CH2/EX2.9/ex2_9.sce | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/1325/CH2/EX2.9/2_9.PNG b/1325/CH2/EX2.9/2_9.PNG Binary files differnew file mode 100644 index 000000000..29081ea64 --- /dev/null +++ b/1325/CH2/EX2.9/2_9.PNG diff --git a/1325/CH2/EX2.9/ex2_9.sce b/1325/CH2/EX2.9/ex2_9.sce new file mode 100644 index 000000000..02a79a83e --- /dev/null +++ b/1325/CH2/EX2.9/ex2_9.sce @@ -0,0 +1,20 @@ +//to find force that must be exerted in oeder to give an acceleration of 3ft/s^2 and smallest value of u(friction coefficient)
+//gravitaional force (g)=32.2 ft/s^2
+clc
+printf("\n")
+//given
+m=10//ton
+m2=1000//lb
+a=3//ft/s^2
+//the addition to actual mass in order to allow for the rotational inertia of the wheels and axles
+m1=2*(1000/2240)*(15/21)^2//m1=m2*k^2/r^2 and 1 ton=2240 lbs
+M=m+m1
+F=3*(10.46/32.2)//F=M.a
+f=F*2240//lb
+Fa=(2*1000/2240)*(3/32.2)*(15/21)^2//total tangential force required in order to provide the angular acceleration of the wheels and axles
+//Limiting friction force =uW
+//u*10>0.042
+u=0.042/10
+printf("The total tangential force required in order to provide the angular acceleration of the wheels and axles is %.4f ton\n",Fa)
+printf("If there is to be pure rolling ,u>%.4f",u)
+
|