We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c38c643 + a165432 commit 053e256Copy full SHA for 053e256
python/rdesigneur/rdesigneurProtos.py
@@ -239,7 +239,7 @@ def make_Ca( name ):
239
if ( x > EREST_ACT):
240
yA[i] = 5.0 * math.exp( -50 * (x - EREST_ACT) )
241
else:
242
- yA[i] = 0.0
+ yA[i] = 5.0
243
#yB[i] = 6.0 - yA[i]
244
yB[i] = 5.0
245
x += dx
@@ -336,6 +336,7 @@ def make_K_AHP( name ):
336
K_AHP.Xpower = 0
337
K_AHP.Ypower = 0
338
K_AHP.Zpower = 1
339
+ K_AHP.useConcentration = 1
340
341
zgate = moose.element( K_AHP.path + '/gateZ' )
342
xmax = 0.02 # 20 micromolar.
@@ -348,7 +349,7 @@ def make_K_AHP( name ):
348
349
x = zgate.min
350
for i in range( zgate.divs + 1 ):
351
zA[i] = min( 250.00 * CA_SCALE * x, 10 )
- zB[i] = 1.0
352
+ zB[i] = 1.0 + zA[i]
353
x = x + dx
354
355
zgate.tableA = zA
0 commit comments