********** MODEL NAME model_1cpt_cl_autoinduction ********** MODEL NOTES PK model for simulation of drug concentration in central compartment with following characteristics: Compartments: 1 Elimination : clearance autoinduction Absorption : none (infusion/iv) Unit convention Dose: mg Concentration: ug/mL Time: hours The annotation of the parameter units is consistent with the given unit convention. Units of the inputs (dose) and outputs (concentration) in the dataset for parameter estimation need to match the unit convention. ********** MODEL STATES d/dt(Ac) = - CL/Vc*Ac + INPUT1 Ac(0) = 0 ********** MODEL PARAMETERS CLbase = 3 # Clearance baseline (L/hour) CLmax = 5 # Induced clearance (L/hour) Vc = 32 # Central volume (L) Hlf = 5 # Induction half life (h) ********** MODEL VARIABLES % Calculation of concentration in central compartment Cc = Ac/Vc CL = CLbase+(CLmax-CLbase)*(1-exp((-log(2)*time)/Hlf)) % Defining an output (only needed when interfacing with NLME % parameter estimation tools such as NONMEM and MONOLIX) OUTPUT1 = Cc # Compound concentration (ug/mL) ********** MODEL REACTIONS ********** MODEL FUNCTIONS ********** MODEL EVENTS