summaryrefslogtreecommitdiff
path: root/172/CH9/EX9.2/ex2.sce
diff options
context:
space:
mode:
Diffstat (limited to '172/CH9/EX9.2/ex2.sce')
-rwxr-xr-x172/CH9/EX9.2/ex2.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/172/CH9/EX9.2/ex2.sce b/172/CH9/EX9.2/ex2.sce
new file mode 100755
index 000000000..5df3d2f35
--- /dev/null
+++ b/172/CH9/EX9.2/ex2.sce
@@ -0,0 +1,14 @@
+//example 2
+//exit velocity of steam from nozzle
+clear
+clc
+hi=3051.2 //initial specific heat of enthalpy in kJ/kg
+si=7.1228 //initial specific entropy in kJ/kg-K
+se=si //final specific entropy
+Pe=0.3 //final pressure in MPa
+disp('from steam table,various properties at final state are ')
+he=2780.2 //final specific heat of enthalpy in kJ/kg-K
+Te=159.1 //final temperature in celsius
+vi=30 //velocity with which steam enters the nozzle in m/s
+ve=((2*(hi-he)+(vi^2/1000))*1000)^0.5 //final velocity of steam with which it exits in m/s
+printf("\n hence,exit velocity of the steam from the nozzle is ve=%.0f m/s.\n",ve) \ No newline at end of file