Weibull Dose

The examples given so far have shown the amount of drug absorbed with respect to time, rising from an initial value (typically zero) to the amount administered.

They can, alternatively, be viewed as the cumulative probability of 1 mg of drug having been absorbed at any given time, multiplied by the total amount (in mg) of drug administered. (Because a density function has unit area under the curve, the scaling ensures that the total dose administered is equal to AMT.) This formulation allows us to consider alternative dosing functions by using different probability distributions.

Note

See the Weibull Dose with no elimination. for Tut Script used to generate results in this section.

One choice that has been proposed [Piotrovskii1987] uses the Weibull distribution [Christensen1980] where the amount, S(t), absorbed at time t following a dose of AMT at time t=t_0 is given by

S(t) = AMT \cdot \exp \left\{
    -\left(
        \frac{t-t_0}{\lambda}
    \right)^\kappa
\right\}

such that

\frac{dS(t)}{dt} =
\left \{
    \begin{array}{lr}
        \frac{\kappa}{\lambda}
        \left(
            \frac{t-t_0}{\lambda}
        \right)^{\kappa-1} \cdot
        AMT \cdot \exp \left\{
            -\left(
                \frac{t-t_0}{\lambda}
            \right)^{\kappa}
        \right \},
        & \text{for } t \geq t_0 \\

        0,
        & \text{otherwise} \\
    \end{array}
\right \}

where {\lambda} (lambda) and {\kappa} (kappa) are, respectively, scale and shape parameters of the Weibull distribution.

In other words, for t \geq t_0

\frac{dS(t)}{dt} =
    \frac{\kappa}{\lambda}
    \left(
        \frac{t-t_0}{\lambda}
    \right)^{\kappa-1} \cdot S(t)

which can be viewed as a rate absorption constant that varies over time, reflecting the possibility that a molecule of drug may be more likely to be absorbed the longer it is resident in the body (for example, due to passage of the drug into the intestine).

A shortcut for the Weibull dosing function is applied in PoPy using

@weibull{amt: c[AMT], lag: m[LAG], lambda: m[LAMBDA], kappa: m[KAPPA]}

in the equation for the appropriate compartment in the DERIVATIVES section of an input script.

The lag works in the same way as for a bolus dose, delaying the onset of the weibull dose. Again, this can be left out if we assume no lag:

DERIVATIVES: |
    d[CENTRAL] = @weibull{amt: c[AMT], lambda: m[LAMBDA], kappa: m[KAPPA]}
Cumulative amount following a Weibull dose with no elimination

Fig. 8 Cumulative amount following a Weibull dose with no elimination