blob: 019c82985632e7939f4d9b7850564bd308f74fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter 5: Chemical Kinetics and Catalysis
//Problem: 4
clc;
//Declaration of Variables
t = 60 //in min
x = "0.5a"
K = 5.2 * 10 ** - 3 //in per mol L per min
// Solution
a = 1 / (t * K)
mprintf("Initial concentration = %.3f mol / L",a)
|