- chem.name
Either the chemical name, CAS number, or the parameters
must be specified.
- chem.cas
Either the chemical name, CAS number, or the parameters must
be specified.
- dtxsid
EPA's DSSTox Structure ID (https://comptox.epa.gov/dashboard)
the chemical must be identified by either CAS, name, or DTXSIDs
- times
Optional time sequence for specified number of output times (in days) to be returned by the function.
The model is solved explicitly at the time sequence specified. Dosing sequence begins at the first time provided.
- parameters
List of chemical parameters, as output by
parameterize_pbtk function. Overrides chem.name and chem.cas.
- model
Specified model to use in simulation: "pbtk", "3compartment",
"3compartmentss", "1compartment", "schmitt", ...
- route
String specification of route of exposure for simulation:
"oral", "iv", "inhalation", ...
- dosing
List of dosing metrics used in simulation, which includes
the namesake entries of a model's associated dosing.params. In the case
of most httk models, these should include "initial.dose", "doses.per.day",
"daily.dose", and "dosing.matrix". The "dosing.matrix" is used for more
precise dose regimen specification, and is a matrix consisting of two
columns or rows named "time" and "dose" containing the time and amount of
each dose. If none of the namesake entries of the dosing list is set to a
non-NULL value, solve_model uses a default initial dose of 1 mg/kg BW along with the
dose type (add/multiply) specified for a given route (for example, add the dose to gut
lumen for oral route)
- days
Simulated period. Default 10 days.
- tsteps
The number of time steps per hour. Default of 4.
- initial.values
Vector of numeric values containing the initial
concentrations or amounts of the chemical in specified tissues with units
corresponding to those specified for the model outputs. Default values are zero.
- initial.value.units
Vector of character strings containing the units
corresponding to 'initial.values' specified for the model outputs.
Default is assuming the units match expected compartment units for the model.
- plots
Plots all outputs if true.
- monitor.vars
Which variables are returned as a function of time.
Default values of NULL looks up variables specified in modelinfo_MODEL.R
- suppress.messages
Whether or not the output messages are suppressed.
- species
Species desired (models have been designed to be
parameterized for some subset of the following species: "Rat", "Rabbit",
"Dog", "Mouse", or default "Human").
- input.units
Input units of interest assigned to dosing. Defaults
to mg/kg BW, in line with the default dosing scheme of a one-time dose of
1 mg/kg in which no other dosing parameters are specified.
- output.units
Output units of interest for the compiled components.
Defaults to NULL, and will provide values in model units if unspecified.
- method
Method used by integrator (deSolve).
- rtol
Relative tolerance used by integrator (deSolve) to determine
numerical precision -- defaults to 1e-6.
- atol
Absolute tolerance used by integrator (deSolve) to determine
- recalc.blood2plasma
Recalculates the ratio of the amount of chemical
in the blood to plasma using the input parameters, calculated with
hematocrit, Funbound.plasma, and Krbc2pu.
- recalc.clearance
Recalculates the the hepatic clearance
(Clmetabolism) with new million.cells.per.gliver parameter.
- restrictive.clearance
Protein binding not taken into account (set to
1) in liver clearance if FALSE.
- adjusted.Funbound.plasma
Uses adjusted Funbound.plasma when set to
TRUE along with partition coefficients calculated with this value.
- minimum.Funbound.plasma
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)
- parameterize.arg.list
Additional parameters passed to the model
parameterization function (other than chemical identifier, `species`,
`suppress.messages`, `restrictive.clearance`, `adjusted.Funbound.plasma`,
and `minimum.Funbound.plasma`)
- small.time
A tiny amount of time used to provide predictions on either
side of an instantaneous event (like an iv injection). This helps ensure that
abrupt changes plot well. Defaults to 1e-4.
- ...
Additional arguments passed to the integrator.