blob: 76507e505cee95fe347afde5f0048a0dd61ef409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation of variables
t= 10 //min
c= 0.01 //molar
c1= 0.00464 //molar
//CALCULATIONS
k= (c-c1)/(c*c1*t)
T= 1/(k*0.01)
//RESULTS
printf (' velocity constant= %.1f min^-1',k)
printf (' \n half-time period= %.1f min',T)
|