A differentiable radiation therapy dose calculation engine for automated treatment planning, built on PyTorch.
PyDoseRT implements a physics-based pencil beam convolution model with full gradient support, enabling gradient-based optimization of radiation therapy treatment plans. The engine is designed for researchers and medical physicists developing automated treatment planning algorithms.
- Fully Differentiable: All operations support automatic differentiation for gradient-based optimization
- Physics-Based Modeling: Pencil beam convolution with tissue heterogeneity, scatter, and penumbra effects
- DICOM Integration: Native support for CT, RTDOSE, RTPLAN, and RTSTRUCT files
- Load existing treatment plans from TPS systems
- Import patient CT scans and structure sets
- Validate calculated dose against reference RTDOSE
- GPU Accelerated: CUDA-optimized computations for fast dose calculations
- Sequential processing mode for memory-efficient computation
- Parallel processing for maximum speed
- Treatment Modalities: Support for VMAT (Volumetric Modulated Arc Therapy), IMRT, and static fields
- Clinical Validation:
- Gamma index analysis (2%/2mm, 3%/3mm)
- DVH constraint evaluation
- Comparison with TPS dose distributions
- Gradient-Based Optimization: Optimize MLC leaf positions and monitor units directly
- Calibration System: Ensures accurate absolute dose at reference conditions
For getting started, we have collected some example data and workflows using PyDoseRT in different scenarios:
- Dose calculation from a DICOM RTPLAN
- Machine parameter optimization using gradient descent
- PyDoseRT in a deep learning model
- Water phantom evaluations
- Pencil beam kernel visualization
- Python 3.11, 3.12, or 3.13
- CUDA-capable GPU (recommended, but CPU supported)
- Linux, macOS, or Windows
The latest stable release of PyDoseRT is available through pip, and it can be installed by running:
pip install pydosertPyDoseRT is currently under active development. Install in editable mode to get the latest updates:
# Clone the repository
git clone https://github.com/UMU-DDI/PyDoseRT.git
cd PyDoseRT
# Install in editable/development mode (recommended)
pip install -e .
# Or install with test dependencies
pip install -e ".[test]"The -e flag installs the package in editable mode, which means changes to the source code are immediately reflected without reinstalling. This is recommended for development and staying up-to-date with the latest improvements.
PyDoseRT requires the following key packages:
- PyTorch (≥2.6.0) - Deep learning framework and autodiff
- NumPy (≥1.26.4) - Numerical computing
- SciPy (≥1.11.1) - Scientific computing
- pydicom (≥2.4.4) - DICOM file handling
- SimpleITK (≥2.4.1) - Medical image processing
- (pymedphys (≥0.41.0) - Medical physics utilities only used for gamma pass rate evaluations)
See pyproject.toml for the complete dependency list.
PyDoseRT implements dose calculation as a series of differentiable PyTorch layers that process each beam's contribution:
-
Beam Validation Layer - Validates beam geometry and MLC positions
-
Fluence Map Layer - Converts MLC leaf positions and jaw settings to 2D fluence maps, accounting for:
- Leaf transmission
- Source penumbra (finite source size)
- Head scatter from collimators
-
Fluence Volume Layer - Projects 2D fluence maps into 3D volumes using divergent beam geometry
-
Radiological Depth Layer - Converts CT Hounsfield Units to radiological depth:
- HU-to-density conversion using calibrated lookup tables
- Ray-tracing through divergent beam geometry
- Effective depth calculation for tissue heterogeneity correction
-
Pencil Beam Kernel Layer - Generates depth-dependent dose deposition kernels:
- Primary photon dose component
- Scatter dose with energy spectrum modeling
- Lateral scatter based on radiological depth
- Energy-dependent beam hardening
-
Beam-wise Convolution Layer - Applies pencil beam kernels
-
Beam Rotation Layer - Rotates dose distribution from beam's-eye-view to patient coordinates using trilinear interpolation
-
Accumulation - Sums dose contributions from all control points/beams
The DoseEngine class provides several computation methods:
compute_dose(beam_sequence, density_image)- Computes dose for a beam sequence in parallel (GPU memory intensive)compute_dose(beam_sequence, density_image, beam_chunk_size=N)- Processes beams in gradient-checkpointed chunks ofNto reduce peak memory while preserving gradients. The chunk geometry is cached and reused across calls.beam_chunk_sizecan also be set once on theDoseEngine(...)constructor.calibrate(calibration_mu, original_beam_template)- Calibrates the engine to match expected dose output at reference conditions
After initialization, the engine must be calibrated using a reference beam configuration to ensure accurate absolute dose values.
PyDoseRT/
├── src/pydosert/ # Main source code
│ ├── engine/ # Core dose calculation engine
│ ├── data/ # Data structures and DICOM loaders
│ ├── layers/ # Computation layers (fluence, convolution, etc.)
│ ├── physics/ # Physics models (kernels, attenuation, scatter)
│ ├── geometry/ # Geometric transformations
│ ├── objectives/ # Loss functions and metrics
│ └── utils/ # Utilities and visualization
├── examples/ # Jupyter notebook tutorials
├── scripts/ # Command-line scripts
├── tests/ # Test suite
│ ├── unittests/ # Unit tests
│ ├── benchmarks/ # Performance tests
│ └── smoketests/ # Integration tests
└── pyproject.toml # Package configuration
PyDoseRT includes preset configurations for common linear accelerators:
TODO: Offer meaningful template
- Generic configurations - Customizable templates
You can create custom machine configurations by providing:
- MLC geometry (leaf widths, positions)
- Source characteristics (SSD, energy)
- Beam quality parameters (TPR 20/10)
- Collimation system parameters
The dose calculation uses a parameterized convolution method based on Nyholm et. al. 2006.
@article{Nyholm2006,
title = {Photon pencil kernel parameterisation based on beam quality index},
author = {Tufve Nyholm and Jörgen Olofsson and Anders Ahnesjö and Mikael Karlsson},
doi = {10.1016/j.radonc.2006.02.002},
journal = {Radiotherapy and Oncology},
year = {2006}
}For a deeper understanding of the kernel computations, run examples/kernel.ipynb.
CT Hounsfield Units (HU) are converted to radiological depth using:
- Linear density-HU lookup tables
- Ray-tracing through divergent beam geometry
- Effective depth scaling for each beamlet
- MLC scatter and transmission - Leaf leakage and interleaf effects
- Head scatter - Collimator-dependent scatter contribution
- Source penumbra - Geometric penumbra from finite source size
- Tongue-and-groove effect - MLC interdigitation
Explore the examples/ directory for interactive tutorials:
phantom.ipynb- Basic dose calculations on water phantoms and simple geometriesdirect_optimization.ipynb- Treatment plan optimization workflows with gradient descentkernels.ipynb- Understanding pencil beam kernel computation and physics modelsrtplan_test_1arc.ipynb- Loading and validating DICOM RT plans (VMAT example)
Run the test suite:
# Run all tests
pytest
# Run with coverage
pytest --cov=pydosert
# Run benchmarks
pytest tests/benchmarks/ --benchmark-only- GPU Acceleration: 10-100x speedup vs CPU for typical cases
- Memory Efficiency: Supports cropping to field-of-view and sequential beam processing
- Mixed Precision: FP16/FP32 support for memory-constrained scenarios
- Batch Processing: Multiple patients/beams in parallel
Typical performance (NVIDIA A100):
| Operation | Time [s] |
|---|---|
| Single beam dose calculation | 0.221 |
| VMAT prediction step (forward) | 2.051 |
| VMAT optimization step (forward + backward) | 5.102 |
- Pencil beam model: Less accurate than Monte Carlo for high tissue heterogeneity
- Photon therapy only: Electron and proton therapy not currently supported
- Simplified MLC model: Does not include all vendor-specific details
- Research tool: Not clinically validated for treatment planning
If you use PyDoseRT in your research, please cite:
@article{Simko2025,
title={A physics-informed, plug-and-play dose engine for gradient-based radiotherapy treatment planning},
author={Attila Simkó and Matthias Kronsteiner and Simon Glatzer and Minh Vu and Josef A. Lundman and Joakim Jonsson and Jörgen Olofsson and Kristina Sandgren and Wolfgang Lechner and Dietmar Georg and Tommy Löfstedt and Tufve Nyholm and Anders Garpebring and Gerd Heilemann},
year={2025},
url={https://arxiv.org/abs/2512.18863},
}PyDoseRT was developed in collaboration between Umeå University (Department of Diagnostics and Intervention) and the Medical University of Vienna (Department of Radiation Oncology).
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes with tests
- Run the test suite (
pytest) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
For questions, issues, or feature requests:
Disclaimer: PyDoseRT is a research tool and has not been clinically validated. It should not be used for clinical treatment planning without proper validation and regulatory approval.