diff options
Diffstat (limited to '2417/CH3/EX3.19/Ex3_19.sce')
-rwxr-xr-x | 2417/CH3/EX3.19/Ex3_19.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2417/CH3/EX3.19/Ex3_19.sce b/2417/CH3/EX3.19/Ex3_19.sce new file mode 100755 index 000000000..b9271887a --- /dev/null +++ b/2417/CH3/EX3.19/Ex3_19.sce @@ -0,0 +1,13 @@ +clear;
+clc;
+printf("\t\t\tProblem Number 3.19\n\n\n");
+// Chapter 3 : The First Law Of Thermodynamics
+// Problem 3.19 (page no. 120)
+// Solution
+
+h1=3450*1000 //Unit:J/kg //Enthalpy of steam when it enters a nozzle
+h2=2800*1000 //Unit:J/kg //Enthalpy of steam when it leaves a nozzle
+
+//V2^2/2=h1-h2;
+V2=sqrt(2*(h1-h2)); //V2=Final velocity //Unit:m/s
+printf("Final velocity = %f m/s\n",V2);
|