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 /3751/CH16/EX16.16/Ex16_16.sce | |
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 '3751/CH16/EX16.16/Ex16_16.sce')
-rw-r--r-- | 3751/CH16/EX16.16/Ex16_16.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/3751/CH16/EX16.16/Ex16_16.sce b/3751/CH16/EX16.16/Ex16_16.sce new file mode 100644 index 000000000..ad9444410 --- /dev/null +++ b/3751/CH16/EX16.16/Ex16_16.sce @@ -0,0 +1,30 @@ +//Fluid Systems - By Shiv Kumar +//Chapter 16- Hydraulic Power and Its Transmissions +//Example 16.16 +//To Find (i) Power required to drive the Lift (ii) Working Period of Lift and (iii) Ideal Period of Lift. + + clc + clear + +//Given Data:- + W=60; //Load lifted by Lift, kN + H=14; //Height, m + V=0.5; //Speed of Lift, m/s + t=60; //Time for one operation, s + +//Computations:- + + // (i) Power required to drive the Lift, P + P=W*H/t; //kJ/s + + // (ii) Working Period of Lift , tw + tw=H/V; //s + + // (iii) Ideal Period of Lift, ti + ti=t-tw; //s + +//Results + printf(" (i) Power required to drive the Lift, P=%.f kW \n",P) + printf(" (ii) Working Period of Lift , tw =%.f s \n",tw) + printf(" (iii) Ideal Period of Lift, ti =%.f s \n",ti) + |