diff options
Diffstat (limited to '629/CH14/EX14.11/example14_11.sce')
-rw-r--r-- | 629/CH14/EX14.11/example14_11.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/629/CH14/EX14.11/example14_11.sce b/629/CH14/EX14.11/example14_11.sce new file mode 100644 index 000000000..e2b714b4a --- /dev/null +++ b/629/CH14/EX14.11/example14_11.sce @@ -0,0 +1,13 @@ +clear
+clc
+//Example 14.11 FRANCIS TURBINE
+r1=0.6; //[m]
+beta1=110; //degrees
+w=600*(2*%pi)/60 //angular speed[rad/s]
+Q=4; //discharge[m^3/s]
+B=0.1; //blade height[m]
+//Radial velocity at inlet
+Vr1=Q/(2*%pi*r1*B) //[m/s]
+//Inlet guide vane angle
+alpha1=acotd((r1*w/Vr1)+cotd(beta1))
+printf("\nThe guide vane angle for non seperating flow condition at runner entrance = %.1f°.\n",alpha1)
\ No newline at end of file |