Skip to main content

A library for computation CW and time resolved spectra

Project description

MarS

A toolkit for researchers to simulate, analyze, and explore EPR systems efficiently.


🚀 Overview

MarS is a Python library for constructing spin systems (electrons and nuclei), defining their magnetic interactions, and simulating Electron Paramagnetic Resonance (EPR) spectra. It supports a wide range of interaction models, efficient batched computations on CPU and GPU, flexible numerical precision (float32 / float64), and tools for both stationary and time-resolved EPR experiments.

🔑 Core Capabilities

Interaction Support

MarS allows users to construct spin systems with the most widely used magnetic interactions:

  • Zeeman interaction
  • Exchange interaction
  • Dipolar interaction
  • Zero-field splitting (ZFS)
  • Hyperfine interaction

Both isotropic and anisotropic parameters are supported.


Orientation Support

  • Arbitrary orientation of interaction tensors using Euler angles

Broadening Support

MarS provides several mechanisms to model experimental linewidths:

  • Gaussian and Lorentzian line broadening
  • Hamiltonian broadening
  • Broadening due to distributions of Hamiltonian parameters (so-called strains)

EPR Spectroscopy Simulation

  • Simulation of continuous-wave (CW) EPR spectra
  • Support for powder and single-crystal samples
  • Field-domain and frequency-domain simulations

Radiation Polarization Support

  • Simulation of spectra under polarized microwave radiation
  • Polarization-dependent transition probabilities

Numerical Precision Control

  • Support for float64 and float32 precision

CPU / CUDA Support

  • Support execution on CPU and CUDA-enabled GPUs

Optimization Framework

  • Parameter fitting using Optuna and Nevergrad libraries

Post-Fitting Analysis

  • Tools for analyzing alternative solutions
  • Exploration of parameter correlations and degeneracies

⏱️ Time-Resolved Capabilities

MarS is a comprehensive framework for modeling time-resolved EPR experiments with two complementary computational paradigms.

Relaxation Paradigms

  • Population relaxation (Kinetic approach): Evolution of diagonal density matrix elements (population vectors)
  • Density matrix relaxation: Full evolution of all density matrix elements. It includes two methods of computations:
    • Rotating frame approximation method
    • Direct propagator calculation method

Flexible Relaxation Factrors Definition

MarS provides powerful tools for defining complex relaxation processes:

  • Population losses (e.g., phosphorescence from triplet states)
  • Spontaneous transitions (free transitions satisfying detailed balance)
  • Induced transitions (driven transitions not satisfying detailed balance)
  • Dephasing (for density matrix formalism)

All mechanisms can be specified in any of several predefined bases or custom transformation matrices.


Basis Transformation Framework

Comprehensive support for relaxation parameter specification in multiple bases:

  • Eigenbasis (eigen): Hamiltonian eigenstates in magnetic field
  • Zero-field splitting basis (zfs): Eigenstates of the ZFS operator
  • Multiplet basis (multiplet): Total spin and projection states |S, M⟩
  • Product basis (product): Individual spin projections |ms1, ms2, ..., msk, is1, ..., ism⟩
  • Triplet xyz basis (xyz): Tx, Ty, Tz basis used for triplet molecules
  • Zeeman (zeeman): Basis in high magnetic field
  • Custom bases: User-defined transformation matrices

Automatic transformation of kinetic matrices and relaxation superoperators between bases.


Relaxation Algebra

  • Summation: Combine multiple relaxation mechanisms defined in different bases
  • Multiplication: Construct relaxation mechanism of interacting spin centers
  • Concatenation: Construct relaxation mechanism of isolated sub-systems.

Liouville Space Formalism

  • Full support for Liouvillian relaxation superoperators
  • Implementation via Lindblad equation for general Markovian evolution
  • Automatic enforcement of detailed balance for spontaneous transitions

Numerical Solvers

Multiple solution strategies optimized for different scenarios:

Population kinetics:

  • Stationary solution via matrix exponentiation (for time-independent systems)
  • Quasi-stationary iterative solution (for time-dependent rates)
  • Adaptive ODE integration (via torchdiffeq, for general time dependence)

Density matrix evolution:

  • Rotating frame approximation (computationally efficient, limited to isotropic or close to isotropic g-factors)
  • Propagator computation approach (fully general, supports arbitrary anisotropy and relaxation)

▶️ Getting Started

Installation

git clone https://github.com/ArkadySamsonenkoWork/MarS.git
cd mars
pip install -e <folder

or just

pip install mars-epr

Code Example

import torch
import matplotlib.pyplot as plt
from mars import spin_model, spectra_manager

# Select device and precision
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
dtype = torch.float64

# Define a simple electron spin system
g_tensor = spin_model.Interaction((2.02, 2.04, 2.06), dtype=dtype, device=device)

system = spin_model.SpinSystem(
    electrons=[0.5],
    g_tensors=[g_tensor],
    dtype=dtype,
    device=device
)

# Create a powder sample
sample = spin_model.MultiOrientedSample(
    base_spin_system=system,
    gauss=0.001,
    lorentz=0.001,
    dtype=dtype,
    device=device
)

# Create spectrum calculator
spectra = spectra_manager.StationarySpectra(
    freq=9.8e9,
    sample=sample,
    dtype=dtype,
    device=device
)

# Magnetic field range
fields = torch.linspace(0.3, 0.4, 1000, device=device, dtype=dtype)

# Compute spectrum
intensity = spectra(sample, fields)

# Plot result
plt.plot(fields.cpu(), intensity.cpu())
plt.xlabel("Magnetic field (T)")
plt.ylabel("Intensity (a.u.)")
plt.title("Simulated CW EPR Spectrum")
plt.show()

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

mars_epr-0.0.4.tar.gz (261.7 kB view details)

Uploaded Source

Built Distribution

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

mars_epr-0.0.4-py3-none-any.whl (290.9 kB view details)

Uploaded Python 3

File details

Details for the file mars_epr-0.0.4.tar.gz.

File metadata

  • Download URL: mars_epr-0.0.4.tar.gz
  • Upload date:
  • Size: 261.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.9

File hashes

Hashes for mars_epr-0.0.4.tar.gz
Algorithm Hash digest
SHA256 41c425d3ef1370c9f0f4c8cbda4d350c9ebe15af79848876544e5fcf15ef3a70
MD5 d4f3829ab1b8bb516e66b8bc6ff900a6
BLAKE2b-256 39dc76b8ab504dded2e037787c79a3dab0175e852874031f481fcba5c217dc5e

See more details on using hashes here.

File details

Details for the file mars_epr-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: mars_epr-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 290.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.9

File hashes

Hashes for mars_epr-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 63309546370cd2ebcc1f5270e95980daef108818005403fc7b312c3252aa2ee2
MD5 fcd5317c6b3cc9bb95e0e40736a66fce
BLAKE2b-256 372f44f39131ac8f8dbf2a429d73a85d9a15c4bc1dd7d077458b040038b839d1

See more details on using hashes here.

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