summaryrefslogtreecommitdiff
path: root/3718/CH5/EX5.11/Ex5_11.sce
blob: 4f03204d29db0bc599dcbb22e030176c6e840915 (plain)
1
2
3
4
5
6
7
8
9
10
11
//Chapter 5: Chemical Kinetics and Catalysis
//Problem: 11
clc;

//Declaration of Variables
a = 1          //in mole
x = 3 / 4.0    // reaction completed

// Solution
K = (2.303 / 6) * log10(1 / (1 - x))
mprintf("The rate constant is :%.3f / min",K)