summaryrefslogtreecommitdiff
path: root/884/CH14/EX14.4/Example14_4.sce
blob: 8ca20c90362cef9fc0665ef9d8c6963c9a7bf0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//computation of Kp from Kc

clear;
clc;

printf("\t Example 14.4\n");

Kc=10.5;
delta_n=1-3;
T=273+220;

Kp=Kc*(0.0821*T)^delta_n;

printf("\t the value of the equilibrium constant of the reaction is : %4.2f *10^-3\n",Kp*1000);

//End