Open JoannaPeng opened 3 years ago
mrt.iv.last
(and all the .last
parameters) are calculated through tlast, regardless of the number of doses. PKNCA assumes that the requested parameter is the one that you want, so it does not make inference about the parameter you are asking for; it generates the parameter requested. mrt.iv.last
is calculated as aumc.last/auc.last - dose.duration/2
. The .inf
versions of the parameters are provided through the parameters whose names end in .obs
or .pred
because they correspond to AUCinf,obs and AUCinf,pred. The parameters are documented at http://billdenney.github.io/pknca/articles/Selection-of-Calculation-Intervals.html#parameters-available-for-calculation-in-an-interval-1 (and any suggestions to improve documentation are helpful!).vss.int
parameter. The .int
parameters are intended to be used at steady-state to extrapolate or interpolate to the end of the dosing interval. It looks like the vss.int family of functions is missing. I'll open a separate issue to create those.Please let me know if I missed one of your questions.
For bullet point number 3, AUCinf is actually from the multiple dosing starting from the start of that dosing interval and extrapolated to infinity, not from a single dose, which is a little unusual for this parameter. I was confused about this myself before, but Eq. (11) from the attachment makes it clear (where Ntau is Eq. 11 is the end of the last [Nth] dosing interval). first-page-pdf (MRT equation_William Jusko).pdf ,
The second paragraph of the paper indicates that it does not require anything beyond the end of the last dose and specifically indicates that the calculation does not require concentrations after tau in a steady-state dosing interval: "In this report a simplified method which extends the above principles is proposed for calculating MRT and Vd,, during multiple dosing. This approach may shorten the time required for measuring MRT and Vdss, since it involves measuring plasma concentrations only up to the time when steady state is reached."
Equation 12 removes the requirement of concentrations after the end of the last steady-state dosing interval.
I will need to look into this more to confirm what should happen.
It may be useful to simulate the concentration vs time after multiple dosing to steady state and calculate MRT and Vss for the 1st dose and at s.s, and see whether you will get the same Vss value.
On Tue, Jul 6, 2021 at 6:32 AM Bill Denney @.***> wrote:
The second paragraph of the paper indicates that it does not require anything beyond the end of the last dose and specifically indicates that the calculation does not require concentrations after tau in a steady-state dosing interval: "In this report a simplified method which extends the above principles is proposed for calculating MRT and Vd,, during multiple dosing. This approach may shorten the time required for measuring MRT and Vdss, since it involves measuring plasma concentrations only up to the time when steady state is reached."
Equation 12 removes the requirement of concentrations after the end of the last steady-state dosing interval.
I will need to look into this more to confirm what should happen.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/billdenney/pknca/issues/151#issuecomment-874763448, or unsubscribe https://github.com/notifications/unsubscribe-auth/AJWWOHYDSOYTTI3KG427NXTTWMAWZANCNFSM47YOIWQA .
A question using IV infusion steady-state data. Doses are 2 weeks (336 hrs) apart, and after the 5th dose (DOSE.NUM=5), steady state is reached.
How are vss.iv.last and mrt.iv.last after the 5th dose (at steady state) calculated using PK.NCA? Is mrt.iv.last calculated as AUMClast/AUClast? vss.iv.last should be calculated as MRTINFCL where CL is cl.last. Is MRTINF calculated by default and used to derive vss.iv.last, even though only mrt.iv.last is specified in the code above? For MRTINF, is the following equation used: MRTINF = (AUMCtau +tau[AUCinf - AUCtau])/AUCtau, where AUCinf is for the profile at steady-state and extrapolated to infinity? And what happens when a subject only had partial sample collection and the last sample is 168 hrs post the 5th dose, not 336 hrs? In this case, AUClast and AUMClast are different from AUCtau and AUMCtau, respectively. Then all the calculations based on AUCtau and AUMCtau (e.g., for CL and Vss) are not valid any more. I think PKNCA still reports CL and Vss values in this case, but maybe shouldn't? Do you happen to know how Phoenix WNL handles this case?