|
|||
|
|
NetLogo Models Library: | ||
|
Run Simple Kinetics 1 in your browser uses NetLogo 5.0.4 requires Java 5 or higher (system requirements) Note: If you download the NetLogo application, every model in the Models Library (besides the Community Models) is included. If you have trouble running this model in your browser, you may wish to download the application instead. |
## WHAT IS IT?
This model demonstrates the kinetics of a simple reversible reaction. It demonstrates numerically that the application of the Principle of Stationary Concentrations is valid in this case.
In this model there are two kinds of molecules, green and red. Green turtles turn into red turtles bimolecularly whereas red turtles turn back into pairs of green turtles monomolecularly. You can control the rate at which this changes occur with sliders Kb and Ku.
The reaction here is a reversible reaction of the type:
Kb
A + A <=======> B
Ku
An example of such a reaction would be dimerization of acetic acid:
Kb
2 H C-COOH <=======> H C-COOH~...~HOOC-C H
3 Ku 3 3
This reaction is an example of a complex reaction which consists of two elementary reactions. The forward bimolecular reaction
Kb
A + A --------> B
is characterized by the constant Kb and the reverse unimolecular reaction
Ku
B ---------> A + A
is characterized by the constant Ku.
The system of ordinary differential equations (ODE) that describes the concentrations of A and B is given below:
dA 2
-- = -2Kb * A + 2Ku * B (1)
dt
dB 2
-- = Kb * A - Ku * B (2)
dt
The usual initial conditions are A(0) = Ao and B(0) = 0. While it is possible to solve this system of ODE analytically, chemists usually apply the Principle of Stationary Concentrations when they investigate the kinetics of reactions of this type. The Principle says that one can assume that the concentrations of the species stop changing from some point on after the system reaches equilibrium. If concentrations are stationary, the derivatives
dA dB
-- and --
dt dt
are zero. Hence one can replace the system of ODE above with the system of algebraic equations below:
2
0 = -2Kb * A* + 2Ku * B* (1')
2
0 = Kb * A* - Ku * B* (2')
where concentrations marked with * are stationary concentrations. The second equation (2') is linearly dependent on the first equation (1'). Luckily we also have another equation coming from the law of the conservation of mass:
A* + 2 * B* = Ao (3)
From equation (2') we can express B* in terms of A* :
Kb 2
B* = -- A* (4)
Ku
We can now plug in expression (4) into (3) and then we will have a quadratic equation in terms of A*:
Kb 2
A* + -- A* = Ao (5)
Ku
whose solution is:
_____________
|
| Kb
| 1 + 4 * -- - 1
\| Ku
-------------------- (6)
Kb
2 * --
Ku
One can now find the stationary concentration of B using equation (4).
## HOW TO USE IT
Choose the values of Ku and Kb with appropriate sliders:
- Kb controls the rate of the forward reaction by which two green turtles turn bimolecularly into a single red turtle.
- Ku controls the rate of the reverse reaction, by which a red turtle turns unimolecularly into two green turtles.
Having chosen appropriate values of the constants, press SETUP to clear the world and create an initial number of green turtles. Note: we do not create red turtles initially, although this could be done in principle.
Press GO to start the simulation.
## THINGS TO NOTICE
You will see turtles wandering around the world and changing color. Pay more attention to the plot of the concentrations. Do the plots soon reach stationary concentrations?
## THINGS TO TRY
How do the stationary concentrations depend on the values of Kb and Ku? You can change Ku and Kb while the model is running. See if you can predict what the stationary concentrations will be with various combinations of Kb and Ku.
## EXTENDING THE MODEL
Try to implement the following reaction:
Kb K2
A + A <======> B -------> C
Ku
This reaction underlines a vast number of microbiological processes (e.g. fermentation). You can read about its kinetics in any book on Biochemistry. Look up the so-called Michaeles-Menten equation. Does it check numerically?
Try to implement the following reaction:
Kb K2
A + B <======> C -------> D
Ku
## RELATED MODELS
Enzyme Kinetics
Chemical Equilbrium
Simple Kinetics 2
Simple Kinetics 3
## CREDITS AND REFERENCES
Thanks to Mike Stieff for his work on this model.
## HOW TO CITE
If you mention this model in a publication, we ask that you include these citations for the model itself and for the NetLogo software:
* Wilensky, U. (1998). NetLogo Simple Kinetics 1 model. http://ccl.northwestern.edu/netlogo/models/SimpleKinetics1. Center for Connected Learning and Computer-Based Modeling, Northwestern Institute on Complex Systems, Northwestern University, Evanston, IL.
* Wilensky, U. (1999). NetLogo. http://ccl.northwestern.edu/netlogo/. Center for Connected Learning and Computer-Based Modeling, Northwestern Institute on Complex Systems, Northwestern University, Evanston, IL.
## COPYRIGHT AND LICENSE
Copyright 1998 Uri Wilensky.

This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
Commercial licenses are also available. To inquire about commercial licenses, please contact Uri Wilensky at uri@northwestern.edu.
This model was created as part of the project: CONNECTED MATHEMATICS: MAKING SENSE OF COMPLEX PHENOMENA THROUGH BUILDING OBJECT-BASED PARALLEL MODELS (OBPML). The project gratefully acknowledges the support of the National Science Foundation (Applications of Advanced Technologies Program) -- grant numbers RED #9552950 and REC #9632612.
This model was converted to NetLogo as part of the projects: PARTICIPATORY SIMULATIONS: NETWORK-BASED DESIGN FOR SYSTEMS LEARNING IN CLASSROOMS and/or INTEGRATED SIMULATION AND MODELING ENVIRONMENT. The project gratefully acknowledges the support of the National Science Foundation (REPP & ROLE programs) -- grant numbers REC #9814682 and REC-0126227. Converted from StarLogoT to NetLogo, 2001.
(back to the NetLogo Models Library)