summaryrefslogtreecommitdiff
path: root/1862/CH11/EX11.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1862/CH11/EX11.7
downloadScilab-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-x1862/CH11/EX11.7/C11P7.sce18
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);