diff options
Diffstat (limited to '3751/CH16/EX16.17/Ex16_17.sce')
-rw-r--r-- | 3751/CH16/EX16.17/Ex16_17.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3751/CH16/EX16.17/Ex16_17.sce b/3751/CH16/EX16.17/Ex16_17.sce new file mode 100644 index 000000000..02b3707fb --- /dev/null +++ b/3751/CH16/EX16.17/Ex16_17.sce @@ -0,0 +1,24 @@ +//Fluid Systems - By Shiv Kumar +//Chapter 16- Hydraulic Power and Its Transmissions +//Example 16.17 +//To Find the Efficiency of Hydraulic Crane. + + clc + clear + +//Given Data:- + V=340; //Volume of water utilized, litres + p=50; //Pressure Intensity, bar + W=125; //Load Lift, kN + l=10; //Displacement of Weight, m + + +//Computations:- + Energy=p*10^5*V/1000; //Energy Supplied to Crane, J + Work=W*1000*l; //Work done by crane in lifting load, J + eta=Work/Energy*100; //Efficiency In Percentage + +//Result:- + printf("Efficiency of Hydraulic Crane, eta=%.2f Percent\n",eta) //The answer vary due to round off error + + |