Re: Michaelis-Menten model i nonmem
From: Nick Holford
Subject: Re: [NMusers] Michaelis-Menten model i nonmem
Date:Tue, 18 Feb 2003 08:08:23 +1300
Toufigh,
First suggestion is to make your model account for reality more closely and put in a term for
non-specific binding.
I also wonder how you know the % bound (in order to compute the DV for bound conc) if you don't
already know the binding parameters? It's often a good idea to fit the raw binding observation
rather than transforming it into a % of something that is usually not really known very well.
Also remember that the binding model assumes CONC is unbound. Is this really the case for the conc
that your PK model is predicting? Or is this total (bound+unbound) conc?
You might also consider a proportional residual error for the binding prediction.
Finally, there is no need for the variables Q and W in your code. It can be expressed more clearly
(IMHO) as follows:
$ERROR
CONC=F
IF (PKPD.EQ.2) THEN
Y=BMAX*CONC/(BC50+CONC) + CONC*NS + EPS(3) ; NS is non-specific binding parameter
ELSE
Y=CONC*(1+EPS(1)) + EPS(2)
ENDIF
_______________________________________________________