Reaction kinetics + Gillespie algorithm: Propensity function?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 3K views
maistral
Messages
235
Reaction score
17
TL;DR
What is a propensity function? And some other questions.
I'm trying to simulate a simple series reaction stochastically using Gillespie's algorithm. I found this file:

95984733_623404015051786_185437712675766272_n.png


  1. What is this 'propensity function'? Say for example I have the simple reactions:

    A --(k1)--> R
    R--(k2)--> S

    are these 'propensity functions' the rates (a wild guess)? I mean;
    α1 = k1[A]
    α2 = k2[R],

    where [A] and [R] are the number of molecules of A and R?
  2. I am assuming that these 'rate constants' are based on the number of molecules themselves, and not the 'molarity'. I also read from an article (Stochastic chemical kinetics by Lecca) that they're supposed to be different (the rate constants based on the molarity are 'continuous' or something). How do I convert the rate constants from the molarity-based ones to the number of molecules-based ones?
  3. With regards to the updating of the numbers of reactants and products, assuming the simple reactions

    A --(k1)--> R
    R--(k2)--> S

    are taken into consideration, and that the first reaction is supposed to be occurring, am I correct to assume that I subtract one molecule A and add one molecule R?

Thank you very much.
 
Engineering news on Phys.org
Yes, the propensity functions are the rates (or rate constants) k1 and k2 for your two reactions. They are based on the number of molecules present in the system and not the molarity. To convert from the molarity-based rate constants to the number of molecules-based ones, you will need to know the volume of the system and the number of molecules of the reactant/product in question.The updating of the numbers of reactants and products is correct. For the reaction A --(k1)--> R, you would subtract one molecule of A and add one molecule of R when it occurs.