blob: 2af9bef71f8c92b9991d7f30dd8504e028868337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Chapter 17 Speed of Reaction Catalysis
clc;
clear;
//Initialisation of Variables
t= 40 //min
r= 0.274
t1= 50 //min
//CALCULATIONS
k= 2.3*log10(1/(1-r))/t
R=10**( -k*t1/2.3)
R1= 1-R
//RESULTS
mprintf("Velocity constant= %.3f min^-1",k)
mprintf("\nFraction decomposed= %.3f",R1)
|