summaryrefslogtreecommitdiff
path: root/3751/CH7/EX7.1/Ex7_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3751/CH7/EX7.1/Ex7_1.sce')
-rw-r--r--3751/CH7/EX7.1/Ex7_1.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3751/CH7/EX7.1/Ex7_1.sce b/3751/CH7/EX7.1/Ex7_1.sce
new file mode 100644
index 000000000..cc766d7c3
--- /dev/null
+++ b/3751/CH7/EX7.1/Ex7_1.sce
@@ -0,0 +1,27 @@
+//Fluid Systems by Shiv Kumar
+//Chapter 7 - Performance of water turbine
+//Example 7.1
+//To Calculate specific speed of turbine and state the type of turbine
+ clc
+ clear
+//Given
+ P=8000; //Power developed, KW
+ H=30; //Head, m
+ N=140; //Speed, rpm
+//Computations
+ Ns=N*P^(1/2)/(H^(5/4)); // specific speed of turbine , in SI UNITS
+
+//Results
+ printf("The Specific speed of Turbine is %.2f (SI Units)\n",Ns)
+ //To Determine the type of turbine
+ if Ns>51 & Ns<=255 then
+ printf(" The type of turbine is Francis")
+ elseif Ns>=8.5 & Ns<=30 then
+ printf("The type of turbine is Pelton Wheel with single jet")
+ elseif Ns>30& Ns<=51 then
+ printf("The type of turbine is Pelton Wheel with multi jet")
+ elseif Ns>255 & Ns<=860 then
+ printf("The type of turbine is Kaplan or Propeller Turbine")
+ end
+
+