summaryrefslogtreecommitdiff
path: root/3685/CH9/EX9.3/Ex9_3.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3685/CH9/EX9.3/Ex9_3.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.3/Ex9_3.sce')
-rw-r--r--3685/CH9/EX9.3/Ex9_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3685/CH9/EX9.3/Ex9_3.sce b/3685/CH9/EX9.3/Ex9_3.sce
new file mode 100644
index 000000000..d7e8b7e10
--- /dev/null
+++ b/3685/CH9/EX9.3/Ex9_3.sce
@@ -0,0 +1,17 @@
+clc
+v = 0.09 // Specific volume of substance at a point in m^3/kg
+vf = 0.001177 // Specific volume of fluid in m^3/kg
+vg = 0.09963 // Specific volume of gas in m^3/kg
+hf = 908.79 // Specific enthalpy of fluid in kJ/kg
+hfg = 1890.7 // Latent heat of substance in kJ/kg
+sf = 2.4474 // Specific entropy of fluid in kJ/kgK
+sfg = 3.8935 // Entropy change due to vaporization
+
+printf("\n Example 9.3")
+x = (v-vf)/(vg-vf) // steam quality
+h = hf+(x*hfg) // Specific enthalpy of substance at a point in kJ/kg
+s = sf+(x*sfg) // Specific entropy of substance at a point in kJ/kgK
+
+printf("\n The enthalpy and entropy of the system are\n %f kW and %f kJ/kg and kJ/kg K respectively.",h,s)
+//The answers vary due to round off error
+