Calculate C(t) for a 1-compartment linear model
calc_sd_1cmt(t, dose, dur = NULL, tinf = NULL, ...) calc_sd_1cmt_linear_bolus(t, dose, ...) calc_sd_1cmt_linear_oral_1_lag(t, dose, ...) calc_sd_1cmt_linear_infusion(t, dose, tinf, ...) calc_sd_1cmt_linear_oral_0(t, dose, dur, ...) calc_sd_1cmt_linear_oral_1(t, dose, ...) calc_sd_1cmt_linear_oral_0_lag(t, dose, dur, ...)
t
: Time after dose (h)dose
: Dosedur
: Duration of zero-order absorption (h)tinf
: Duration of infusion (h)...
: Passed to calc_derived_1cpt()
Concentration of drug at requested time (t
) after a single dose, given provided set of parameters and variables.
calc_sd_1cmt_linear_bolus()
: Calculate C(t) for a 1-compartment linear model after a single IV bolus dosecalc_sd_1cmt_linear_oral_1_lag()
: Calculate C(t) for a 1-compartment linear model with first-order absorption after a single oral dose, with lag timecalc_sd_1cmt_linear_infusion()
: Calculate C(t) for a 1-compartment linear model after a single IV infusioncalc_sd_1cmt_linear_oral_0()
: Calculate C(t) for a 1-compartment linear model with zero-order absorption after a single oral dosecalc_sd_1cmt_linear_oral_1()
: Calculate C(t) for a 1-compartment linear model with first-order absorption after a single oral dosecalc_sd_1cmt_linear_oral_0_lag()
: Calculate C(t) for a 1-compartment linear model with zero-order absorption after a single oral dose, with lag timeCt <- calc_sd_1cmt_linear_bolus(t=0:24, CL=6, V=25, dose=600) Ct <- calc_sd_1cmt_linear_oral_1_lag(t=0:24, CL=6, V=25, ka=1.1, dose=600, tlag=2) Ct <- calc_sd_1cmt_linear_infusion(t=0:24, CL=6, V=25, dose=600, tinf=1) Ct <- calc_sd_1cmt_linear_oral_0(t=0:24, CL=6, V=25, dur=1.5, dose=600) Ct <- calc_sd_1cmt_linear_oral_1(t=0:24, CL=6, V=25, ka=1.1, dose=600) Ct <- calc_sd_1cmt_linear_oral_0_lag(t=0:24, CL=6, V=25, dur=1.5, dose=600, tlag=1.5)
Bertrand J & Mentre F (2008). Mathematical Expressions of the Pharmacokinetic and Pharmacodynamic Models implemented in the Monolix software. http://lixoft.com/wp-content/uploads/2016/03/PKPDlibrary.pdf
Rowland M, Tozer TN. Clinical Pharmacokinetics and Pharmacodynamics: Concepts and Applications (4th). Lippincott Williams & Wilkins, Philadelphia, 2010.
Justin Wilkins, justin.wilkins@occams.com
Bill Denney, wdenney@humanpredictions.com