diff options
Diffstat (limited to '3594/CH2/EX2.9/ex2_9.sce')
-rw-r--r-- | 3594/CH2/EX2.9/ex2_9.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3594/CH2/EX2.9/ex2_9.sce b/3594/CH2/EX2.9/ex2_9.sce new file mode 100644 index 000000000..3b75bb6fe --- /dev/null +++ b/3594/CH2/EX2.9/ex2_9.sce @@ -0,0 +1,19 @@ +
+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)
+
|