diff options
Diffstat (limited to '3648/CH8/EX8.4/Ex8_4.sce')
-rw-r--r-- | 3648/CH8/EX8.4/Ex8_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3648/CH8/EX8.4/Ex8_4.sce b/3648/CH8/EX8.4/Ex8_4.sce new file mode 100644 index 000000000..6846e4eb3 --- /dev/null +++ b/3648/CH8/EX8.4/Ex8_4.sce @@ -0,0 +1,15 @@ +//Example 8_4
+clc();
+clear;
+//To find out the angular acceleration and the distance the object falls
+f1=29.4 //units in Newtons
+r1=0.75 //units in meters
+m1=40 //units in Kgs
+r2=0.6 //units in meters
+m2=3 //units in Kgs
+alpha=(f1*r1)/((m1*r2^2)+(m2*r1^2)) //units in rad/sec^2
+printf("The angular acceleration is alpha=%.2f rad/sec^2\n",alpha)
+a=r1*alpha //units in meters/sec^2
+t=10 //units in sec
+y=0.5*a*t^2 //units in meters
+printf("The objects goes a distance of y=%.1f meters",y)
|