search for: hh_soma

Displaying 1 result from an estimated 1 matches for "hh_soma".

2013 Feb 13
1
An extended Hodgkin-Huxley model that doesn't want to work.
...otential) values for all the channels are given, except for CaT and CaS which uses Eca as calculated in (5). Current for Ca is calculated by summing the CaT and CaS currents, hence CaI = gCaT*CaTm^3*CaTh*(v-Eca(v)) + gCaS*CaSm^3(v-ECa(v) Here is the code: library(simecol) ## Hodkin-Huxley model HH_soma <- function(time, init, parms) { with(as.list(c(init, parms)),{ # Na only used in Axon #Naminf <-1/(1+exp(-(v+24.7)/5.29)); #Nataum <- function(v) 1.32 - (1.26/(1+exp(-(v+120)/25))); #Nahinf <-1/(1+exp((v+489)/5.18)); #Natauh <-(0.67/(1+exp(-(v+62.9)/10))) * (...