Use of transit compartment models #214
Replies: 3 comments 13 replies
-
Hi @VishnuEriyat, thanks for reaching out. The only thing that is weird for me in your equations is that you're missing the |
Beta Was this translation helpful? Give feedback.
-
Also, your transit compartments aren’t set up correctly. It should be something like this: (note the current notation if using Pmetrics v2 or greater)
Note that usually people make the transit rate constant the same between all transit compartments, hence Ktr between all of them. Have you tried adding a lag time instead of transit compartments? You can also make the lag time a function by defining the component variables in the primary block and using the LAG block to define the equation, e.g.
I’ll also add that absorption can be very tricky to model sometimes, because we typically don’t have enough samples early after dosing to really characterize the curve. Lastly, according to this FDA document, rifampin can undergo enterohepatic circulation: “After absorption, rifampin is rapidly eliminated in the bile, and an enterohepatic circulation If you are seeing double peaks, you should consider incorporating a delayed return to compartment 1, like this:
|
Beta Was this translation helpful? Give feedback.
-
On the subject of absorption, there is a pretty good presentation from a PAGE meeting by Mats O. Karlsson and Rada Savic that you might find interesting. https://www.page-meeting.org/pdf_assets/6066-karlsson_absorption.pdf |
Beta Was this translation helpful? Give feedback.
-
I was working on modelling Rifampicin (oral) data. The modelling of absorption seems to be particularly challenging, I wanted to explore the possibility of using transit compartment model to describe the absorption. But the run is getting halted without even starting, I tried few ways of putting the compartments, two examples are given below
@example 1
#Dif
XP(1)=-K1X(1)-K13X(1)
XP(2)=K1X(1)-K23X(2)
XP(3)=K13X(1)+K23X(2)-K34X(3)+KP43X(4)-KeX(3)
XP(4)=K34X(3)-K43*X(4)
#Out
Y(1) = X(3)/V
@example 2
#Dif
XP(1)=-K1X(1)-Ka1X(1)
XP(2)=K1X(1)-Ka2X(2)
XP(3)=Ka1X(1)+Ka2X(2)-KCPX(3)+KPCX(4)-KeX(3)
XP(4)=KCPX(3)-KPC*X(4)
#Out
Y(1) = X(3)/V
I was wondering if I am totally off the track here.
Beta Was this translation helpful? Give feedback.
All reactions