-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkca.channel.nml
54 lines (40 loc) · 2.44 KB
/
kca.channel.nml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="iso-8859-1"?>
<neuroml xmlns="http://www.neuroml.org/schema/neuroml2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.neuroml.org/schema/neuroml2 https://raw.githubusercontent.com/NeuroML/NeuroML2/master/Schemas/NeuroML2/NeuroML_v2beta3.xsd"
id="kca">
<notes>WARNING: in the orginial mod file the conductance was multiplied by e-4, remember to scale your Gmax</notes>
<ionChannel id="kca" conductance="10pS" type="ionChannelHH" species="k">
<notes>Comment from original mod file: Calcium-dependent potassium channel,
Based on Pennefather (1990) -- sympathetic ganglion cells,
taken from Reuveni et al (1993) -- neocortical cells
Author: Zach Mainen, Salk Institute, 1995, [email protected]
</notes>
<q10ConductanceScaling q10Factor="2.3" experimentalTemp="23degC"/>
<gate id="n" type="gateHHrates" instances="1">
<q10Settings type="q10ExpTemp" q10Factor="2.3" experimentalTemp="23 degC"/>
<forwardRate type="kca_n_alpha_rate"/>
<reverseRate type="kca_n_beta_rate"/>
</gate>
</ionChannel>
<ComponentType name="kca_n_alpha_rate" extends="baseVoltageConcDepRate">
<Constant name="TIME_SCALE" dimension="time" value="1 ms"/>
<Constant name="VOLT_SCALE" dimension="voltage" value="1 mV"/>
<Constant name="CONC_SCALE" dimension="concentration" value="1 mM"/>
<Dynamics>
<DerivedVariable name="V" dimension="none" value="v / VOLT_SCALE"/>
<DerivedVariable name="ca_conc" dimension="none" value="caConc / CONC_SCALE"/>
<DerivedVariable name="r" exposure="r" dimension="per_time" value="(0.01 * ca_conc) / TIME_SCALE"/>
</Dynamics>
</ComponentType>
<ComponentType name="kca_n_beta_rate" extends="baseVoltageConcDepRate">
<Constant name="TIME_SCALE" dimension="time" value="1 ms"/>
<Constant name="VOLT_SCALE" dimension="voltage" value="1 mV"/>
<Constant name="CONC_SCALE" dimension="concentration" value="1 mM"/>
<Dynamics>
<DerivedVariable name="V" dimension="none" value="v / VOLT_SCALE"/>
<DerivedVariable name="ca_conc" dimension="none" value="caConc / CONC_SCALE"/>
<DerivedVariable name="r" exposure="r" dimension="per_time" value="0.02 / TIME_SCALE"/>
</Dynamics>
</ComponentType>
</neuroml>