diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3594/CH2/EX2.9/ex2_9.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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)
+
|