From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 593/CH6/EX6.10/ex6_10.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 593/CH6/EX6.10/ex6_10.sce (limited to '593/CH6/EX6.10/ex6_10.sce') 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 -- cgit