diff options
Diffstat (limited to '3814/CH2/EX2.26/Ex2_26.sce')
-rw-r--r-- | 3814/CH2/EX2.26/Ex2_26.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3814/CH2/EX2.26/Ex2_26.sce b/3814/CH2/EX2.26/Ex2_26.sce new file mode 100644 index 000000000..0a0cca114 --- /dev/null +++ b/3814/CH2/EX2.26/Ex2_26.sce @@ -0,0 +1,23 @@ +//Example No 2.6 +pi=3.142 +D2=2.7 +Q=30 +gamma1=9800 +z1=20 +z2=6 +g=9.8 + +//Calculation +a2=(pi/4)*D2^2 // Area of exit pipe in m^2 +V2=Q/a2 // from equation of continuity in m/s +Ht=(z1-V2^2/2*g-z2) //head developed by turbine +P=gamma1*Q*Ht //power developed by turbine + +mprintf("\n a2=%f ",a2); +mprintf("\n V2=%f nm/s",V2); +mprintf("\n Ht=%f m",Ht); +mprintf("\n P=%f Kw",P); + + + + |