Hi,
I'm working on using Phoenix WinNonlin 8.2 on a PKPD model project. The model scheme is in the attached figure. I used IDR in Phoenix model to work out the part in the red box. To move forward, it seems I need to use PML codes. Could you give me some guidance on this? I've also include my IDR codes below.
Thanks,
-Mike
test(){
deriv(E = Kin * (1 + Emax * C / (C + EC50)) - Kout * E)
cfMicro(A1, Cl / V, first = (Aa = Ka))
dosepoint(Aa)
C = A1 / V
sequence{E = Kin / Kout}
error(EEps = 0.1)
observe(EObs = E * (1 + EEps))
stparm(Ka = tvKa)
stparm(V = tvV)
stparm(Cl = tvCl)
stparm(Kin = tvKin)
stparm(Kout = tvKout)
stparm(Emax = tvEmax)
stparm(EC50 = tvEC50)
fixef(tvKa(freeze) = c(, 3, ))
fixef(tvV(freeze) = c(, 47.584317, ))
fixef(tvCl(freeze) = c(, 1.6311257, ))
fixef(tvKin = c(, 0.00062, ))
fixef(tvKout = c(, 0.0066, ))
fixef(tvEmax = c(, 803, ))
fixef(tvEC50 = c(, 2.9, ))
}