Learn R Programming

httk (version 1.8)

solve_1comp: Solve one compartment TK model

Description

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.

Usage

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,...)

Arguments

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.

times

Optional time sequence for specified number of days.

parameters

Chemical parameters from parameterize_1comp function, overrides chem.name and chem.cas.

days

Length of the simulation.

tsteps

The number time steps per hour.

daily.dose

Total daily dose, mg/kg BW.

dose

Amount of a single dose, mg/kg BW. Overwrites daily.dose.

doses.per.day

Number of doses per day.

species

Species desired (either "Rat", "Rabbit", "Dog", or default "Human").

iv.dose

Simulates a single i.v. dose if true.

output.units

Desired units (either "mg/L", "mg", "umol", or default "uM").

initial.values

Vector containing the initial concentrations or amounts of the chemical in specified tissues with units corresponding to output.units. Defaults are zero.

suppress.messages

Whether or not the output message is suppressed.

plots

Plots all outputs if true.

method

Method used by integrator (deSolve).

rtol

Argument passed to integrator (deSolve).

atol

Argument passed to integrator (deSolve).

default.to.human

Substitutes missing rat values with human values if true.

dosing.matrix

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.

recalc.elimination

Whether or not to recalculate the elimination rate.

adjusted.Funbound.plasma

Uses adjusted Funbound.plasma when set to TRUE along with volume of distribution calculated with this value.

regression

Whether or not to use the regressions in calculating partition coefficients in volume of distribution calculation.

restrictive.clearance

In calculating elimination rate, protein binding is not taken into account (set to 1) in liver clearance if FALSE.

well.stirred.correction

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.

Value

A matrix with a column for time(in days) and a column for the compartment and the area under the curve (concentration only).

Details

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.

Examples

Run this code
# NOT RUN {
solve_1comp(chem.name='Bisphenol-A',days=1)

# }

Run the code above in your browser using DataLab