`kinetic` is a Python module collecting functions useful for simulation of chemical and enzymatic kinetics.
# Functions
The main functionality of the module is covered by:
Function `reaction(rxn_str)`, which takes one argument:
*`rxn_str` text represenation of the reaction. The reaction specification syntax is simple, with two reaction types available: **reversible** by using `<=>` symbol or **irreversible**`->`. The reagents are separated by `+` sign and spaces. The rate constants are named at the end after the `;` symbol.
The main functionality of the module is covered by functions:
Function `concentration(rxns, c0, rates, ts)` takes four arguments:
`reaction(rxn_str)` function, which takes one argument:
*`rxn_str` text represenation of the reaction. The reaction specification syntax is simple, with two reaction types available: **reversible** by using `<=>` symbol or **irreversible**`->`. The reagents are separated by `+` sign and spaces. The rate constants are named at the end after the `;` symbol. This function return a dictionary with all the reaction details, for example: