summaryrefslogtreecommitdiff
path: root/593/CH6/EX6.10/ex6_10.sce
blob: 97550aae8293938c675332e2f70710f7648c1990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);