summaryrefslogtreecommitdiff
path: root/3845/CH10/EX10.6/Ex10_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3845/CH10/EX10.6/Ex10_6.sce')
-rw-r--r--3845/CH10/EX10.6/Ex10_6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3845/CH10/EX10.6/Ex10_6.sce b/3845/CH10/EX10.6/Ex10_6.sce
new file mode 100644
index 000000000..74d5b7eb1
--- /dev/null
+++ b/3845/CH10/EX10.6/Ex10_6.sce
@@ -0,0 +1,12 @@
+//Example 10.6
+omega=6.0;//Angular velocity (rpm)
+t=2;//Time (min)
+r=0.15;//Radius of plate (m)
+theta=omega*t;//Revolutions (rev)
+theta=theta*2*%pi;//Angle taken through (rad)
+x=r*theta;//Distance travelled (m)
+printf('Distance travelled by the fly = %0.2f m',x)
+//Answer varies due to round off error
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
+