diff options
Diffstat (limited to '3648/CH7/EX7.5')
-rw-r--r-- | 3648/CH7/EX7.5/Ex7_5.sce | 14 | ||||
-rw-r--r-- | 3648/CH7/EX7.5/Ex7_5.txt | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3648/CH7/EX7.5/Ex7_5.sce b/3648/CH7/EX7.5/Ex7_5.sce new file mode 100644 index 000000000..2ad5a181b --- /dev/null +++ b/3648/CH7/EX7.5/Ex7_5.sce @@ -0,0 +1,14 @@ +//Example 7_5
+clc();
+clear;
+//To find the angular acceleration and angular velocity of one wheel
+vtf=20 //units in meters/sec
+r=0.4 //units in meters
+wf=vtf/r //units in rad/sec
+vf=20 //units in meters/sec
+v0=0 //units in meters/sec^2
+t=9 //units in sec
+a=(vf-v0)/t //units in meters/sec^2
+alpha=a/r //units in rad/sec^2
+printf("Angular accelertion is a=%.2f meters/sec^2\n",a)
+printf("Angular velocity is alpha=%.2f rad/sec^2",alpha)
diff --git a/3648/CH7/EX7.5/Ex7_5.txt b/3648/CH7/EX7.5/Ex7_5.txt new file mode 100644 index 000000000..0c9e4f072 --- /dev/null +++ b/3648/CH7/EX7.5/Ex7_5.txt @@ -0,0 +1,2 @@ +Angular accelertion is a=2.22 meters/sec^2
+Angular velocity is alpha=5.56 rad/sec^2
\ No newline at end of file |