This function solves for the amount or concentration of a chemical in plasma for a one compartment model as a function of time based on the dose and dosing frequency.
solve_1comp(
chem.name = NULL,
chem.cas = NULL,
dtxsid = NULL,
times = NULL,
parameters = NULL,
days = 10,
tsteps = 4,
daily.dose = NULL,
dose = NULL,
doses.per.day = NULL,
initial.values = NULL,
plots = FALSE,
suppress.messages = FALSE,
species = "Human",
iv.dose = FALSE,
input.units = "mg/kg",
output.units = NULL,
method = "lsoda",
rtol = 1e-08,
atol = 1e-12,
default.to.human = FALSE,
recalc.blood2plasma = FALSE,
recalc.clearance = FALSE,
dosing.matrix = NULL,
adjusted.Funbound.plasma = TRUE,
regression = TRUE,
restrictive.clearance = TRUE,
minimum.Funbound.plasma = 1e-04,
monitor.vars = NULL,
...
)
A matrix with a column for time(in days) and a column for the compartment and the area under the curve (concentration only).
Either the chemical name, CAS number, or the parameters must be specified.
Either the chemical name, CAS number, or the parameters must be specified.
EPA's 'DSSTox Structure ID (https://comptox.epa.gov/dashboard) the chemical must be identified by either CAS, name, or DTXSIDs
Optional time sequence for specified number of days.
Chemical parameters from parameterize_1comp function, overrides chem.name and chem.cas.
Length of the simulation.
The number time steps per hour.
Total daily dose, default is mg/kg BW.
Amount of a single dose, default is mg/kg BW.
Number of doses per day.
Vector containing the initial concentrations or amounts of the chemical in specified tissues with units corresponding to output.units. Defaults are zero.
Plots all outputs if true.
Whether or not the output message is suppressed.
Species desired (either "Rat", "Rabbit", "Dog", or default "Human").
Simulates a single i.v. dose if true.
Input units of interest assigned to dosing, defaults to "mg/kg" BW.
A named vector of output units expected for the model results. Default, NULL, returns model results in units specified in the 'modelinfo' file. See table below for details.
Method used by integrator (deSolve).
Argument passed to integrator (deSolve).
Argument passed to integrator (deSolve).
Substitutes missing rat values with human values if true.
Whether or not to recalculate the blood:plasma chemical concentrationr ratio
Whether or not to recalculate the elimination rate.
Vector of dosing times or a matrix consisting of two columns or rows named "dose" and "time" containing the time and amount, in mg/kg BW by default, of each dose.
Uses adjusted Funbound.plasma when set to TRUE along with volume of distribution calculated with this value.
Whether or not to use the regressions in calculating partition coefficients in volume of distribution calculation.
In calculating elimination rate, protein binding is not taken into account (set to 1) in liver clearance if FALSE.
Monte Carlo draws less than this value are set equal to this value (default is 0.0001 -- half the lowest measured Fup in our dataset).
Which variables are returned as a function of time. Defaults value of NULL provides "Agutlumen", "Ccompartment", "Ametabolized", "AUC"
Additional arguments passed to the integrator.
Robert Pearce
Note that the model parameters have units of hours while the model output is in days.
Default value of NULL for doses.per.day solves for a single dose.
When species is specified as rabbit, dog, or mouse, the function uses the appropriate physiological data(volumes and flows) but substitutes human fraction unbound, partition coefficients, and intrinsic hepatic clearance.
AUC is area under plasma concentration curve.
Model Figure
Pearce, Robert G., et al. "Httk: R package for high-throughput toxicokinetics." Journal of statistical software 79.4 (2017): 1.
solve_1comp(chem.name='Bisphenol-A',days=1)
params <- parameterize_1comp(chem.cas="80-05-7")
solve_1comp(parameters=params)
Run the code above in your browser using DataLab