RE: Simulation problems
From: Leonid Gibiansky - lgibiansky@emmes.com
Subject: RE: [NMusers] Simulation problems
Date: 2/5/2004 9:17 AM
Toufigh,
Just to be sure, I would define (in the ERROR block)
CONC=A(2)/V1
Also, the model as you described does not contain ETAs on PD parameters,
so it works according to your message. Could you show the model that have problems ?
The only place that can lead to overflow is the ERROR-block division by (IC50+CONC)
You may try
DEN = (IC50+CONC)
IF(DEN .LT. 0.00001) DEN = 0.00001
LAM=BASE-IMAX*CONC/DEN
and see what happens.
Leonid