Tutorials › Pharmacometrics › PBPK Model Verification and Qualification
Pharmacokinetics · PBPK Modeling

PBPK Model Verification and Qualification

Learn how physiologically based pharmacokinetic models are checked for mathematical correctness, evaluated against observations, and qualified for specific intended uses in drug development and regulatory decision-making.

Intermediate PBPK Model Qualification Regulatory Science
01 · The big picture

1. What Is PBPK Model Verification and Qualification?

Physiologically based pharmacokinetic (PBPK) models combine information about a drug with information about human physiology to simulate drug absorption, distribution, metabolism, and excretion. Because PBPK models are intended to support predictions beyond the specific observations used to construct them, demonstrating that a model is technically correct and fit for its intended purpose is an essential part of model development.

Two related but distinct questions should be separated:

  • Is the model implemented correctly? This is the domain of verification.
  • Does the model perform adequately for its intended use? This is the domain of qualification and predictive-performance evaluation.

Regulatory terminology is not completely uniform across organizations or modeling programs. The EMA framework explicitly discusses verification as part of qualification and focuses qualification on an intended purpose. FDA guidance emphasizes the quality, relevance, reliability, and predictive performance of PBPK analyses and recommends appropriate documentation of model assumptions, inputs, simulations, and comparisons with observed data.

PBPK model equations + physiological inputs Verification equations mass balance · numerics Qualification observed data intended use Correct implementation → adequate predictive performance → justified use

Verification asks whether the mathematical implementation is correct. Qualification asks whether the verified model and its supporting evidence are adequate for a defined intended use.

Core idea: A PBPK model should not be considered qualified simply because it reproduces a few observed concentration-time profiles. Verification, evaluation of predictive performance, applicability to the intended population and scenario, and transparent documentation all contribute to the evidence supporting qualification.
02 · Why it matters

2. Why Does Verification and Qualification Matter?

PBPK models are often used to address questions for which direct clinical data are limited, difficult to obtain, or not yet available. Examples include drug-drug interactions, organ impairment, pediatric dosing, formulation changes, food effects, and extrapolation between populations.

That predictive role creates a higher evidentiary requirement than simply obtaining a good numerical fit to an existing dataset.

QuestionEvidence neededTypical concern
Are the equations implemented correctly? Verification testing Programming errors, incorrect units, incorrect parameterization, numerical problems
Does the model reproduce known PK behavior? Internal and external evaluation Systematic prediction bias or missing mechanisms
Can the model predict a new population? Relevant validation or qualification evidence Unjustified extrapolation
Can it support a regulatory question? Intended-use qualification Evidence not sufficient for the specific decision
Can results be reproduced? Transparent reporting and version control Unclear model changes, software versions, or input assumptions

The key principle is that model adequacy is context dependent. A model may be sufficiently qualified for one application but require additional evidence before being used for another.

03 · Terminology

3. Verification, Validation, and Qualification

These terms are sometimes used inconsistently, so it is useful to define them operationally.

TermPractical meaning in PBPK
Verification Evidence that the mathematical model and its computational implementation correctly represent the specified equations and intended mechanisms.
Predictive performance Evidence obtained by comparing model predictions with relevant observed data.
Qualification A documented determination that a PBPK platform, model, or model component is suitable for a defined intended use, based on an appropriate body of evidence.
Validation A broader term often used for demonstrating that a model is fit for a stated purpose. The precise terminology and scope vary by organization and context.

The EMA reporting guideline explicitly describes verification as addressing the correctness of the mathematical model structure and identifies qualification with an intended purpose and predictive performance. FDA's PBPK guidance similarly emphasizes the relevance, reliability, and quality of the analysis and the comparison of predictions with clinical observations.

Important distinction: Verification is primarily about correctness of implementation. Qualification is primarily about fitness for an intended use. A model can pass one without providing sufficient evidence for the other.
04 · Verification

4. What Does PBPK Model Verification Involve?

Verification examines whether the model behaves according to its mathematical specification. The objective is not to demonstrate that the model is biologically perfect. Instead, it asks whether the computational implementation correctly solves the model that has actually been specified.

Important verification activities can include:

  • Checking differential equations and algebraic relationships.
  • Checking parameter units and dimensional consistency.
  • Checking conservation of mass.
  • Checking blood-flow and organ-flow relationships.
  • Checking boundary conditions and initial conditions.
  • Testing limiting cases with known analytical solutions.
  • Checking numerical solver accuracy and stability.
  • Testing special cases such as zero clearance, zero blood flow, or complete absorption where appropriate.
  • Confirming that implementation changes produce the expected directional effects.

The EMA guideline specifically notes the importance of presenting the differential equations and parameterizations, supporting mass balance and blood-flow balances, and ensuring that numerical errors are not present.

05 · Mass balance

5. Mass Balance: One of the Most Important Verification Checks

PBPK models represent drug movement among compartments and organs. If drug enters the system, moves among tissues, and is eliminated, the accounting of drug mass must remain internally consistent.

For a closed system with an administered amount \(D\), the basic balance can be written as:

$$ D=A_{\mathrm{body}}(t)+A_{\mathrm{eliminated}}(t)+A_{\mathrm{remaining\,external}}(t) $$

For a simplified IV bolus system with no additional input after time zero and complete accounting of elimination:

$$ D=A_{\mathrm{body}}(t)+A_{\mathrm{eliminated}}(t) $$

At sufficiently long times, when drug has been completely eliminated:

$$ A_{\mathrm{body}}(\infty)\approx0 \qquad\text{and}\qquad A_{\mathrm{eliminated}}(\infty)\approx D $$

A material imbalance can indicate an implementation error, a missing pathway, a unit conversion problem, or numerical integration error.

Verification principle: A model should not merely produce plausible concentration curves. Its internal accounting should obey the conservation laws implied by its equations.
06 · Units

6. Dimensional Consistency and Parameter Checks

PBPK models combine many quantities: organ volumes, blood flows, concentrations, partition coefficients, enzyme abundances, intrinsic clearances, binding parameters, permeability terms, and physiological scaling factors. Unit inconsistencies can therefore create substantial errors while still producing superficially plausible output.

For example, a clearance relationship has dimensions of volume per unit time:

$$ CL\;[\mathrm{L/h}] $$

If a concentration is expressed in mg/L, then the elimination rate:

$$ R_{\mathrm{elim}}=CL\cdot C $$

has units:

$$ (\mathrm{L/h})(\mathrm{mg/L})=\mathrm{mg/h} $$

That simple dimensional check should remain true throughout the relevant model equations.

QuantityExample unitVerification question
Organ volumeLAre volumes consistently expressed in the same volume unit?
Blood flowL/hDoes flow agree with the time unit used by the ODE solver?
Concentrationmg/LIs concentration compatible with amount and volume?
ClearanceL/hDoes clearance multiplied by concentration produce amount/time?
Rate constant1/hDoes multiplication by time give a dimensionless exponent?
07 · Numerical accuracy

7. Numerical Verification

PBPK models are frequently represented by systems of ordinary differential equations. Numerical solvers approximate the solution of these equations. A model can therefore be mathematically correct but computationally inaccurate if the numerical implementation is poorly configured.

For an ODE system:

$$ \frac{d\mathbf{A}(t)}{dt}=f\left(t,\mathbf{A}(t),\boldsymbol{\theta}\right) $$

the numerical solution should be sufficiently stable and accurate for the intended simulation.

Useful numerical verification checks include:

  1. Step-size sensitivity: repeat the simulation with tighter numerical tolerances.
  2. Solver comparison: where appropriate, compare results from alternative numerical methods.
  3. Convergence: verify that reducing numerical tolerances produces negligible changes in important outputs.
  4. Mass balance: confirm that numerical integration does not create or lose material.
  5. Extreme-case testing: evaluate challenging parameter combinations that may expose numerical instability.
Practical rule: if an important prediction changes materially simply because the numerical solver tolerances were tightened, the model has not yet demonstrated adequate numerical stability for that prediction.
08 · Analytical checks

8. Compare the PBPK Implementation With Known Solutions

Whenever a PBPK component has a simplified analytical solution, that solution provides a powerful verification test.

For example, consider a one-compartment system with first-order elimination:

$$ \frac{dA}{dt}=-kA $$

The analytical solution is:

$$ A(t)=A_0e^{-kt} $$

A numerical implementation of the same process should reproduce this solution to within the expected numerical tolerance.

This idea can be extended to PBPK submodels. A complex model can be temporarily reduced to a simpler special case whose expected behavior is known. The computational implementation can then be tested against that benchmark.

Verification testExpected behavior
Zero eliminationTotal drug mass remains in the modeled system.
Zero distribution clearanceInter-compartmental exchange disappears.
Identical compartmentsSymmetric compartments behave equivalently.
Very large exchangeCompartments approach rapid equilibration, subject to model structure.
Known first-order special caseNumerical solution agrees with analytical solution.
09 · Qualification

9. What Does It Mean to Qualify a PBPK Model?

Qualification is tied to an intended use. The question is not simply whether the model is "good." The relevant question is whether the available evidence supports using the model for a particular scientific or regulatory purpose.

For example, the evidence needed to support a PBPK model for:

  • describing adult single-dose PK,
  • predicting a food effect,
  • predicting a CYP-mediated drug-drug interaction,
  • extrapolating to pediatric patients, or
  • supporting dosing in organ impairment

may not be identical.

A useful qualification statement therefore has the form:

$$ \text{Model}+\text{Evidence}+\text{Context} \rightarrow \text{Intended Use} $$

The intended use should be defined before interpreting predictive performance, because the relevant evidence depends on the decision the model is expected to support.

10 · Platform qualification

10. What Is a PBPK Platform Qualification?

A PBPK platform contains more than one drug model. It may include physiological databases, organ models, enzyme and transporter models, numerical solvers, population generators, and software implementations.

Platform qualification therefore asks whether the relevant components of the platform have sufficient evidence for the intended application.

Platform componentPotential qualification question
Physiology databaseAre the physiological values appropriate for the target population?
Organ modelDoes the model represent the intended physiological mechanism?
Enzyme modelCan enzyme-mediated clearance be represented adequately?
Transporter modelAre transporter processes supported for the intended use?
Population modelDoes simulated variability appropriately represent the target population?
Numerical engineHas the computational implementation been verified?
Software versionAre changes between versions understood and documented?

The EMA guideline notes that qualification can apply to both commercial platforms and internally developed platforms. It also emphasizes documenting modifications to commercial platform components and considering whether platform version changes affect previously established qualification.

11 · Predictive performance

11. Evaluating Predictive Performance

After the mathematical implementation has been verified, predictive performance can be evaluated by comparing model predictions with relevant observed data.

Important comparisons can include:

  • Concentration-time profiles.
  • AUC.
  • Cmax.
  • Tmax.
  • Half-life.
  • Clearance or apparent clearance.
  • Exposure ratios between conditions.
  • Population distributions and variability.

A basic prediction ratio can be written as:

$$ R=\frac{\mathrm{Predicted}}{\mathrm{Observed}} $$

A value of 1 indicates exact agreement for that particular summary quantity. Values above or below 1 indicate overprediction or underprediction, respectively.

However, a single ratio does not establish model adequacy. Predictive performance should be considered across relevant studies, populations, doses, routes, and conditions, together with the scientific purpose of the model.

Important: There is no universal numerical acceptance criterion that automatically qualifies every PBPK model for every purpose. Acceptance criteria should be scientifically justified in relation to the intended use and the consequences of prediction error.
12 · Visual diagnostics

12. Predicted Versus Observed Concentrations

Graphical comparison is an important component of PBPK model evaluation because summary metrics can hide systematic discrepancies in the time course.

Observed concentration Predicted concentration identity line

Predicted-versus-observed plots can reveal systematic bias, heteroscedasticity, outliers, and regions of poor prediction that may be hidden by aggregate performance measures.

Concentration-time overlays are also useful. A model may reproduce AUC reasonably well while missing the shape of the profile, such as an early absorption peak or a distribution phase.

For that reason, both numerical and graphical evaluations are generally more informative than relying on a single summary statistic.

13 · External evaluation

13. Why External Data Are Important

A model that is adjusted extensively to reproduce a particular dataset can appear highly predictive when evaluated against the same observations used during development. Stronger evidence comes from testing predictions against data that were not used to construct or optimize the model.

This is especially important when PBPK models are used for extrapolation.

DatasetRoleInterpretation
Development dataConstruct or parameterize the modelCan support model development but is not independent evidence of external predictive performance.
Verification dataTest implementationAddresses mathematical and computational correctness.
Qualification dataEvaluate intended-use performanceTests whether the model can reproduce relevant known behavior.
External dataChallenge predictionsProvides evidence beyond the datasets used for model construction.

External evaluation is particularly valuable when the intended application involves a new dose, formulation, population, route, or physiological condition.

14 · Uncertainty

14. Qualification Is More Than Point Prediction

PBPK predictions are affected by uncertainty in drug-specific parameters, physiological inputs, population variability, model structure, and experimental measurements.

Suppose a model predicts exposure as:

$$ Y=f(\boldsymbol{\theta},\boldsymbol{P}) $$

where \(\boldsymbol{\theta}\) represents drug-specific parameters and \(\boldsymbol{P}\) represents physiological inputs.

Uncertainty in either set of inputs can propagate into uncertainty in the predicted outcome.

Useful approaches include:

  • Sensitivity analysis: identify parameters that have the greatest influence on the prediction.
  • Parameter uncertainty analysis: evaluate the effect of uncertainty in measured or estimated parameters.
  • Population simulation: represent variability in relevant physiological and demographic characteristics.
  • Scenario analysis: evaluate plausible alternative assumptions.
  • Model-structure sensitivity: determine whether important conclusions depend strongly on a particular structural assumption.
Why this matters: A prediction can appear precise numerically while still being highly uncertain scientifically if an influential parameter or structural assumption is poorly established.
15 · Context of use

15. Qualification Must Match the Intended Use

The phrase intended use is central to PBPK qualification. Consider a model developed from adult healthy-volunteer data.

That model may provide useful evidence for some adult exposure questions. But using it to predict pediatric exposure introduces additional assumptions about physiology, organ size, enzyme expression, renal function, body composition, and potentially developmental changes.

Similarly, a model that adequately predicts a parent drug may not automatically be qualified for a metabolite, transporter-mediated interaction, or formulation-dependent absorption question.

Intended useAdditional evidence that may become important
Adult PKAdult clinical PK data across relevant doses and routes.
Food effectFood-dependent physiology, formulation behavior, and clinical food-effect observations.
Drug-drug interactionMechanistic evidence for perpetrator and victim pathways plus relevant DDI observations.
Renal impairmentRenal function relationships and evidence supporting changes in clearance and physiology.
Hepatic impairmentEvidence supporting changes in hepatic blood flow, enzyme activity, binding, and relevant clearance pathways.
PediatricsDevelopmental physiology, maturation processes, and relevant pediatric observations.
Formulation extrapolationAbsorption, dissolution, permeability, and formulation-specific evidence.
16 · Worked example

16. Worked Example: A Simple Verification and Qualification Assessment

Consider a hypothetical PBPK model developed to predict the systemic exposure of an orally administered drug in healthy adults.

Step 1: Define the intended use

The intended use is to predict adult exposure following oral administration across a range of clinically relevant doses.

Step 2: Verify a simplified elimination component

Suppose the model's systemic elimination component reduces to first-order elimination under a special-case configuration:

$$ \frac{dA}{dt}=-kA $$

With \(A_0=100\) mg and \(k=0.20\ \mathrm{h}^{-1}\), the analytical solution at 5 hours is:

$$ A(5)=100e^{-0.20(5)} $$
$$ A(5)\approx36.79\text{ mg} $$

The numerical PBPK implementation should reproduce approximately 36.79 mg when configured to represent this special case, subject to the numerical tolerance of the solver.

Step 3: Check mass balance

Suppose the initial systemic amount is 100 mg and the numerical simulation reports 36.79 mg remaining at 5 hours. The eliminated amount should therefore be approximately:

$$ A_{\mathrm{elim}}(5)=100-36.79=63.21\text{ mg} $$

The total should be:

$$ 36.79+63.21=100.00\text{ mg} $$

This provides a basic internal consistency check.

Step 4: Compare predictions with observed exposure

Suppose an external clinical study reports an observed AUC of 1000 mg·h/L and the PBPK model predicts 920 mg·h/L.

$$ R_{\mathrm{AUC}}=\frac{920}{1000}=0.92 $$

The prediction is therefore 8% below the observed value.

Step 5: Examine Cmax

Suppose the observed Cmax is 50 mg/L and the model predicts 56 mg/L.

$$ R_{C_{\max}}=\frac{56}{50}=1.12 $$

The model therefore overpredicts Cmax by 12% in this example.

Step 6: Interpret the evidence

The verification results suggest that the simplified implementation behaves as expected and conserves mass. The external prediction results provide evidence about predictive performance, but they do not by themselves establish qualification for every possible use.

For a qualification assessment, the analyst would examine the broader evidence: multiple relevant studies, doses, routes, populations, PK endpoints, model assumptions, sensitivity analyses, and the scientific context of the intended use.

Lesson from the example: Verification answers "Did we implement the model correctly?" Predictive evaluation answers "How well does it reproduce relevant observations?" Qualification asks the broader question: "Is the total evidence sufficient to support this model for the intended use?"
17 · Acceptance criteria

17. How Should Model Acceptance Criteria Be Defined?

Acceptance criteria should be established in relation to the scientific purpose rather than selected solely because a particular threshold is convenient.

Possible criteria may address:

  • Prediction ratios for AUC and Cmax.
  • Coverage of observed concentration-time profiles.
  • Bias across dose levels.
  • Performance across different studies.
  • Performance across relevant subpopulations.
  • Ability to reproduce known drug-drug interaction effects.
  • Preservation of physiological and mass-balance constraints.
  • Robustness to reasonable changes in uncertain parameters.

Some regulatory reviews have used numerical prediction criteria for particular applications. For example, FDA review documents have included cases in which predicted-to-observed AUC and Cmax ratios were compared with predefined ranges. Such criteria are examples of application-specific model evaluation and should not be interpreted as a universal acceptance rule for all PBPK applications.

Good practice: define the performance criteria before reviewing the final predictive results whenever practical. This reduces the risk of selecting an acceptance rule after seeing the model's performance.
18 · Sensitivity analysis

18. Sensitivity Analysis and Model Qualification

Sensitivity analysis asks how strongly a prediction changes when an input parameter changes.

A simple local sensitivity measure can be expressed as:

$$ S_i=\frac{\partial Y}{\partial \theta_i} $$

where \(Y\) is the model output and \(\theta_i\) is an input parameter.

A normalized sensitivity can be written as:

$$ S_i^{*}= \frac{\partial Y}{\partial \theta_i} \frac{\theta_i}{Y} $$

High sensitivity means that uncertainty in that parameter may have a substantial effect on the prediction.

For example, if a PBPK model predicts oral exposure and is highly sensitive to intestinal permeability, then the evidence supporting the permeability estimate becomes particularly important to qualification for that application.

Sensitivity analysis therefore helps connect parameter evidence with prediction reliability.

19 · Model evolution

19. What Happens When the Model Changes?

PBPK models often evolve. New clinical data may reveal a missing pathway, a new transporter mechanism may be incorporated, or a software platform may introduce a revised physiological database or numerical solver.

Model changes should be documented rather than treated as invisible technical updates.

ChangePotential consequenceUseful response
New parameter valuePredictions may shiftDocument source and sensitivity.
New physiological databasePopulation predictions may changeCompare important outputs before and after the change.
New mechanistic pathwayModel structure changesRe-evaluate relevant verification and predictive evidence.
Software version changeNumerical or library behavior may changeDocument version differences and assess impact.
Optimization of parametersFit may improve but external performance may changeClearly identify optimized parameters and evaluate independent data.

The EMA guideline specifically emphasizes documenting differences between platform versions and justifying whether qualification established for one version can be extended to a later version.

20 · Regulatory reporting

20. What Should a PBPK Qualification Report Contain?

Regulatory submissions should allow reviewers to understand what was modeled, why it was modeled, what data were used, what assumptions were made, and how predictive performance was evaluated.

FDA's PBPK guidance recommends organizing PBPK submission materials into six broad sections:

  1. Executive Summary
  2. Introduction
  3. Materials and Methods
  4. Results
  5. Discussion
  6. Appendices

For verification and qualification specifically, the documentation should make the following information clear:

  • Model structure and equations.
  • Software and platform version.
  • Drug-specific parameters and their sources.
  • Physiological assumptions and population definitions.
  • Model modifications from default platform settings.
  • Numerical methods and solver settings where relevant.
  • Verification tests.
  • Datasets used for model development and evaluation.
  • Predicted and observed PK metrics.
  • Graphical comparisons.
  • Acceptance criteria and their justification.
  • Sensitivity and uncertainty analyses.
  • Known limitations.
  • Specific intended use and regulatory question.
Documentation principle: A reviewer should be able to distinguish information that was measured, information that was assumed, information that was estimated, and information that was predicted by the model.
21 · Traceability

21. Traceability From Input to Decision

A strong PBPK workflow maintains traceability from source data to model input to prediction to scientific conclusion.

Evidence clinical + in vitro Inputs parameters + physiology Model PBPK simulation Decision interpretation + use Each arrow should be scientifically explainable and reproducible.

Traceability helps distinguish measured evidence from assumptions and model-based predictions.

This becomes particularly important when a PBPK model is used in a regulatory setting, because apparently small changes to an input parameter can affect downstream predictions.

22 · Common mistakes

22. Common Mistakes in PBPK Verification and Qualification

1. Treating a good visual fit as proof of qualification

A concentration-time overlay can look excellent while important mechanistic assumptions remain unsupported.

2. Using the same data for optimization and evaluation

Agreement with development data is not equivalent to independent predictive performance.

3. Ignoring units

PBPK models contain many interacting quantities, making unit errors especially dangerous.

4. Treating software verification as biological validation

A solver can correctly implement the specified equations even if the biological model itself is inadequate for the intended application.

5. Changing parameters without documenting the change

Unrecorded modifications make it difficult to reproduce results and determine whether previous qualification evidence still applies.

6. Applying qualification beyond its scope

Evidence supporting adult PK does not automatically establish predictive performance in children, organ impairment, or a drug-drug interaction setting.

7. Relying on a universal prediction threshold

A numerical criterion may be useful in a particular context, but predictive performance should be interpreted in relation to the intended use and consequences of error.

8. Ignoring uncertainty

Point predictions can conceal substantial uncertainty in drug-specific parameters, physiology, and model structure.

23 · Practical workflow

23. A Practical PBPK Verification and Qualification Workflow

  1. Define the intended use. State exactly what scientific or regulatory question the PBPK model is expected to address.
  2. Document the model structure. Identify compartments, organs, pathways, equations, assumptions, and population definitions.
  3. Establish input provenance. Record the source, units, and rationale for important drug and physiological parameters.
  4. Verify the implementation. Test equations, units, mass balance, flow balance, boundary conditions, limiting cases, and numerical behavior.
  5. Evaluate known clinical behavior. Compare simulations with relevant observed PK data.
  6. Use external data where possible. Challenge the model with data that were not used to optimize its key parameters.
  7. Assess predictive performance. Examine concentration-time profiles and summary metrics such as AUC and Cmax.
  8. Perform sensitivity and uncertainty analyses. Identify assumptions that materially influence the intended-use prediction.
  9. Assess applicability. Determine whether the model's evidence covers the target population, dose, route, formulation, and mechanism.
  10. Define qualification boundaries. Clearly state what the evidence supports and what remains outside the model's demonstrated scope.
  11. Document model changes. Record software versions, parameter updates, structural changes, and their potential consequences.
  12. Prepare a transparent report. Make the model, inputs, evidence, predictions, limitations, and intended use traceable to their sources.
A useful mental model: verification establishes technical correctness; predictive evaluation establishes performance against evidence; qualification establishes fitness for a defined purpose.

24. Key Takeaways

  • PBPK verification and qualification address different but connected questions about a model.
  • Verification focuses on whether the mathematical and computational implementation is correct.
  • Important verification checks include equations, units, mass balance, blood-flow balance, limiting cases, boundary conditions, and numerical accuracy.
  • A verified model is not automatically qualified for every scientific or regulatory application.
  • Qualification is linked to an intended use. The evidence required depends on the question the model is expected to answer.
  • Predictive performance should be evaluated against relevant observed data using both graphical and numerical comparisons.
  • External data provide stronger evidence of predictive performance than data used exclusively for model development or optimization.
  • AUC, Cmax, concentration-time profiles, and other PK endpoints can all contribute to predictive-performance evaluation.
  • There is no universal numerical acceptance criterion that automatically qualifies every PBPK model for every purpose.
  • Sensitivity and uncertainty analyses help determine whether important predictions depend strongly on uncertain parameters or assumptions.
  • Software versions, parameter changes, physiological databases, and structural modifications should be documented and assessed for their impact on qualification.
  • Regulatory reporting should clearly distinguish observed information, assumptions, estimated parameters, and model-based predictions.
  • A strong qualification argument is traceable from source evidence through model inputs and simulations to the final scientific or regulatory conclusion.
Next step

Where to Go Next

A natural progression is to examine PBPK model verification in greater technical detail, including ODE verification, mass-balance testing, sensitivity analysis, numerical solver assessment, and verification of specific mechanistic components such as hepatic clearance, renal clearance, intestinal absorption, enzymes, and transporters.

From there, the next step is to study PBPK model qualification for specific applications, including drug-drug interactions, food effects, pediatric extrapolation, hepatic impairment, renal impairment, and formulation-related questions.

For regulatory applications, the FDA's PBPK guidance and the EMA guideline on reporting PBPK modelling and simulation provide useful frameworks for understanding what should be documented and how PBPK evidence can be presented.

References

References

  1. U.S. Food and Drug Administration. Physiologically Based Pharmacokinetic Analyses — Format and Content Guidance for Industry. September 2018. FDA guidance page.
  2. European Medicines Agency. Guideline on the Reporting of Physiologically Based Pharmacokinetic (PBPK) Modelling and Simulation. EMA/CHMP/458101/2016. Effective July 1, 2019. EMA scientific guideline.
  3. European Medicines Agency. Guideline on the Reporting of Physiologically Based Pharmacokinetic (PBPK) Modelling and Simulation. The guideline discusses qualification, predictive performance, model verification, mass-balance and blood-flow checks, model modifications, and platform-version changes. EMA guideline PDF.
  4. U.S. Food and Drug Administration. FDA PBPK Program. The program describes PBPK models as frameworks integrating drug and system information and provides regulatory context for PBPK modeling and simulation. FDA PBPK Program.
Regulatory note: FDA and EMA guidance documents describe regulatory expectations and recommendations rather than a universal mathematical recipe for PBPK qualification. The appropriate evidence depends on the model, drug, population, intended use, and regulatory question.
← Back to Pharmacokinetics Tutorials