Source code for hqs_nmr.solver.solver

# Copyright © 2022-2025 HQS Quantum Simulations GmbH. All Rights Reserved.

# LICENSE PLACEHOLDER

"""Solvers module."""

from __future__ import annotations

from typing import Dict, Any, Protocol, runtime_checkable, TYPE_CHECKING

if TYPE_CHECKING:
    import numpy as np
    from hqs_nmr.datatypes import NMRCalculationParameters
    from struqture_py.spins import SpinHamiltonianSystem


NMR_FREQUENCY_SOLVERS: Dict[str, NMRSolver] = {}


[docs] @runtime_checkable class NMRSolver(Protocol): """Callable protocol for NMRSolvers in omega.""" def __call__( hamiltonian: SpinHamiltonianSystem, normalized_gyromagnetic_ratios: np.ndarray, omegas: np.ndarray, eta: np.ndarray, spin_contribution_indices: list[int], calculation_parameters: NMRCalculationParameters, **kwargs: dict[str, Any], ) -> np.ndarray: """Defines the signature of a solver. Args: hamiltonian: Struqture spin Hamiltonian. normalized_gyromagnetic_ratios: Array of the gyromagnetic factors per site, normalized with respect to the reference isotope. omegas: Desired frequencies. eta: Explicit spin-dependent broadening of the peaks. spin_contribution_indices: List of indices l of I^+_l for which to evaluate the correlator. calculation_parameters: Object storing all calculation parameters including solver-specific settings. kwargs: Catch all for general interface. """ ...
[docs] def register_frequency_solver(name: str, solver: Any) -> None: """Register a new frequency solver. Args: name: The name (key) for the new solver solver: A callable implementing a NMR solver. Raises: KeyError: Name exists already. TypeError: The callable does not implement the NMRSolver protocol. """ if name in NMR_FREQUENCY_SOLVERS: raise KeyError(f"{name} already in registry. Please unregister first.") if not isinstance(solver, NMRSolver): raise TypeError(f"{solver} does not implement the NMRSolver protocol.") NMR_FREQUENCY_SOLVERS[name] = solver