diff options
Diffstat (limited to '632/CH11/EX11.27/example11_27.sce')
-rwxr-xr-x | 632/CH11/EX11.27/example11_27.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/632/CH11/EX11.27/example11_27.sce b/632/CH11/EX11.27/example11_27.sce new file mode 100755 index 000000000..ee5d668a9 --- /dev/null +++ b/632/CH11/EX11.27/example11_27.sce @@ -0,0 +1,11 @@ +//clc()
+F = 1000;//kg/h
+H1 = 116.3;//kJ/kg ( enthalpy of feed solution - 10% NaOH, 305 K )
+H2 = 560.57;//kJ/kg ( enthalpy of thick liquor - 50% NaOH, 380 K )
+Hsteam = 2676;//kJ/kg ( 1atm , 373.15K )
+//by doing material balances,
+P = 200;//kg/h
+mvap = 800;//kg/h
+//Enthalpy balance gives, F*H1 + Q = mvap*Hsteam + P*H2
+Q = (mvap*Hsteam + P*H2)-F*H1;
+disp("kJ/h",Q,"Heat to be supplied = ")
\ No newline at end of file |