summaryrefslogtreecommitdiff
path: root/3751/CH16/EX16.18/Ex16_18.sce
blob: c2a88b031993d96465afbfacf596b5aafe99a1b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//Fluid Systyems - By Shiv Kumar
//Chapter 16- Hydraulic Power  and Its Transmission
//Example 16.18
//To Find       (i)The Load Lifted by Crane        (ii)The Quantity of Water needed to Lift the Load.

    clc
     clear

//Given Data:-
     d=200;          //Diameter of Ram, mm
     p=7.5;          //Pressure of Water Supplied, MPa
     VR=6;           //Velocity Ratio
     eta=50/100;        //Efficiency of Crane
     h=10;          //Height through which water is to be lifted,  m]

//Computations:-
       d=d/1000;         //m
       p=p*10^6;      //Pa

       Fp=(%pi/4)*d^2*p;        //Pressure Force Exerted on Ram, N  (answer vary due to value of %pi)
          W=Fp*eta/VR;        //Load Lifted by Crane, N
          Vw=(%pi/4)*d^2*h/VR*1000;        //Quantity of Water needed, Litres

//Results:-
       printf(" (i)The Load Lifted by Crane, W=%.f N \n",W)    //The answer provided in textbook is wrong
       printf(" (ii)The Quantity of Water needed to Lift the Load by 10 m =%.2f Litres \n",Vw)       //The answer vary due to round off error