Skip to main content

Python toolkit for time-resolved X-ray diffraction simulation and beamline-dependent analysis workflows.

Project description

XRDpy

XRDpy is a Python toolkit for X-ray diffraction (XRD) simulation and analysis, with a particular focus on time-resolved / pump–probe diffraction workflows.

The project name on GitHub and Zenodo is XRDpy. The package is distributed on PyPI as trxrdpy and should be imported in Python as trxrdpy.


Repository

Source code: https://github.com/julioguzmanb/XRDpy

DOI (Zenodo)


Main capabilities

Simulation

  • Polycrystalline XRD simulation
  • Single-crystal diffraction simulation
  • CIF-based crystallographic helpers
  • Plotting utilities for simulated diffraction data
  • A GUI for simulation workflows

Analysis

  • Beamline/facility-specific data handling
  • 2D image reduction and azimuthal integration
  • Standardized generation of 1D xy diffraction patterns
  • Peak fitting workflows
  • Differential analysis workflows
  • Shared utilities for plotting, path handling, and common analysis operations

Package structure

XRDpy/
├── pyproject.toml
├── README.md
├── LICENSE
└── src/
    └── trxrdpy/
        ├── __init__.py
        ├── simulation/
        │   ├── __init__.py
        │   ├── utils.py
        │   ├── geometry.py
        │   ├── diffractometers.py
        │   ├── detector.py
        │   ├── experiment.py
        │   ├── plot.py
        │   ├── sample.py
        │   ├── cif.py
        │   ├── polycrystalline.py
        │   ├── single_crystal.py
        │   ├── gui/
        │   │   ├── __init__.py
        │   │   ├── services/
        │   │   │   ├── __init__.py
        │   │   │   └── simulation_service.py
        │   │   ├── widgets/
        │   │   │   ├── __init__.py
        │   │   │   ├── geometry_panel.py
        │   │   │   └── matrix_rotation_window.py
        │   │   ├── tabs/
        │   │   │   ├── __init__.py
        │   │   │   ├── polycrystalline_tab.py
        │   │   │   └── single_crystal_tab.py
        │   │   ├── state.py
        │   │   └── main_window.py
        └── analysis/
            ├── __init__.py
            ├── common/
            │   ├── __init__.py
            │   ├── paths.py
            │   ├── plot_utils.py
            │   ├── general_utils.py
            │   ├── azimint_utils.py
            │   ├── differential_analysis_utils.py
            │   ├── fitting_utils.py
            │   └── calibration_utils.py
            ├── _shared_2d/
            │   ├── __init__.py
            │   └── azimint.py
            ├── ESRF_ID09/
            │   ├── __init__.py
            │   ├── datared.py
            │   └── azimint.py
            ├── MaxIV_FemtoMAX/
            │   ├── __init__.py
            │   ├── datared_utils.py
            │   ├── datared.py
            │   └── azimint.py
            ├── Spring8_SACLA/
            │   ├── __init__.py
            │   ├── datared.py
            │   ├── azimint.py
            │   └── pbs/
            │       └── parallel_job_sender.sh
            ├── differential_analysis.py
            ├── fitting.py
            ├── calibration.py
            └── gui.py

Installation

From PyPI

pip install trxrdpy

Optional extras:

pip install "trxrdpy[analysis]"
pip install "trxrdpy[gui]"

From source

Clone the repository and install in editable mode:

git clone https://github.com/julioguzmanb/XRDpy.git
cd XRDpy
pip install -e .

Import

import trxrdpy
from trxrdpy import simulation
from trxrdpy import analysis
from trxrdpy.analysis import calibration

More specific imports:

from trxrdpy.analysis import fitting
from trxrdpy.analysis import differential_analysis
from trxrdpy.analysis.MaxIV_FemtoMAX import azimint
from trxrdpy.analysis.Spring8_SACLA import datared

The package currently exposes the following top-level modules through trxrdpy.__init__:

from ./simulation import utils
from ./simulation import experiment
from ./simulation import plot
from ./simulation import sample
from ./simulation import cif
from . import simulation
from . import analysis

Analysis organization

The analysis section is organized into shared utilities, facility-specific workflows, and user-facing APIs.

analysis.common

Facility-independent shared utilities:

  • path handling
  • plotting helpers
  • general helper functions
  • common azimuthal-integration helpers
  • fitting utilities
  • differential-analysis utilities

analysis._shared_2d

Shared 2D-image-based azimuthal-integration workflow.

This layer is currently used by:

  • Max IV FemtoMAX
  • SPring-8 SACLA

analysis.ESRF_ID09

ID09-specific azimuthal-integration workflow.

At ESRF ID09, the route to generate xy files differs from the homogenized 2D-image workflow used elsewhere. The beamline-provided tools and data structure are handled through a dedicated facility-specific implementation.

analysis.MaxIV_FemtoMAX

FemtoMAX-specific analysis entry points.

This section contains:

  • beamline-specific data reduction
  • azimuthal-integration entry points
  • wrappers that preserve the facility-facing public API

analysis.Spring8_SACLA

SACLA-specific analysis entry points.

This section contains:

  • beamline-specific data reduction
  • azimuthal-integration entry points
  • PBS job-submission helper scripts for HPC workflows

User-facing analysis APIs

These modules provide the user-facing analysis layer after xy files are available:

  • analysis.fitting
  • analysis.differential_analysis

Once xy files are created, the downstream fitting and differential-analysis pipeline is shared across facilities.


Facility-specific workflow overview

The analysis pipeline is intentionally split because raw-data handling differs across facilities.

Max IV FemtoMAX

  • Uses facility-specific data reduction
  • Produces homogenized 2D images
  • Reuses the shared 2D azimuthal-integration workflow
  • Then uses the shared downstream analysis pipeline

SPring-8 SACLA

  • Uses facility-specific data reduction
  • Some reduction steps may depend on beamline-specific software, legacy Python environments, VPN access, or HPC job submission
  • Produces homogenized 2D images
  • Reuses the shared 2D azimuthal-integration workflow
  • Then uses the shared downstream analysis pipeline

ESRF ID09

  • Does not use the same 2D homogenization route as FemtoMAX/SACLA
  • Uses a different beamline-specific azimuthal-integration workflow to generate xy files
  • Then uses the same downstream fitting and differential-analysis pipeline

In other words:

  • data reduction differs across facilities
  • xy generation differs for ID09 vs the shared 2D workflow
  • the downstream analysis after xy creation is shared

Notes

  • Some analysis workflows may require facility-specific dependencies that are not part of a standard Python installation.
  • Some SACLA workflows may rely on legacy Python environments and external HPC job submission.
  • The simulation and analysis sections are developed within the same package but target different use cases.
  • The project is published on PyPI as trxrdpy because the xrdpy name is already taken on PyPI.

Citation

If you use XRDpy in academic work, please cite the Zenodo record corresponding to the version you used.

Version-specific citation metadata is available on the Zenodo release page.


License

Creative Commons Attribution 4.0 International (CC BY 4.0). See LICENSE for details.


Author

Julio Guzman-Brambila

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trxrdpy-3.0.0.tar.gz (263.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

trxrdpy-3.0.0-py3-none-any.whl (283.1 kB view details)

Uploaded Python 3

File details

Details for the file trxrdpy-3.0.0.tar.gz.

File metadata

  • Download URL: trxrdpy-3.0.0.tar.gz
  • Upload date:
  • Size: 263.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for trxrdpy-3.0.0.tar.gz
Algorithm Hash digest
SHA256 968edfa0a7509fb389b023c5b11f90ca1c1e287fcaebfbc84ac8e7e5922be568
MD5 6259b61ed521b1c84ee318ac515e2af4
BLAKE2b-256 4376140e6921da4a7f02ee8b2c30d9ab9fd6dc9ae7033dfe32d7a52317c53e3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for trxrdpy-3.0.0.tar.gz:

Publisher: publish.yml on julioguzmanb/XRDpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trxrdpy-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: trxrdpy-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 283.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for trxrdpy-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b79c759306f7441965e3cabdcc5d12d0121d84a0c2f450f606155c2a85875160
MD5 b23f947c1f37514470337cf11ec26f91
BLAKE2b-256 eacff1a8f80d00261b7de3d4ecbc32df97a0f1d0d9feb01bb8e7c1f288c16d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for trxrdpy-3.0.0-py3-none-any.whl:

Publisher: publish.yml on julioguzmanb/XRDpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page