Fast, validated and differentiable Bragg powder diffraction
Project description
BraggCalculator
BraggCalculator is a fast, validated powder X-ray and neutron diffraction engine for ideal periodic crystals. It evaluates reciprocal-space Bragg diffraction with NumPy or optional PyTorch kernels.
The current scientific scope is monochromatic, kinematic powder diffraction. It includes neutral-atom X-ray form factors, coherent elemental neutron scattering lengths, occupancies, isotropic Debye-Waller factors, the standard powder Lorentz or Lorentz-polarization correction, and area-normalized Gaussian profiles. Optional experimental-effect models can add angle-dependent instrument and sample broadening, preferred orientation, background, counting noise, missing channels, and spurious peaks to simulated profiles. These models do not cover diffuse scattering, absorption, anomalous X-ray terms, or instrumental wavelength distributions.
The accompanying paper describes the implementation, validation across the Crystallography Open Database, and CPU/GPU performance: read the ChemRxiv preprint.
Installation
Install the latest release from PyPI:
python -m pip install braggcalculator
Optional dependencies are available as extras:
python -m pip install "braggcalculator[torch]" # Torch/autograd/CUDA backend
python -m pip install "braggcalculator[ase]" # ASE structure input
python -m pip install "braggcalculator[all]" # All optional dependencies
Python 3.12 and 3.13 are supported. To work from a source checkout, use
python -m pip install -e ".[all]".
The API reference documents the public configuration, methods, and result conventions.
Quick start
from braggcalculator import BraggCalculator
calculator = BraggCalculator(mode="xray", wavelength="CuKa1")
calculator.load("structure.cif")
two_theta, integrated_intensity = calculator.line_pattern(scaled=True)
grid, profile = calculator.pattern()
line_pattern() returns the conventional merged powder lines. pattern()
returns an area-normalized Gaussian profile on a regular grid.
reflection_table() provides the corresponding HKLs, d-spacings, Q values,
scattering angles, structure factors, and corrected intensities. The
API reference
documents lower-level reciprocal-point output and the rules for differentiable
lattice changes.
The Q-space API uses inverse angstroms:
q, intensity = calculator.line_pattern(domain="q")
q_grid, profile_q = calculator.pattern(domain="q")
Experimental effects are opt-in and independently configurable:
from braggcalculator import (
BackgroundArtifacts,
NoiseArtifacts,
PeakProfileArtifacts,
SimulationArtifacts,
)
artifacts = SimulationArtifacts(
profile=PeakProfileArtifacts(
model="tch",
caglioti_u=0.002,
caglioti_w=0.004,
crystallite_size_nm=40.0,
microstrain=0.001,
),
background=BackgroundArtifacts(constant=0.01),
noise=NoiseArtifacts(poisson_count_scale=10_000),
seed=7,
)
q_grid, augmented = calculator.pattern(domain="q", artifacts=artifacts)
SimulationArtifacts also supports calibration shifts, Bragg--Brentano
specimen displacement, March--Dollase preferred orientation, amorphous humps,
measured .xy/.xye backgrounds, correlated noise, detector gaps,
saturation, quantization, and unindexed peaks. See the
artifact API
for the component objects, units, sampled-range controls, and background
library format, and the
artifact gallery
for isolated examples of every effect family.
Torch and autograd
Symmetry detection and HKL enumeration are discrete preprocessing operations. Autograd therefore operates on a fixed reflection topology. Rebuild the calculator if a lattice change is large enough that reflections can enter or leave the configured Q range.
from braggcalculator import BraggCalculator
from braggcalculator.backends import TorchBackend
calculator = BraggCalculator(backend=TorchBackend(device="cpu")).load(
"structure.cif"
)
parameters = calculator.tensor_parameters(
requires_grad=["lattice", "frac_coords", "occupancies", "b_iso"]
)
grid, profile = calculator.pattern(parameters=parameters)
loss = profile.square().sum()
loss.backward()
Use TorchBackend(device="cuda") with a CUDA-enabled PyTorch installation to
run the continuous diffraction and profile kernels on a GPU.
Species identities and reflection indices are intentionally not differentiable.
Isotope-specific neutron samples can select a tabulated isotope through
neutron_scattering_lengths={"H": "2H"} (or supply a measured/custom length)
because pymatgen structures do not retain isotope identity.
By default, qmax is derived from the requested 2-theta and Q ranges and the
physical Ewald limit. An explicit qmax that would truncate either output range
is rejected instead of silently dropping reflections.
Scientific conventions
- Direct lattice vectors are rows in angstroms.
g = 1 / d,Q = 2 pi / d, ands = sin(theta) / wavelength = g / 2.- Isotropic displacement amplitudes use
exp(-B s^2). - Line intensities are
|F|^2times the powder Lorentz-polarization factor. - Gaussian profile amplitudes are integrated areas, not peak heights.
- Every reciprocal point is evaluated explicitly. This makes systematic absences emerge from the full structure factor and avoids multiplicity double-counting.
X-ray coefficients, radiation wavelengths, and coherent elemental neutron lengths are read from the required pymatgen dependency. This keeps the source of physical values explicit and versioned rather than duplicating an unmaintained local table.
Validation and performance
BraggCalculator evaluates the same kinematic equations as pymatgen and does
not prune the reciprocal set. In pymatgen 2026.5.4, each pattern rebuilds the
reciprocal points and flattened site arrays, then a Python loop processes one
reflection at a time; the site sum inside that reflection is vectorized.
BraggCalculator reduces the primitive cell and constructs the exact reflection
topology during load(). Its numerical kernel processes reflection-by-site
chunks and merges equal-spacing lines with indexed reductions. Repeated calls
reuse the topology, and reducible supercells perform numerical work on the
primitive sites. These two savings are reported separately as cached and
end-to-end timings.
Run the unit and analytical test suite:
python -m pytest -q
Validate X-ray and neutron peak positions and normalized intensities against pymatgen across cubic, diamond, perovskite, triclinic, disordered, and 40-atom P1 cells:
python scripts/validate_against_pymatgen.py
The frozen publication corpus extends this check to 70 CC0 CIFs from the Crystallography Open Database, balanced across all seven crystal systems and covering 62 declared space groups:
python scripts/validate_cif_corpus.py \
--output paper/data/cif_validation_results.json
The manifest pins every COD revision and SHA-256 digest, and the result records all parser warnings and failures rather than dropping difficult cases.
Run the reproducible performance comparison. The command fails if either the cached or end-to-end calculation is not faster for every case:
python benchmarks/benchmark_against_pymatgen.py \
--number 20 --repeat 7 --require-speedup 1 --json benchmark.json
Performance is machine- and dependency-version-specific, so benchmark JSON records the exact environment and all timing samples. The versioned scaling data, plotting commands, and CPU/CUDA protocol are documented in the paper README.
Demonstration
The NaCl demonstration loads a CIF, verifies the calculated powder lines against pymatgen, and writes an overlay with a residual panel:
python -m pip install -e . matplotlib
python demo/compare_with_pymatgen.py
The script stops if either implementation departs from the stated numerical tolerances.
The executable
artifact-simulation notebook
continues from a CIF through an ideal pattern, individual artifact components,
an imported .xye background, and a reproducible combined simulation:
jupyter notebook notebooks/artifact_simulation.ipynb
Related software
BraggCalculator and DebyeCalculator provide complementary scattering models: BraggCalculator uses reciprocal-space translational symmetry for periodic crystals, whereas DebyeCalculator evaluates the real-space Debye scattering equation for finite, disordered, or non-crystalline structures.
Data and model references
- P. A. Doyle and P. S. Turner, Acta Crystallographica A 24, 390–397 (1968), DOI: 10.1107/S0567739468000756.
- V. F. Sears, Neutron News 3(3), 26–37 (1992), DOI: 10.1080/10448639208218770.
- The pymatgen diffraction documentation describes the independent oracle implementation used in validation.
License
Apache License 2.0. See LICENSE.
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
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 braggcalculator-0.2.1.tar.gz.
File metadata
- Download URL: braggcalculator-0.2.1.tar.gz
- Upload date:
- Size: 33.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95fab8ece5bb8977140612bd136c1e9d4b65b8e8e7b8c22299362563011a74bb
|
|
| MD5 |
fcfe9e76fc31973f84a2212b167bcc29
|
|
| BLAKE2b-256 |
1a2ed1082f59c0f1bebccaaca65dd98e264ae5f4d5647b57ce8790c1a7dbe151
|
File details
Details for the file braggcalculator-0.2.1-py3-none-any.whl.
File metadata
- Download URL: braggcalculator-0.2.1-py3-none-any.whl
- Upload date:
- Size: 36.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c60229095bc69683f8f201ca9408053f60728aa7070eb45054e879c44bce94b8
|
|
| MD5 |
499e14993fa2d6e678864dc33323e6f5
|
|
| BLAKE2b-256 |
bf7249f77b7641a870ccb733aef24988f2b2f97e79ab4ec5d1d9a0b10b70ffcc
|