diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /593/CH6/EX6.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '593/CH6/EX6.10')
-rwxr-xr-x | 593/CH6/EX6.10/ex6_10.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/593/CH6/EX6.10/ex6_10.sce b/593/CH6/EX6.10/ex6_10.sce new file mode 100755 index 000000000..97550aae8 --- /dev/null +++ b/593/CH6/EX6.10/ex6_10.sce @@ -0,0 +1,17 @@ +clear;
+//clc();
+
+// Example 6.10
+// Page: 120
+printf("Example-6.10 Page no.-120\n\n");
+
+//***Data***//
+x_sulph = 0.6;
+x_water = 0.4;
+Temp = 200;//[F]
+// At the 200F we have
+h_water = 25;//[Btu/lbm]
+h_sulph = -100;//[Btu/lbm]
+// From equation 6.16 (as reporated in the book), rewritten for masses instead of moles we have
+h_solution = h_water*x_water+h_sulph*x_sulph;// [Btu/lbm]
+printf("Enthalpy of the solution is %f Btu/lbm",h_solution);
\ No newline at end of file |