-
Notifications
You must be signed in to change notification settings - Fork 1
/
INaCa.em
executable file
·210 lines (169 loc) · 5.22 KB
/
INaCa.em
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
@{
INaCa_I = -12.382208025484562
INaCa_pE1total = 0.1527696589632682
INaCa_inActivation1 = 0.1744224872482831
INaCa_inActivation2 = 0.6724616314101051
INaCa_pE2total = 1.0 - INaCa_pE1total - INaCa_inActivation1 - INaCa_inActivation2
INaCa_amp = {
"V" : 110.0,
"EMB" : 110.0,
"LAT" : 110.0,
"NEO" : 110.0,
"SAN" : 150.0,
"A" : 150.0,
}
}
System System(/CELL/MEMBRANE/INaCa)
{
StepperID ODE;
Variable Variable( I )
{
Value @INaCa_I;
}
Variable Variable( pE1total )
{
Value @INaCa_pE1total;
}
Variable Variable( pE2total )
{
Value @INaCa_pE2total;
}
Variable Variable( vInActivation1 )
{
Value 2.4577513386e-06;
}
Variable Variable( vInActivation2 )
{
Value 0.000321955009939;
}
Variable Variable( inActivation1 )
{
Value @INaCa_inActivation1;
}
Variable Variable( inActivation2 )
{
Value @INaCa_inActivation2;
}
Variable Variable( E1A )
{
Value 0.0277077332606;
}
Variable Variable( E2A )
{
Value 0.644870175642;
}
Variable Variable( dE )
{
Value 7.6263502799998276e-07;
}
Variable Variable( GX ){
Value @( NCX1[SimulationMode]);
}
Process INaCaAssignmentProcess( I )
{
StepperID PSV;
Priority 20;
VariableReferenceList
[ Nai :../../CYTOPLASM:Na 0 ]
[ Cai :../../CYTOPLASM:Ca 0 ]
[ E1A :.:E1A 1 ]
[ Nao :/:Na 0 ]
[ Cao :/:Ca 0 ]
[ E2A :.:E2A 1 ]
[ vrtf :..:_vrtf 0 ]
[ dinact1 :.:vInActivation1 1 ]
[ dinact2 :.:vInActivation2 1 ]
[ inact1 :.:inActivation1 0 ]
[ inact2 :.:inActivation2 0 ]
[ pE1tot :.:pE1total 0 ]
[ pE2tot :.:pE2total 1 ]
[ dE :.:dE 1 ]
[ GX :.:GX 0 ]
[ I :.:I 1 ]
[ Cm :..:Cm 0 ];
KmNai 20.74854e-3; # Dissociation constant for intracellular Na+ [M]
nHNa 3.0; # experimental index for Hill constant about Na+
KmCai 0.0184e-3; # Dissociation constant for intracellular Ca2+ [M]
KmNao 87.5e-3; # Dissociation constant for extracellular Na+ [M]
KmCao 1.38e-3; # Dissociation constant for extracellular Ca<sup>2+</sup> [M]
KmCaact 0.004e-3; # Dissociation constant for regulatory Ca2+ at the inner side [M]
partition 0.32; # distribution constant
amplitude @( INaCa_amp[SimulationMode] ); # amplitude factor [pA/pF]
# rate constants in the presence of regulatory Ca2+ [msec-1]
a1Caon 0.002;
b1Caon 0.0012;
# rate constants in the absence of regulatory Ca2+ [msec-1]
a1Caoff 0.0015;
b1Caoff 5.0E-7;
# rate constants [msec-1]
a2Caoff 0.01;
b2Caoff 1.0E-4;
a2Caon 3.0E-5;
b2Caon 0.09;
}
Process ZeroVariableAsFluxProcess( E )
{
Priority 15;
VariableReferenceList
[ dy :.:dE 0 ]
[ pE1tot :.:pE1total 1 ];
}
Process ZeroVariableAsFluxProcess( E1_inAntivation1 )
{
Priority 15;
VariableReferenceList
[ inact1 :.:inActivation1 1 ]
[ pE1tot :.:pE1total -1 ]
[ dinact1 :.:vInActivation1 0 ];
}
Process ZeroVariableAsFluxProcess( E1_inAntivation2 )
{
Priority 15;
VariableReferenceList
[ inact2 :.:inActivation2 1 ]
[ pE1tot :.:pE1total -1 ]
[ dinact2 :.:vInActivation2 0 ];
}
Process IonFluxProcess( j )
{
Priority 11;
VariableReferenceList
[ Nae :/:Na 3 ]
[ Nai :../../CYTOPLASM:Na -3 ]
[ Cae :/:Ca -1 ]
[ Cai :../../CYTOPLASM:CaTotal 1 ]
[ i :.:I 0 ]
[ N_A :/:N_A 0 ]
[ F :/:F 0 ]
[ z :/:zNa 0 ];
}
@MembranePotential( 'I' )
@addToTotalCurrent( 'currentNa', 'I', 3 )
@addToTotalCurrent( 'currentCa', 'I', -2 )
@addToTotalCurrent( 'current', 'I' )
}
@{'''
Author Yasuhiro Naito
Version 0.1 2008-11-27 08:36:10 +0900
<INaCa name="INaCa" initial_value="-12.382208025484562"
className="org.simBio.bio.takeuchi_et_al_2006.current.INaCa">
<variable name="pE1total" initial_value="0.1527696589632682" />
<variable name="inActivation1" initial_value="0.1744224872482831" />
<variable name="inActivation2" initial_value="0.6724616314101051" />
<parameter name="amplitude" initial_value="110.0" units="pA/pF" />
<parameter name="stoichiometryNa" initial_value="3.0" units="pA/mM" />
<parameter name="stoichiometryCa" initial_value="-2.0" units="pA/mM" />
<link name="Vm" initial_value="../Vm" units="mV" />
<link name="Cm" initial_value="../membrane capacitance" />
<link name="Nai" initial_value="../Na" units="mM" />
<link name="Nao" initial_value="../../Na" units="mM" />
<link name="Cai" initial_value="../Ca" units="mM" />
<link name="Cao" initial_value="../../Ca" units="mM" />
<link name="current" initial_value="../current" />
<link name="currentNa" initial_value="../currentNa" />
<link name="currentCa" initial_value="../currentCa" />
<link name="R" initial_value="/Gas constant" />
<link name="T" initial_value="/absolute temperature" units="K" />
<link name="F" initial_value="/Faraday constant" units="Coulomb/mM" />
</INaCa>
'''}