diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3648/CH8/EX8.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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 |