Search found 4 matches

by citron
Thu May 29, 2008 5:29 pm
Forum: Getting started
Topic: explaination of code creating dendritic spines
Replies: 4
Views: 5694

explaination of code creating dendritic spines

Hello, I am trying to understand this piece of code from a model by Z. F. Mainen and T. J. Sejnowski (1996): spine_dens = 1 spine_area = 0.83 proc add_spines() { local a forsec dendritic { a =0 for(x) a=a+area(x) F = (L*spine_area*spine_dens + a)/a L = L * F^(2/3) for(x) diam(x) = diam(x) * F^(1/3) ...
by citron
Wed May 14, 2008 9:30 am
Forum: Getting started
Topic: need help understanding potassium channel code in NMODL
Replies: 4
Views: 5230

Great, I have just derived it myself and I finally understand it.
Thanks a lot Ted.
by citron
Wed May 14, 2008 5:32 am
Forum: Getting started
Topic: need help understanding potassium channel code in NMODL
Replies: 4
Views: 5230

Hello Ted, thanks for the answer, hovewer, it brings up some more questions. 1. As I am new to differential equations as well, I would like to know how exactly did you get this n' = (ninf - n)/ntau from the equation dn/dt = alpha(v) (1-n) - beta(V)n I would like to undestand the whole derivative pro...
by citron
Tue May 13, 2008 2:59 pm
Forum: Getting started
Topic: need help understanding potassium channel code in NMODL
Replies: 4
Views: 5230

need help understanding potassium channel code in NMODL

Hello, I am a bit new in NEURON and I am trying to understand code from potassium channel created by Zach Mainen. The full code is here: COMMENT kv.mod Potassium channel, Hodgkin-Huxley style kinetics Kinetic rates based roughly on Sah et al. and Hamill et al. (1991) Author: Zach Mainen, Salk Instit...