diff options
Diffstat (limited to '3845/CH6/EX6.1/Ex6_1.sce')
-rw-r--r-- | 3845/CH6/EX6.1/Ex6_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3845/CH6/EX6.1/Ex6_1.sce b/3845/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..4a5427f9d --- /dev/null +++ b/3845/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,12 @@ +//Example 6.1
+v=15;//Velocity (m/s)
+r=0.300;//Radius (m)
+omega=v/r;//Angular velocity (rad/s)
+printf('Angular Velocity = %0.1f rad/s',omega)
+
+//Discussion:
+r1=1.2;//Tire radius for earth mover (m)
+omega1=v/r1;//Angular velocity (rad/s)
+printf('\nDiscussion: For earth mover\nAngular Velocity = %0.1f rad/s',omega1)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|