-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKahp.channel.nml
44 lines (26 loc) · 1.8 KB
/
Kahp.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
<?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.github.com/NeuroML/NeuroML2/development/Schemas/NeuroML2/NeuroML_v2beta4.xsd">
<ionChannel id="Kahp" type="KahpChannelPR" conductance="0 pS" />
<ComponentType name="KahpChannelPR" extends="baseIonChannelPR">
<Requirement name="initialQ" dimension="none" />
<Requirement name="iDensityCa" dimension="currentDensity" />
<Exposure name="Cad" dimension="none" />
<Exposure name="qd" dimension="none" />
<Constant name="betaqd" dimension="none" value="0.001"/>
<Dynamics>
<StateVariable name="Cad" dimension="none" exposure="Cad"/>
<TimeDerivative variable="Cad" value="(0.13*iDensityCa/UAMP_PER_CM2-0.075*Cad) / MSEC"/>
<StateVariable name="qd" dimension="none" exposure="qd"/>
<ConditionalDerivedVariable name="alphaqd" dimension="none">
<Case condition="0.00002*Cad .gt. 0.01" value="0.01"/>
<Case value="0.00002*Cad"/>
</ConditionalDerivedVariable>
<TimeDerivative variable="qd" value="(alphaqd-(alphaqd+betaqd)*qd) / MSEC"/>
<DerivedVariable name="fopen" dimension="none" value="qd" exposure="fopen"/>
<DerivedVariable name="g" value="conductance" exposure="g" dimension="conductance" />
<OnStart>
<StateAssignment variable="qd" value="initialQ" />
</OnStart>
</Dynamics>
</ComponentType>
</neuroml>