diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1862/CH11/EX11.7 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1862/CH11/EX11.7')
-rwxr-xr-x | 1862/CH11/EX11.7/C11P7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1862/CH11/EX11.7/C11P7.sce b/1862/CH11/EX11.7/C11P7.sce new file mode 100755 index 000000000..4af03aae8 --- /dev/null +++ b/1862/CH11/EX11.7/C11P7.sce @@ -0,0 +1,18 @@ +
+clear
+ clc
+//to find speed of body when it strikes the ground
+
+// GIVEN::
+//mass of body
+m = 4.5//in kg
+//height from which body is dropped
+h = 10.5//in meters
+//acceleration due to gravity
+g = 9.80//in m/s^2
+
+// SOLUTION:
+//using work-energy principle
+//speed of body when it strikes the ground
+v = sqrt(2*g*h)//in m/s
+printf ("\n\n Speed of body when it strikes the ground v = \n\n %.1f m/s",v);
|