summaryrefslogtreecommitdiff
path: root/3751/CH4/EX4.5/Ex4_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3751/CH4/EX4.5/Ex4_5.sce')
-rw-r--r--3751/CH4/EX4.5/Ex4_5.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3751/CH4/EX4.5/Ex4_5.sce b/3751/CH4/EX4.5/Ex4_5.sce
new file mode 100644
index 000000000..8e86c9580
--- /dev/null
+++ b/3751/CH4/EX4.5/Ex4_5.sce
@@ -0,0 +1,30 @@
+//Fluid system - By - Shiv Kumar
+//Chapter 4 - Pelton Turbine (Impulse Turbine)
+//Example 4.5
+ clc
+ clear
+
+//Given Data:-
+ n=2; //Number of Jets
+ P=15450; //Shaft Power, kW
+ d=200; //Diameter of each Jet, mm
+ H=400; //Net Head, m
+ Cv=1;
+
+//Data Used:-
+ rho=1000; //Density of water, kg/m^3
+ g=9.81; //Acceleration due to gravity, m/s^2
+
+//Computations:-
+ P=P*1000; //W
+ d=d/1000; //m
+ Vi=Cv*sqrt(2*g*H); //Absolute Velocity of Jet at Inlet, m/s
+ q=(%pi/4)*d^2*Vi; //Discharge through each Jet, m^3/s
+ Q=n*q; //Net Discharge
+ eta_O=P/(rho*Q*g*H)*100; //Overall Efficiency, in percentage
+
+//Results:-
+ printf("The Overall Efficiency of the Turbine, eta_o=%.2f percent", eta_O) //The answer vary due to round off error
+
+
+