;; Akemann W, Knopfel T. Interaction of Kv3 potassium channels and ;; resurgent sodium current influences the rate of spontaneous firing of ;; Purkinje neurons. J Neurosci. 2006 Apr 26;26(17):4602-12. (nemo-model Kv4 ((input v (cai from ion-pools) (ica from ion-currents)) (const Vrest = -68) (const celsius = 24) (const temp_adj = (pow (3 ((celsius - 22) / 10)))) (component (type ion-channel) (name Kv4) (component (type gate) ;; rate functions (defun Kv4_amf (v) (let ((can 0.15743) (ckan -32.19976) (cvan 57)) (can * exp (neg ((v + cvan) / ckan))))) (defun Kv4_bmf (v) (let ((cbn 0.15743) (ckbn 37.51346) (cvbn 57)) (cbn * exp (neg ((v + cvbn) / ckbn))))) (defun Kv4_ahf (v) (let ((cah 0.01342) (ckah -7.86476) (cvah 60)) (cah / (1.0 + (exp (neg ((v + cvah) / ckah))))))) (defun Kv4_bhf (v) (let ((cbh 0.04477) (ckbh 11.3615) (cvbh 54)) (cbh / (1.0 + (exp (neg ((v + cvbh) / ckbh))))))) (hh-ionic-gate (Kv4 ;; ion name: exported variables will be of the form {ion}_{id} (initial-m (Kv4_amf (Vrest) / (Kv4_amf (Vrest) + Kv4_bmf (Vrest))) ) (initial-h (Kv4_ahf (Vrest) / (Kv4_ahf (Vrest) + Kv4_bhf (Vrest))) ) (m-power 4) (h-power 1) (m-alpha (temp_adj * Kv4_amf (v))) (m-beta (temp_adj * Kv4_bmf (v))) (h-alpha (temp_adj * Kv4_ahf (v))) (h-beta (temp_adj * Kv4_bhf (v))) )) ) (component (type pore) (const gbar_Kv4 = 0.0039) (output gbar_Kv4 )) (component (type permeating-ion) (name k) (const e_Kv4 = -85) (output e_Kv4 )) ) ;; end Kv4 current ))