From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3685/CH9/EX9.1/Ex9_1.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3685/CH9/EX9.1/Ex9_1.sce (limited to '3685/CH9/EX9.1/Ex9_1.sce') diff --git a/3685/CH9/EX9.1/Ex9_1.sce b/3685/CH9/EX9.1/Ex9_1.sce new file mode 100644 index 000000000..08798962c --- /dev/null +++ b/3685/CH9/EX9.1/Ex9_1.sce @@ -0,0 +1,17 @@ +clc +// At 1 MPa +tsat = 179.91 // Saturation temperature in degree Celsius +vf = 0.001127 // Specific volume of fluid in m^3/kg +vg = 0.19444 // Specific volume of gas in m^3/kg +sf = 2.1387 // Specific entropy of fluid in kJ/kgK +sg = 6.5865// Specific entropy of gas in kJ/kgK +printf("\n Example 9.1") +vfg = vg-vf // Change in specific volume due to evaporation +sfg = sg-sf// Change in specific entropy due to evaporation +hfg = 2015.3 +printf("\n At 1 MPa, \n saturation temperature is %f degree celcius",tsat) +printf("\n Changes in specific volume is %f m^3/kg",vfg) +printf("\n Change in entropy during evaporation is %f kJ/kg K",sfg) +printf("\n The latent heat of vaporization is %f kJ/kg",hfg) +// Data is given in the table A.1(b) in Appendix in the book + -- cgit