another compiling error
Posted: Wed Aug 09, 2006 5:40 pm
Hi!
The following error occurs for several mechanisms that I'm trying to implement: "syntax error: Illegal block at line 13: PARAMETERS {". What can I do to fix this error? Also, do you see any other problems with the code? The code is below.
Sincerely,
MH
The following error occurs for several mechanisms that I'm trying to implement: "syntax error: Illegal block at line 13: PARAMETERS {". What can I do to fix this error? Also, do you see any other problems with the code? The code is below.
Sincerely,
MH
Code: Select all
UNITS {
(molar) = (mole/litre)
(mM) = (millimolar)
}
PARAMETERS {
Km.CMDN = 2.38e-03 (mM)
conc_CMDN_total = 50.0e-03 (mM)
conc_ca_i = 7.901351e-05 (mM)
Km.EMTA = 1.5e-04 (mM)
conc_EGTA_total = 10.0 (mM)
}
BREAKPOINT {
beta_i = (1+ ((conc_CMDN_total * Km.CMDN)/(Km.CMDN + (conc_ca_i)^2) + ((conc_EGTA_total * Km.EGTA) / (Km.EGTA + (conc_ca_i)^2)) ^ -1
}