Formal rules
There are very few formal rules for writing down values of rate or equilibrium constants in the [constants] section of the script file. Any number of rate constants, separated by commas, can be listed on a single line, like this:
[constants]
k1 = 0.1, k2 = 0.2 ?, k3 = 0.3 ??, k4 = 0.4
Alternatively the rate constants can be listed on separate lines with or without trailing commas, like this:
[constants]
k1 = 0.1,
k2 = 0.2 ?
k3 = 0.3 ??
k4 = 0.4
Some example of incorrect notation follow.
Incorrect: Missing commas
[constants]
k1 = 0.1 k2 = 0.2 ? k3 = 0.3 ?? k4 = 0.4
Incorrect: Can't assign multiple values
[constants]
k1 = k2 = 0.2 ?
|