Physiome

Home

General Info
XSIM
JSIM
FAQ

Models

See Also
Hudgkin-Huxley

Beeler-Reuler  

Luo-Rudy

Winslow-RJG

Michailova-McCulloch

Single Channel

See More
Heart
Lung
Kidney
Endocrine
Auditory
Gut
Brain
Metabolism
Transport
 

Feedback

 

 

 

 

 

 

 



 

 

Single Channel Model

Description | Equations | Implementation | Examples | Discussion

Equations

Let there be N relevant conformational states of a single channel, let's denote them by A1, A2, ..., AN. Many of these conformation can have exactly same ion conductance. The kinetics of the channel is stochastic, and thus be characterized by a distribution function P i (t): the probability of the channel being in state i at time t. Let q i j be the rate constant for reaction Ai -> Aj. Then the equation for the stochastic kinetics is 

d P i (t) / d t = Sum_j ( Pj q j i - P i q i j)

This equation gives the probability distribution of a channel at a particular time. One can also run a Monte Carlo simulation to see the stochastic jumping process of the single molecule. There will be no differential equation for this, but it can be best presented by a short computer code. Let x be the state of the protein (x=1,2,...N) 
t = 0
x = k
qk = qk1+qk2+...+qkN
t = dt 
r = ran(iseed) 
If (r .le. exp(-qk*dt)) then x = k 
else r = ran(iseed)
if (r .le. qk1/qk) x = 1
if ((r .gt. qk1/qk) .and. (r .le. (qk1+qk2)/qk) x = 2
...
if (r .gt. (qk1+...qkN)/qk) x = N
End if

 

4-2-1-1-2..

Contact Hong Qian for comments or questions.

Copyright © 2002 NSR, University of Washington.  All rights reserved
Revised 05/21/02