Skip to content

Instantly share code, notes, and snippets.

@borismarin
Last active January 2, 2018 21:09
Show Gist options
  • Select an option

  • Save borismarin/0640cc3157478264fa1d to your computer and use it in GitHub Desktop.

Select an option

Save borismarin/0640cc3157478264fa1d to your computer and use it in GitHub Desktop.
xpp tutorial - bursts
# Fast Subsystem of the Nap-K-KM model
dV/dt = (I - g_Na*minf(V)*(V-V_Na) - g_K*n*(V-V_K) - g_KM*o*(V-V_K) - g_leak*(V-V_leak))/C
dn/dt = (ninf(V) - n)/tau
v(0)=-16
n(0)=0.01
minf(v)=boltz(v,vhalf_minf,k_minf)
ninf(v)=boltz(v,vhalf_ninf,k_ninf)
boltz(v,vh,k)=1/(1+exp((vh-v)/k))
param o=0.1
param I=5
param g_K=9, g_Na=20, g_leak=8, g_KM=5
param V_Na=60, V_K=-90, V_leak=-80
param vhalf_minf=-20, k_minf=15
param vhalf_ninf=-25, tau=0.152
param k_ninf=5
param C=1
@ total=250,dt=.01,xlo=-100,xhi=100,ylo=-.2,yhi=.8,xp=v,yp=n
@ autoymin=-70,autoymax=-20,parmin=-0.2,parmax=0.4,autoxmin=-0.2,autoxmax=0.4, ds=-0.02
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment