summaryrefslogtreecommitdiff
path: root/3751/CH5/EX5.13/Ex5_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3751/CH5/EX5.13/Ex5_13.sce')
-rw-r--r--3751/CH5/EX5.13/Ex5_13.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3751/CH5/EX5.13/Ex5_13.sce b/3751/CH5/EX5.13/Ex5_13.sce
new file mode 100644
index 000000000..22579ec2c
--- /dev/null
+++ b/3751/CH5/EX5.13/Ex5_13.sce
@@ -0,0 +1,30 @@
+//Fluid Systems- By Shiv Kumar
+//Chapter 5- Francis Turbine
+//Example 5.13
+//To Determine the Blade Angle at Entry and Exit.
+
+ clc
+ clear
+
+//Given Data:-
+ R=0.6; //Degree
+ ui=15; //Peripheral velocity of Runner at entry, m/s
+ Vfo=3.2; //m/s
+ Vfi=Vfo;
+ Vo=Vfo;
+ //As the Diameter of rotor at entry is Twice that at exit,
+ Do_by_Di=2;
+
+
+//Computations:-
+ Vwi=(1-R)*2*ui; //m/s
+ beta_i=180-atand(Vfi/(ui-Vwi)); //degrees
+ uo=ui/Do_by_Di; //Velocity of Runner at Outlet, m/s
+ beta_o=atand(Vfo/uo); //degrees
+
+
+//Results:-
+ printf("The Blade Angle at Entry, beta_i=%.2f Degrees\n",beta_i) //The Answer Vary due to Round off Error
+ printf("The Blade angle at Exit, beta_o=%.3f Degrees \n",beta_o)
+
+