summaryrefslogtreecommitdiff
path: root/172/CH9/EX9.8/ex8.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /172/CH9/EX9.8/ex8.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '172/CH9/EX9.8/ex8.sce')
-rwxr-xr-x172/CH9/EX9.8/ex8.sce11
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