Semisolid IVRT Quality Checker — In Vitro Release Testing for Semisolid Dosage Forms
ℹ️ Utility assesses the release kinetics of drug substances from ointments, creams, and gels according to USP <1724>:
• Release Rate (must match reference product, typically 90-110%)
• Method Precision (RSD ≤ 10% for a series of 6 cells)
• Linearity of Higuchi plot (R² ≥ 0.98)
• Lag Time (≤ 30 min)
• Membrane Integrity (Critical System Suitability Parameter)
⚠️ CRITICAL: Membrane integrity failure completely invalidates test results!
Non-linearity of the release plot indicates instability of the product structure or diffusion issues.
Usage:
SemisolidIVRTQualityChecker.exe → demo mode (console output)
SemisolidIVRTQualityChecker.exe input.csv output.json → evaluate your data
Input format:
BatchNumber,ProductName,ReleaseRateMcgPerCm2PerHr,RSD_Percent,LagTimeMinutes,CorrelationCoefficientR2,TotalReleasedPercent,MembraneIntegrityCheck
Example (Membrane: 1.0=Pass, 0.0=Fail):
CREAM-2026-IVRT-001,Diclofenac Gel 1%,45.2,4.5,12.0,0.995,45.0,1.0
— WHY IS THIS NEEDED?
In Vitro Release Testing (IVRT) is a key quality control method for semisolid dosage forms (ointments, creams, gels).
It demonstrates bioequivalence of the product and stability of its manufacturing process.
According to FDA and USP guidelines, IVRT is used to confirm that changes in composition or process do not affect the availability of the active ingredient.
⚠️ CRITICAL:
• Release Rate — main criterion for comparison with reference product (Q1/Q2/Q3 sameness).
• RSD ≤ 10% — ensures reproducibility of the method between Franz cell units.
• Linearity (R² ≥ 0.98) — confirms that the process is diffusion-controlled (Higuchi kinetics).
• Membrane Integrity — if the membrane is damaged, data is invalid.
• Sink Conditions — 20-80% of the drug should be released for correct kinetic calculation.
Key features:
• Assessment of Higuchi kinetic parameters
• System Suitability Testing (SST) control via membrane integrity and linearity
• Precision check (RSD)
• Generation of reports for regulatory dossiers and LIMS LabWare
• Support for USP <1724> and FDA Guidance for Topical Dermatological Products requirements
Critical parameters:
• Release Rate: 90-110% of reference (or specified range)
• RSD: ≤ 10.0%
• Lag Time: ≤ 30 min
• Coefficient of Determination (R²): ≥ 0.98
• Total Release: 20-80%
• Membrane Integrity: Pass
💡 Usage tips:
1. Apparatus: Use vertical or horizontal Franz cells with controlled temperature (32±1°C for skin).
2. Membrane: Use synthetic membranes (e.g., PVDF or cellulose) inert to the product.
3. Degassing: Receptor solution must be degassed to prevent bubble formation under the membrane.
4. Sampling: Automated sampling is preferred to minimize errors and maintain volume.
5. Statistics: For new drug registration, comparison with a reference sample is required (f2 factor or confidence intervals).
⚠️ Note: IVRT does not measure skin penetration (which is done by IVPT), but it correlates with it and is the standard for quality control of semisolid manufacturing.input.csv
BatchNumber,ProductName,ReleaseRateMcgPerCm2PerHr,RSD_Percent,LagTimeMinutes,CorrelationCoefficientR2,TotalReleasedPercent,MembraneIntegrityCheck CREAM-2026-IVRT-001,Diclofenac Sodium Gel 1%,45.2,4.5,12.0,0.995,45.0,1.0 GEL-2026-IVRT-002,Acyclovir Cream 5%,38.0,12.5,45.0,0.950,15.0,1.0 OINT-2026-IVRT-003,Mupirocin Ointment 2%,52.0,3.0,10.0,0.998,60.0,0.0
URS & FS — Semisolid IVRT
This document describes the user requirements and functional specification for SemisolidIVRTQualityChecker. The utility is intended for QC laboratory use as a rule-based check of data prepared from an instrument, LIMS, ELN, MES or an approved input.csv.
URS — User Requirements Specification
| ID | Requirement | Criticality | Acceptance criterion |
|---|---|---|---|
| URS-001 | The utility shall accept input.csv with approved columns: BatchNumber, ProductName, ReleaseRateMcgPerCm2PerHr, RSD_Percent, LagTimeMinutes, CorrelationCoefficientR2, TotalReleasedPercent, MembraneIntegrityCheck. | High | The CSV file is processed without manual header editing. |
| URS-002 | The utility shall perform deterministic evaluation for “Semisolid IVRT” without machine learning. | High | The same input data produce the same JSON result. |
| URS-003 | The utility shall validate mandatory fields, numeric formats, flags, ranges and domain plausibility. | High | Schema and conversion errors are explicitly reported. |
| URS-004 | The utility shall generate output.json with PASS / WARNING / FAIL statuses, source values, warnings and failures. | High | The JSON result is suitable for review, deviation investigation and integration. |
| URS-005 | The documentation shall support IQ/OQ/PQ or CSV/CSA verification. | Medium | URS/FS, CSV/JSON contract and test scenarios are supplied with the utility. |
input.csv contract
| # | Field | Sample | Purpose |
|---|---|---|---|
| 1 | BatchNumber | CREAM-2026-IVRT-001 | Input parameter for deterministic QC evaluation. |
| 2 | ProductName | Diclofenac Sodium Gel 1% | Input parameter for deterministic QC evaluation. |
| 3 | ReleaseRateMcgPerCm2PerHr | 45.2 | Input parameter for deterministic QC evaluation. |
| 4 | RSD_Percent | 4.5 | Input parameter for deterministic QC evaluation. |
| 5 | LagTimeMinutes | 12.0 | Input parameter for deterministic QC evaluation. |
| 6 | CorrelationCoefficientR2 | 0.995 | Input parameter for deterministic QC evaluation. |
| 7 | TotalReleasedPercent | 45.0 | Input parameter for deterministic QC evaluation. |
| 8 | MembraneIntegrityCheck | 1.0 | Input parameter for deterministic QC evaluation. |
FS — Functional Specification
| ID | Function | Implementation |
|---|---|---|
| FS-001 | CSV import | Read input.csv; validate header, column count and encoding. |
| FS-002 | Schema validation | Check required fields and permitted input values. |
| FS-003 | Rule engine | Apply domain rules, limits and system suitability/specification checks described in the source utility description. |
| FS-004 | Status aggregation | Produce final status: FAIL for critical failure, WARNING for non-critical deviation, PASS for conformance. |
| FS-005 | JSON export | Write machine-readable output.json for LIMS/ELN/MES and QA/QC review. |
OQ/PQ scenarios
- OQ-001: a valid sample row shall be processed without schema error.
- OQ-002: a missing mandatory column shall produce a schema error.
- OQ-003: a non-numeric value in a numeric field shall produce a conversion error.
- OQ-004: a critical parameter outside the limit shall produce
FAILor a critical finding. - PQ-001: user real batches shall be checked with retention of
input.csv,output.json, utility version and checksum.
Included in packages
LabEx QC Suite
LabEx package for laboratory QC methods: chromatography, spectroscopy, microbiology, sterility, endotoxins, particles, dissolution, water, cleanrooms and sample preparation.
OpenRheumatology QC Suite
QC package for rheumatology: NSAIDs, glucocorticoids, methotrexate, biologics and supporting impurity/potency checks.
Open