blob: b9291e28e7ae0fc9f7fe13c4ab54073f146d7ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//computation of equilibrium constant
clear;
clc;
printf("\t Example 14.2\n");
NO=0.0542;//equilibrium conc of NO, M
O2=0.127;//equilibrium conc of O2, M
NO2=15.5;//equilibrium conc of NO2, M
Kc=NO2^2/(O2*NO^2);//equilibrium constant for given reaction
printf("\t the value of the equilibrium constant of the reaction is : %4.2f *10^5\n",Kc*10^-5);
//End
|