Displaying 1 result from an estimated 1 matches for "gcas".
Did you mean:
gas
2013 Feb 13
1
An extended Hodgkin-Huxley model that doesn't want to work.
...Napminf, Naphinf,
taumna, tauhna, hminf, htaum, Kminf and Ktaum
The E (reversal potential) 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)));
#N...