diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3685/CH9/EX9.1/Ex9_1.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3685/CH9/EX9.1/Ex9_1.sce')
-rw-r--r-- | 3685/CH9/EX9.1/Ex9_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
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
+
|