blob: 289e34aadf542f12dc81bde6d0e5efb314c129d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
////
//Variable Declaration
T = 22.0 //Temperature of the reaction,°C
k1 = 7.0e-4 //Rate constants for rxn 1, 1/s
k2 = 4.1e-3 //Rate constant for rxn 2, 1/s
k3 = 5.7e-3 //Rate constant for rxn 3, 1/s
//Calculations
phiP1 = k1/(k1+k2+k3)
//Results
printf("\n Percentage of Benzyl Penicillin that under acid catalyzed reaction by path 1: %4.2f ",phiP1*100)
|