summaryrefslogtreecommitdiff
path: root/3648/CH8/EX8.5/Ex8_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH8/EX8.5/Ex8_5.sce')
-rw-r--r--3648/CH8/EX8.5/Ex8_5.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH8/EX8.5/Ex8_5.sce b/3648/CH8/EX8.5/Ex8_5.sce
new file mode 100644
index 000000000..25c3807cc
--- /dev/null
+++ b/3648/CH8/EX8.5/Ex8_5.sce
@@ -0,0 +1,12 @@
+//Example 8_5
+clc();
+clear;
+//To find the speed of the object
+m=3 //units in Kg
+g=9.8 //units in meters/sec^2
+h=0.80 //units in meters
+m1=3 //units in Kg
+m2=14.4 //units in Kg
+r=0.75 //units in meters
+v=sqrt((m*g*h)/((0.5*m1)+((0.5*m2)/r^2)))
+printf("The object is moving at v=%.2f meters/sec",v)