diff options
Diffstat (limited to '632/CH10/EX10.18/example10_18.sce')
-rwxr-xr-x | 632/CH10/EX10.18/example10_18.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/632/CH10/EX10.18/example10_18.sce b/632/CH10/EX10.18/example10_18.sce new file mode 100755 index 000000000..a277674dc --- /dev/null +++ b/632/CH10/EX10.18/example10_18.sce @@ -0,0 +1,17 @@ +//clc()
+m = 100;//mol ( basis reactore exit gas )
+//CH3OH + O2 = HCOOH + H2O
+//CH3OH + O2 / 2 = HCHO + H2O
+Nn2 = 64.49;//mol
+No2 = 13.88;//mol
+Nh2o = 5.31;//mol
+Nch3oh = 11.02;//mol
+Nhcho = 4.08;//mol
+Nhcooh = 1.22;//mol
+//x be the moles of methanol reacted, taking C balance, we get,
+x = Nch3oh + Nhcho + Nhcooh;
+Pconv = Nhcho * 100 / x ;
+disp("%",Pconv,"(a)Percent conversion of formaldehyde = ")
+Nair = Nn2 * 100 / 79;
+R = Nair / x;
+disp(R,"(b)Ratio of air to methanol in the feed = ")
\ No newline at end of file |