Tc99mGeneratorBreakthroughMo99Checker
Tc-99m Generator Breakthrough Mo-99 Checker
Utility description: Tc-99m Generator Breakthrough Mo-99 Checker
Tc-99m Generator Breakthrough Mo-99 Checker — Control of Molybdenum-99 breakthrough from generator
ℹ️ Utility checks critical parameters of Tc-99m generator eluate:
• Mo-99 breakthrough (<0.15 kBq per 1 MBq Tc-99m) — CRITICAL!
• Aluminum oxide (<10 ppm)
• pH (4.5-7.5)
• Endotoxins (<175 EU/mL)
• Sterility
• Generator age (≤14 days)
⚠️ CRITICAL: Mo-99 breakthrough >0.15 kBq/MBq → increased radiation dose to patient!
Mo-99 (T½=66 h) creates long-term radiation background without diagnostic benefit.
Aluminum >10 ppm can cause red blood cell agglutination during blood cell labeling.
Usage:
Tc99mGeneratorBreakthroughMo99Checker.exe → demo mode (console output)
Tc99mGeneratorBreakthroughMo99Checker.exe input.csv output.json → evaluate your data
Input format:
BatchNumber,Tc99mActivityMBq,Mo99ActivityKBq,AluminumOxidePPM,pH,EndotoxinsEU_per_mL,SterilityTest,GeneratorAgeDays,EluateVolumeML
Example (sterility: 0=sterile, 1=contaminated):
GEN-Tc99m-2026-001,20000.0,1.5,2.0,5.5,30.0,0,5,10.0
— WHY IS THIS NEEDED?
Mo-99/Tc-99m generators are the primary source of Tc-99m for nuclear medicine:
• Mo-99 (T½=66 hours) decays to form Tc-99m (T½=6 hours)
• Tc-99m is eluted with saline from an aluminum oxide column
• Daily quality control of eluate is mandatory before use in preparations
• Breakthrough of parent isotope (Mo-99) or column material (Al) is unacceptable
⚠️ CRITICAL:
• Mo-99 breakthrough ≤0.15 kBq per 1 MBq Tc-99m (USP/Ph. Eur.) — Mo-99 has a long half-life (66 h) and creates unnecessary radiation burden to the patient without participating in diagnostics. Also, Mo-99 decays forming other isotopes that create background on images.
• Aluminum oxide <10 ppm — excess Al³⁺ is leached from the column. When labeling red or white blood cells, aluminum causes their agglutination (clumping), leading to lung embolism upon injection.
• pH 4.5-7.5 — ensures compatibility with physiological media and stability of subsequent complexes.
• Endotoxins <175 EU/mL — critical for all injectable forms.
• Sterility — MANDATORY, as eluate is used to prepare parenteral drugs.
• Generator age ≤14 days — after this period, Mo-99 activity drops, and the risk of breakthrough and column degradation increases.
Key features:
• Calculation of Mo-99/Tc-99m activity ratio — main safety parameter
• Aluminum breakthrough control — critical for blood cell labeling procedures
• Generator age monitoring to predict breakthrough risk
• Comprehensive microbiological purity check of eluate
• Compliance with USP <821> and Ph. Eur. requirements
Critical parameters:
• Mo-99/Tc-99m ratio: <0.15 kBq/MBq
• Aluminum oxide: <10.0 ppm
• pH: 4.5–7.5
• Endotoxins: <175 EU/mL
• Sterility: no microbial growth
• Generator age: ≤14 days
💡 Usage tips:
1. Mo-99 breakthrough is measured using a lead container ("lead pot") which absorbs Tc-99m gamma rays (140 keV) but passes higher-energy Mo-99 photons (740, 780 keV).
2. Aluminum is determined by colorimetric method using aurintricarboxylic acid.
3. Breakthrough testing must be performed EVERY day before the first elution or before using the eluate for preparation.
4. If Mo-99 breakthrough exceeds the limit, the generator must be taken out of service and returned to the supplier.
5. High aluminum levels often correlate with improper elution technique (too rapid introduction of eluent).
⚠️ Note: Mo-99 breakthrough is the most dangerous radionuclidic contamination in Tc-99m eluate. Since Mo-99 has a half-life of 66 hours, it remains in the patient's body significantly longer than Tc-99m, increasing the effective radiation dose without any diagnostic benefit. Control of this parameter is a legal requirement in all countries.input.csv
BatchNumber,Tc99mActivityMBq,Mo99ActivityKBq,AluminumOxidePPM,pH,EndotoxinsEU_per_mL,SterilityTest,GeneratorAgeDays,EluateVolumeML GEN-Tc99m-2026-001,20000.0,1.5,2.0,5.5,30.0,0,5,10.0 GEN-Tc99m-2026-002,15000.0,2.5,8.0,6.0,100.0,0,10,10.0 GEN-Tc99m-2026-003,10000.0,20.0,12.0,4.0,200.0,1,15,10.0
URS & FS — user requirements and functional specification
URS — User Requirements Specification
- The utility shall accept
input.csvwith the headers defined by the data contract. - Before calculation, the utility shall detect missing fields, type errors and invalid values.
- The utility shall deterministically perform “Tc-99m Generator Breakthrough Mo-99 Checker”.
- The checks shall include the following criteria: Mo-99/Tc-99m ratio: <0.15 kBq/MBq; Aluminum oxide: <10.0 ppm; pH: 4.5–7.5; Endotoxins: <175 EU/mL; Sterility: no microbial growth; Generator age: ≤14 days.
- Each processed record shall receive a clear PASS, WARNING or FAIL status with the reason.
- The result shall be written to
output.jsonand retain the source values used for the checks. - The result supports equipment or measurement-system QC and requires review by the responsible specialist.
FS — Functional Specification
- Run
Tc99mGeneratorBreakthroughMo99Checker.exein demo mode or withinput.csv output.jsonarguments. - Read UTF-8 CSV and validate the header and mandatory columns.
- Convert values to the expected types and validate admissibility.
- Perform the calculation or rule checks for “Tc-99m Generator Breakthrough Mo-99 Checker”.
- Create individual check results and the overall status.
- Write machine-readable JSON; invalid input shall not appear as a successful result.
input.csv example
BatchNumber,Tc99mActivityMBq,Mo99ActivityKBq,AluminumOxidePPM,pH,EndotoxinsEU_per_mL,SterilityTest,GeneratorAgeDays,EluateVolumeML GEN-Tc99m-2026-001,20000.0,1.5,2.0,5.5,30.0,0,5,10.0
Minimum output.json structure
{
"utility": "Tc99mGeneratorBreakthroughMo99Checker",
"source": "input.csv",
"status": "PASS|WARNING|FAIL",
"checks": [
{
"parameter": "example",
"status": "PASS",
"message": "criterion satisfied"
}
],
"errors": []
}
Before operational use
- Limits and coefficients shall be approved before operational use.
- After an executable or rule change, repeat the affected tests.
- Retain the source CSV and JSON result together in the controlled process.
Included in packages
Radiopharmaceutical Diagnostics and Therapy QC Suite
36 utilities for clinically oriented radiopharmaceutical and workflow quality control: PET/SPECT tracers, the Tc-99m renal workflow, PRRT, PSMA therapy, targeted alpha therapy, radioembolization, bone-pain palliation, immuno-PET and generator-based radionuclide control.
OpenRPH isotope family: Tc-99m
Tc-99m radiopharmaceuticals, kit preparation, generator control, SPECT workflows and calculation utilities.
OpenRPH organ/system: blood, cells and marrow
WBC/RBC/platelet labelling, blood volume, survival, blood-pool and cellular release workflows.
OpenRPH organ/system: pulmonary and ventilation
Lung perfusion, MAA, V/Q, aerosol, xenon ventilation, shunt and pulmonary dosimetry.
OpenRPH organ/system: renal and urinary
Renography, GFR/ERPF, renal uptake, DMSA/MAG3/DTPA and bladder-related workflows.
OpenRPH Tc-99m Renal Radiopharmaceutical and Imaging QC Suite
16 utilities covering the Tc-99m renal workflow: generator eluate and Mo-99 breakthrough, Sn(II), labeling stoichiometry and pH, radiochemical purity and stability of MAG3, DTPA, DMSA(III) and glucoheptonate, gamma-camera uniformity, renal uptake and plasma clearance, bladder voiding efficiency, patient dosimetry and decay-in-storage waste management.
OpenRPH use case: Tc-99m renal and nephrourology
Renal radiopharmaceuticals and calculation workflows: MAG3, DTPA, DMSA, glucoheptonate, generator Tc-99m, dynamic renography, GFR/ERPF and dosimetry.
OpenRPH workflow: generators and isotope purity
Generator eluate, breakthrough, radionuclidic purity, isotope mix and starting radionuclides.
OpenRPH workflow: imaging QC and quantitative interpretation
Acquisition, uptake, clearance, perfusion, transit, ejection fraction, segmentation and quantitative imaging.
OpenRPH workflow: product release QC
Assay, purity, sterility, endotoxins, pH, impurities, appearance and batch-release checks.
OpenRPH workflow: stability, storage, decay and waste
Kinetic stability, shelf life, decay correction, expiry, storage, trend and radioactive waste.
OpenRPH workflow: synthesis, labelling and kit reconstitution
Radiolabelling, synthesis, chelation, reducing agent, pH/stoichiometry and kit preparation.
Open