diff options
Diffstat (limited to '23/CH2/EX2.14/Example_2_14.sce')
-rwxr-xr-x | 23/CH2/EX2.14/Example_2_14.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/23/CH2/EX2.14/Example_2_14.sce b/23/CH2/EX2.14/Example_2_14.sce new file mode 100755 index 000000000..2df15042e --- /dev/null +++ b/23/CH2/EX2.14/Example_2_14.sce @@ -0,0 +1,17 @@ +clear;
+clc;
+
+//Example 2.14
+//Caption : Program to find the Enthalpy of Steam
+
+//Given values
+
+rQ=4.15;//[g/s] flow rate
+rQ2=12740;//Rate of Heat addition from resistance heater
+
+//Solution
+//del_z and del_u*2 are negligible if Ws and H1=0..then H2=Q
+H2=round(rQ2/rQ);//[J/g]
+disp('J/g',H2,'Enthalpy of Steam')
+
+//End
\ No newline at end of file |