summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.10/Ex4_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH4/EX4.10/Ex4_10.sce')
-rw-r--r--2465/CH4/EX4.10/Ex4_10.sce19
1 files changed, 0 insertions, 19 deletions
diff --git a/2465/CH4/EX4.10/Ex4_10.sce b/2465/CH4/EX4.10/Ex4_10.sce
deleted file mode 100644
index b22df3756..000000000
--- a/2465/CH4/EX4.10/Ex4_10.sce
+++ /dev/null
@@ -1,19 +0,0 @@
-//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)