-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatesRates.html
98 lines (85 loc) · 4.5 KB
/
statesRates.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title>States and Rates</title>
<style type="text/css">
body {
background-color: #FFFFFF;
font-family: Verdana, sans-serif;
font-size: 12 px
}
</style>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
TeX: {
equationNumbers: { autoNumber: "AMS" },
extensions: ["AMSmath.js", "AMSsymbols.js"]
}
});
</script>
<script type="text/javascript"
src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script type="text/javascript" src="functions.js"></script>
</head>
<body>
<div style="display:none">
$
\newcommand{\conc}[1]{[\mathrm{#1}]}
\newcommand{\conceq}[1]{[\mathrm{#1}]^{\mathrm{eq}}}
\newcommand{\kcat}{k_{\mathrm{cat}}}
\newcommand{\kdt}{k_{\mathrm{dt}}}
\newcommand{\kdtsol}{k^{\mathrm{sol}}_{\mathrm{dt}}}
\newcommand{\kij}{k_{ij}}
\newcommand{\kji}{k_{ji}}
\newcommand{\kkeq}{K^{\mathrm{eq}}}
\newcommand{\kmmon}{\kon^{\mathrm{ES}}}
\newcommand{\kmmoff}{\koff^{\mathrm{ES}}}
\newcommand{\kconf}{k_{\mathrm{conf}}}
\newcommand{\koff}{k_{\mathrm{off}}}
\newcommand{\kon}{k_{\mathrm{on}}}
\newcommand{\ktd}{k_{\mathrm{td}}}
\newcommand{\ktdsol}{k^{\mathrm{sol}}_{\mathrm{td}}}
\newcommand{\ss}{\mathrm{SS}}
$
</div>
<h2>
Introduction to the Key Ideas: States, Rates, and Transitions
</h2>
Biological systems can be described by the states which can be occupied, and the way in which the system switches from one state to another.
<p style="text-align:center"><img src="images/transitions-reactions.gif" /></p>
<ul>
<li> <b>States</b> may be defined in many different ways. For example, a conformational state of a protein typically refers to a collection of similar conformations. The state of larger scale-system (e.g., an entire cell) could be described by the number of copies of each type of molecule. States of a diffusing system could refer to different physical locations. </li>
<li> <b>Transitions</b> may occur directly between some states, as suggested by the lines in the figure below. These transitions dictate the temporal behavior of the system. </li>
<li> Transitions are generally assumed to occur with a certain <b>rate constant</b>, or probability per unit time, based solely on the present state and independent of prior history (i.e., in a Markovian way). See <a href="javascript:changeTo('statesRates','massAction')">Mass Action Kinetics</a>. </li>
</ul>
<p style="text-align:center"><img src="images/states-network.gif" /></p>
<h3>
Transition rates (rate constants)
</h3>
<p style="text-align:center"><img src="images/states-rates-ij.gif" alt="States Network" /></p>
<ul>
<li> The transition rate $\kij$ is the (conditional) probability per unit time
of making a transition from state i to state j. This is the probability given
the condition that the system is already in state i. Sometimes $\kij$ is called
the rate constant to distinguish it from the overall rate or flux, below.
See the discussion of different types of <a href="javascript:changeTo('statesRates','massAction')">mass action rates</a>. </li>
<li> Every physical process is reversible, so the reverse rate (j to i) must exceed
zero if the forward rate (i to j) does. Thus, you should always expect to see
double arrows as in the diagram above. In some cases, one direction is
so slow that its effect is negligible, only a single arrow is shown - but the reverse process is still possible. </li>
</ul>
<h3>
Fluxes, or Overall Rates
</h3>
The flux (sometimes called overall rate or, confusingly, just the rate) is defined to be the total number of events per unit time, though in some cases this will be normalized to represent the total probability making a certain transition per unit time.
<ul>
<li> The flux from i to j is calculated, as the number of systems in state i ($N_i$) multiplied by the rate constant. Several notations, shown below, can be used. </li>
<li> The rate constant, as the name suggests, is assumed constant, but the state population can vary with time. See the <a href="javascript:changeTo('statesRates','massAction')">mass action page</a> for the conditions on the assumption of rate constancy.</li>
</ul>
<p style="text-align:center"><img src="images/fluxes-three-ways.gif" /></p>
</body>
</html>