diff options
Diffstat (limited to '249/CH7/EX7.4/7_04.sce')
-rwxr-xr-x | 249/CH7/EX7.4/7_04.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/249/CH7/EX7.4/7_04.sce b/249/CH7/EX7.4/7_04.sce new file mode 100755 index 000000000..35b037ce8 --- /dev/null +++ b/249/CH7/EX7.4/7_04.sce @@ -0,0 +1,13 @@ +clear
+clc
+//Mixed flow followed by plug flow would be best
+//From ex 7.3
+//For mixed flow
+CAo=2;CA=1;Q=0.5;
+Cs1=Q*(CAo-CA);
+//For plug flow
+Cs2=-1*integrate('2*CA/(1+CA)^2','CA',1,0);
+//Total amount of CS formed is
+Cs=Cs1+Cs2;
+printf("Mixed flow followed by plug flow would be best")
+printf("\n Total amount of CS formed(mol/litre) is %f \n",Cs)
\ No newline at end of file |