blob: 2cdb181b301275ee2b9f4688d97e901e147bac7a (
plain)
1
2
3
4
5
6
7
8
|
//ques-18.42
//Finding value of Kp at 500 K
clc
G=4.833;//free energy change (in kJ/mol)
T=500;//temperature (in K)
//On solving, G = -2.303*R*T*log(Kp)
Kp=0.3128;
printf("The value of Kp is %.4f.",Kp);
|