blob: 7a18e6893f8504750c6190fbec46552e4fa08506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Chapter 17 Speed of Reaction Catalysis
clc;
clear;
//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
mprintf("Velocity constant= %.1f min^-1",k)
mprintf("\nHalf-time period= %.1f min",T)
|