summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.10/Example_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH4/EX4.10/Example_10.sce')
-rw-r--r--2465/CH4/EX4.10/Example_10.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2465/CH4/EX4.10/Example_10.sce b/2465/CH4/EX4.10/Example_10.sce
new file mode 100644
index 000000000..b22df3756
--- /dev/null
+++ b/2465/CH4/EX4.10/Example_10.sce
@@ -0,0 +1,19 @@
+//Chapter-4,Example 10,Page 95
+clc;
+close;
+
+delta_H1 = 538 //latent heat of water at 100 degree
+
+T1= 273 + 100 //temperature in Kelvin
+
+T2= 273 +150 //temperature in Kelvin
+
+Cp_w = 1 // for water
+
+Cp_s = 8.1/18 //for steam
+
+delta_Cp = Cp_s - Cp_w
+
+delta_H2 = delta_H1 + delta_Cp*(T2-T1) //latent heat of water at 150 degree
+
+printf('the latent heat of water at 150 degree is %.2f cal/g',delta_H2)