Skip to content

UMU-DDI/PyDoseRT

Repository files navigation

PyDoseRT

A differentiable radiation therapy dose calculation engine for automated treatment planning, built on PyTorch.

Python License 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:

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:

  1. Beam Validation Layer - Validates beam geometry and MLC positions

  2. 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
  3. Fluence Volume Layer - Projects 2D fluence maps into 3D volumes using divergent beam geometry

  4. 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
  5. 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
  6. Beam-wise Convolution Layer - Applies pencil beam kernels

  7. Beam Rotation Layer - Rotates dose distribution from beam's-eye-view to patient coordinates using trilinear interpolation

  8. 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 of N to reduce peak memory while preserving gradients. The chunk geometry is cached and reused across calls. beam_chunk_size can also be set once on the DoseEngine(...) 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 geometries
  • direct_optimization.ipynb - Treatment plan optimization workflows with gradient descent
  • kernels.ipynb - Understanding pencil beam kernel computation and physics models
  • rtplan_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:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes with tests
  4. Run the test suite (pytest)
  5. Commit your changes (git commit -m 'Add amazing feature')
  6. Push to the branch (git push origin feature/amazing-feature)
  7. 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:

  • Open an issue on GitHub
  • Contact the authors via email

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages