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.cas=NULL,chem.name=NULL,times=NULL,parameters=NULL,daily.dose=1,
dose=NULL,doses.per.day=NULL, days=10,tsteps = 4, suppress.messages=F,
species='Human',output.units='uM',plots=F,initial.values=NULL,
iv.dose=F,method="lsoda",rtol=1e-8,atol=1e-12,
default.to.human=F,dosing.matrix=NULL,recalc.elimination=F,
adjusted.Funbound.plasma=T,regression=T,restrictive.clearance=T,
well.stirred.correction=T,...)
Either the chemical name, CAS number, or the parameters must be specified.
Either the chemical name, CAS number, or the parameters must be specified.
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, mg/kg BW.
Amount of a single dose, mg/kg BW. Overwrites daily.dose.
Number of doses per day.
Species desired (either "Rat", "Rabbit", "Dog", or default "Human").
Simulates a single i.v. dose if true.
Desired units (either "mg/L", "mg", "umol", or default "uM").
Vector containing the initial concentrations or amounts of the chemical in specified tissues with units corresponding to output.units. Defaults are zero.
Whether or not the output message is suppressed.
Plots all outputs if true.
Method used by integrator (deSolve).
Argument passed to integrator (deSolve).
Argument passed to integrator (deSolve).
Substitutes missing rat values with human values if true.
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, of each dose.
Whether or not to recalculate the elimination rate.
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.
Uses correction in calculation of hepatic clearance for well-stirred model if TRUE. This assumes clearance relative to amount unbound in whole blood instead of plasma, but converted to use with plasma concentration.
Additional arguments passed to the integrator.
A matrix with a column for time(in days) and a column for the compartment and the area under the curve (concentration only).
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.
AUC is area under plasma concentration curve.
# NOT RUN {
solve_1comp(chem.name='Bisphenol-A',days=1)
# }
Run the code above in your browser using DataLab