calc_amts_for_conc: Calculate the amounts in all compartments in a compartmental...

View source: R/calc_amts_for_conc.R

calc_amts_for_concR Documentation

Calculate the amounts in all compartments in a compartmental PK system based on a given concentration in the central compartment, and assuming steady state.

Description

Calculate the amounts in all compartments in a compartmental PK system based on a given concentration in the central compartment, and assuming steady state.

Usage

calc_amts_for_conc(conc = 10, parameters = NULL, n_cmt = 1)

Arguments

conc

concentration in central compartment

parameters

for PK model

n_cmt

number of compartments

Examples

calc_amts_for_conc(conc = 10, parameters = list(CL = 5, V = 50), n_cmt = 1)
calc_amts_for_conc(
  conc = 10,
  parameters = list(CL = 5, V = 50, Q = 20, V2 = 100),
  n_cmt = 2)
calc_amts_for_conc(
  conc = 10,
  parameters = list(CL = 5, V = 50, Q = 20, V2 = 100, Q2 = 30, V3 = 200),
  n_cmt = 3)

InsightRX/clinPK documentation built on Feb. 28, 2024, 12:06 a.m.