There are two different formulations containing the same API:
(1) daily released formulation (already have the single dose-PK data (time vs concentration))
(2) weekly released formulation (already have the single dose-PK data (time vs concentration))
Can someone please tell me how to predict the PK curve of the following condition? the subject receives the daily formulation for 7 days, after that, the subject receives the weekly formulation for 3 weeks.
you may want to consider having two different absorption compartments for the two formulations. This would allow you to define different parameters for the absorption process. In its simplest form (e.g. first-order) it would look like this:
deriv(Aa1 = -Ka1 * Aa1)
deriv(Aa2= -Ka2 * Aa2)
deriv(A1 = Ka1Aa1 + Ka2Aa2 - Cl*C)
You may want to post your project file if this does not resolve your issue.