A differentiable radiation therapy dose calculation engine for automated treatment planning, built on PyTorch.
Project description
PyDoseRT
A differentiable radiation therapy dose calculation engine for automated treatment planning, built on PyTorch.
Overview
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.
Key Features
- 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
Quick start
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
Installation
Requirements
- Python 3.11, 3.12, or 3.13
- CUDA-capable GPU (recommended, but CPU supported)
- Linux, macOS, or Windows
Install through pip
The latest stable release of PyDoseRT is available through pip, and it can be installed by running:
pip install pydosert
Install from Source
PyDoseRT 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.
Dependencies
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.
Architecture
Dose Calculation Pipeline
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
Key Methods
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.
Repository Structure
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
Machine Configurations
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
Physics Model
Pencil Beam Convolution
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.
Tissue Heterogeneity
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
Additional Effects
- 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
Examples
Jupyter Notebooks
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)
Testing
Run the test suite:
# Run all tests
pytest
# Run with coverage
pytest --cov=pydosert
# Run benchmarks
pytest tests/benchmarks/ --benchmark-only
Performance
- 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 |
Limitations
- 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
Citation
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).
Contributing
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
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydosert-1.4.0.tar.gz.
File metadata
- Download URL: pydosert-1.4.0.tar.gz
- Upload date:
- Size: 97.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04d8b8caa8ba897e29f566ea29c0e0e33b37661453d213cf9a9a59210f1663ff
|
|
| MD5 |
d2d458f6f707eb7fb8f16f29ca86e27e
|
|
| BLAKE2b-256 |
0a3b31826fd2819c3a79a71b1cba5de21bfa13120ce9381c779fd3d0fe6012e7
|
Provenance
The following attestation bundles were made for pydosert-1.4.0.tar.gz:
Publisher:
publish.yml on UMU-DDI/PyDoseRT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pydosert-1.4.0.tar.gz -
Subject digest:
04d8b8caa8ba897e29f566ea29c0e0e33b37661453d213cf9a9a59210f1663ff - Sigstore transparency entry: 1602065890
- Sigstore integration time:
-
Permalink:
UMU-DDI/PyDoseRT@32a759ecf01b94ef2a673dfb4347629e69fa9651 -
Branch / Tag:
refs/tags/v1.4.0 - Owner: https://github.com/UMU-DDI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@32a759ecf01b94ef2a673dfb4347629e69fa9651 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pydosert-1.4.0-py3-none-any.whl.
File metadata
- Download URL: pydosert-1.4.0-py3-none-any.whl
- Upload date:
- Size: 105.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfebd4b8f65404a4200eb46c95accda07f1080e4ca6070dcf14e717609bc12ba
|
|
| MD5 |
409f68e0362f59e5cef56b40b62f1292
|
|
| BLAKE2b-256 |
51923cf5006f3a78786e5708620dd8b173c3d7a5a24ab940ad2aa9d1958bcfd4
|
Provenance
The following attestation bundles were made for pydosert-1.4.0-py3-none-any.whl:
Publisher:
publish.yml on UMU-DDI/PyDoseRT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pydosert-1.4.0-py3-none-any.whl -
Subject digest:
bfebd4b8f65404a4200eb46c95accda07f1080e4ca6070dcf14e717609bc12ba - Sigstore transparency entry: 1602065892
- Sigstore integration time:
-
Permalink:
UMU-DDI/PyDoseRT@32a759ecf01b94ef2a673dfb4347629e69fa9651 -
Branch / Tag:
refs/tags/v1.4.0 - Owner: https://github.com/UMU-DDI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@32a759ecf01b94ef2a673dfb4347629e69fa9651 -
Trigger Event:
push
-
Statement type: