diff options
Diffstat (limited to '3648/CH8/EX8.2/Ex8_2.sce')
-rw-r--r-- | 3648/CH8/EX8.2/Ex8_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH8/EX8.2/Ex8_2.sce b/3648/CH8/EX8.2/Ex8_2.sce new file mode 100644 index 000000000..f38ee1118 --- /dev/null +++ b/3648/CH8/EX8.2/Ex8_2.sce @@ -0,0 +1,12 @@ +//Example 8_2
+clc();
+clear;
+//To find the angular acceleration of the wheel
+m=30 //units in Kg
+k=0.25 //units in meters
+I=m*k^2 //units in Kg meter^2
+force=1.8 //units in Newtons
+levelarm=0.40 //nits in meters
+tou=force*levelarm //units in Newton meter
+alpha=tou/I //units in rad/sec^2
+printf("Angular acceleration is alpha=%.3f rad/sec^2",alpha)
|