diff options
Diffstat (limited to '172/CH9/EX9.8')
-rwxr-xr-x | 172/CH9/EX9.8/ex8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/172/CH9/EX9.8/ex8.sce b/172/CH9/EX9.8/ex8.sce new file mode 100755 index 000000000..52f626ab7 --- /dev/null +++ b/172/CH9/EX9.8/ex8.sce @@ -0,0 +1,11 @@ +//example 8
+//Velocity in exit flow
+clear
+clc
+disp('From Steam Tables, for liquid water at 20 C')
+vf=0.001002 //in m^3/kg
+v=vf
+Pi=300 //Line pressure in kPa
+Po=100 //in kPa
+Ve=(2*v*(Pi-Po)*1000)^0.5 //velocity in the exit flow
+printf(" \n Hence, an ideal nozzle can generate upto Ve=%.0f m/s in the exit flow. \n",Ve)
\ No newline at end of file |