blob: 2a11a606b29daede07979a9f047d5b14f0dba32a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
clear
clc
//Given
//Concentrations in mol/litre
CAo=0.1;CBo=0.01;Cco=0;CAf=0.02;CBf=0.03;Ccf=0.04;
//Volume in litre
V=1;
//Volumetric flow rate(l/min)
v=1;
//For mixed flow reactor
CA=CAf;CB=CBf;Cc=Ccf;
//Rate of reaction(mol/litre.min)
rA=(CAo-CA)/(V/v);
rB=(CBo-CB)/(V/v);
rc=(Cco-Cc)/(V/v);
printf("\nRESULT\n")
printf("rate of reaction of A(mol/litre.min) is %f\n",rA)
printf("\nrate of reaction of B(mol/litre.min) is %f\n",rB)
printf("\nrate of reaction of C(mol/litre.min) is %f\n",rc)
|