blob: 1b357b68abcf6bf1ad3158724c79a8fda65ba273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//clc()
//CO + CL2 = COCl2
Np = 12;//moles
NCl2 = 3;//moles
NCO = 8;//moles
N1Cl2 = NCl2 + Np;
N1CO = NCO + Np;
pr.ex = (N1CO - N1Cl2)* 100/N1Cl2;
pr.co = (N1Cl2-NCl2) * 100/ N1Cl2;
T = Np + NCl2 + NCO;
T1 = N1Cl2 + N1CO;
N = T / T1;
disp("%",pr.ex,"(a)percent excess of CO = ")
disp("%",pr.co,"(b)percent conversion = ")
disp(N,"(c)Moles of total products per mole of total reactants = ")
|