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/CH2/EX2.33/Ex2_33.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/CH2/EX2.33/Ex2_33.sce')
-rw-r--r-- | 3751/CH2/EX2.33/Ex2_33.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/3751/CH2/EX2.33/Ex2_33.sce b/3751/CH2/EX2.33/Ex2_33.sce new file mode 100644 index 000000000..f231711da --- /dev/null +++ b/3751/CH2/EX2.33/Ex2_33.sce @@ -0,0 +1,33 @@ +//Fluid system - By - Shiv Kumar
+//Chapter 2 - Impact of Jet
+//Example 2.33
+ clc
+ clear
+
+//Given Data:-
+ a=0.72; //Total cross-sectional area of Jets, m^2
+ Vr=12; //Velocity through the Jet relative to ship, m/s
+ u=6; //Speed of ship, m/s
+ eta_E=85/100; //Efficiency of I.C. engine
+ eta_P=70/100; //Efficiency of Centrifugal Pump
+ Pipe_Loss_per=8; //Percentage of pipe losses (of the kinetic energy of Jet per sec)
+
+//Data Used:-
+ rho=1000; //Density of water, kg/m^3
+
+//Computations:-
+ Pipe_Loss=(Pipe_Loss_per/100)*(rho*a*Vr^3/2); //Pipe Losses, N-m/s
+ V=Vr-u; //Absolute Velocity of the Jet, m/s
+ //(a)
+ F=rho*V*a*(V+u); //N
+ //(b)
+ W=F*u; //Work done by Jet per second, N-m/s
+ OE_P=rho*a*Vr^3/2+Pipe_Loss; //Output energy of pump per sec, N-m/s
+ IP_P=OE_P/eta_P; //Input Energy of pump per sec, N-m/s
+ OE_E=IP_P; //Output of Engine is equal to Input to the pump
+ IE_E=OE_E/eta_E; //Input Energy of Engine per sec, N-m/s
+ eta_o=W/IE_E*100; //Overall Efficiency in percentage
+
+//Results:-
+ printf("(a)Propelling Force=%.f N \n", F)
+ printf("(b)Overall Efficiency, eta_o=%.2f percent", eta_o) //The answer vary due to round off error
|