diff options
Diffstat (limited to '3648/CH5/EX5.9')
-rw-r--r-- | 3648/CH5/EX5.9/Ex5_9.sce | 10 | ||||
-rw-r--r-- | 3648/CH5/EX5.9/Ex5_9.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH5/EX5.9/Ex5_9.sce b/3648/CH5/EX5.9/Ex5_9.sce new file mode 100644 index 000000000..a6a8cc092 --- /dev/null +++ b/3648/CH5/EX5.9/Ex5_9.sce @@ -0,0 +1,10 @@ +//Example 5_9
+clc();
+clear;
+//To find out how fast a a ball is going
+m=3 //units in Kg
+g=9.8 //units in meters/sec^2
+hf=0 //units in meters
+h0=4 //units in meters
+vf=2*sqrt(((m*g*-(hf-h0))*0.5)/m) //units in meters/sec
+printf("The ball is moving with a speed of vf=%.2f meters/sec",vf)
diff --git a/3648/CH5/EX5.9/Ex5_9.txt b/3648/CH5/EX5.9/Ex5_9.txt new file mode 100644 index 000000000..83f207a50 --- /dev/null +++ b/3648/CH5/EX5.9/Ex5_9.txt @@ -0,0 +1 @@ + The ball is moving with a speed of vf=8.85 meters/sec
\ No newline at end of file |