diff options
Diffstat (limited to '3648/CH8/EX8.5')
-rw-r--r-- | 3648/CH8/EX8.5/Ex8_5.sce | 12 | ||||
-rw-r--r-- | 3648/CH8/EX8.5/Ex8_5.txt | 1 |
2 files changed, 13 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)
diff --git a/3648/CH8/EX8.5/Ex8_5.txt b/3648/CH8/EX8.5/Ex8_5.txt new file mode 100644 index 000000000..d90c65ae0 --- /dev/null +++ b/3648/CH8/EX8.5/Ex8_5.txt @@ -0,0 +1 @@ +The object is moving at v=1.28 meters/sec
\ No newline at end of file |