LCOV - code coverage report
Current view: top level - tests - test_lifetime.py (source / functions) Hit Total Coverage
Test: coverage.info Lines: 29 42 69.0 %
Date: 2025-12-08 07:47:12 Functions: 3 8 37.5 %

          Line data    Source code
       1             : # SPDX-FileCopyrightText: 2025 PairInteraction Developers
       2             : # SPDX-License-Identifier: LGPL-3.0-or-later
       3             : 
       4           1 : from __future__ import annotations
       5             : 
       6           1 : from typing import TYPE_CHECKING
       7             : 
       8           1 : import numpy as np
       9           1 : import pytest
      10           1 : from pairinteraction import ureg
      11           1 : from scipy.optimize import curve_fit
      12             : 
      13             : if TYPE_CHECKING:
      14             :     from pairinteraction.units import NDArray
      15             : 
      16             :     from .utils import PairinteractionModule
      17             : 
      18             : 
      19           1 : @pytest.mark.skip("The Yb174_mqdt database currently does not have low lying states.")
      20           1 : def test_lifetime(pi_module: PairinteractionModule) -> None:
      21             :     """Test calculating the lifetime of a state.
      22             : 
      23             :     Note that obtaining a reasonable value for the lifetime requires the full database and is not possible with the
      24             :     reduced database that is included in the repository!
      25             :     """
      26           0 :     ket = pi_module.KetAtom("Yb174_mqdt", n=64, l=0, j=0, m=0)
      27             : 
      28             :     # We use n=64 here, because this corresponds to nu~60 and we include
      29             :     # states with 50<nu<70 in the limited database that comes with the repository. In
      30             :     # addition, states with nu<20 are included so that the decay to the ground state
      31             :     # is also captured. Note that the relative error of the calculated
      32             :     # lifetime versus the actual lifetime is still quite large because of the limited
      33             :     # number of states. The full database is used and accurate results can be obtained
      34             :     # if the test is run with `pytest --database-dir "" --download-missing`.
      35             : 
      36           0 :     lifetime1 = ket.get_lifetime(temperature=300, temperature_unit="K", unit="us")
      37           0 :     lifetime2 = ket.get_lifetime(temperature=300 * ureg.K, unit="us")
      38           0 :     lifetime3 = ket.get_lifetime(temperature=300 * ureg.K)
      39           0 :     lifetime4 = ket.get_lifetime(unit="us")
      40             : 
      41           0 :     assert lifetime1 == lifetime2 == lifetime3.to(ureg.us).magnitude < lifetime4
      42           0 :     assert pytest.approx(lifetime1, rel=0.15) == 142.04845576112646  # NOSONAR
      43           0 :     assert pytest.approx(lifetime4, rel=0.15) == 494.1653414977515  # NOSONAR
      44             : 
      45             : 
      46           1 : def test_lifetime_scaling(pi_module: PairinteractionModule) -> None:
      47             :     """Test the scaling of the lifetime with the principal quantum number."""
      48             : 
      49           1 :     def fit_function(x: NDArray, a: float, b: float) -> NDArray:
      50           1 :         return a * x + b
      51             : 
      52           1 :     n_list = list(range(60, 70, 1))
      53             : 
      54             :     # S states
      55           1 :     kets = [pi_module.KetAtom("Rb", n=n, l=0, j=0.5, m=0.5) for n in n_list]
      56           1 :     nu = [ket.nu for ket in kets]
      57           1 :     lifetimes = [ket.get_lifetime(unit="us") for ket in kets]
      58           1 :     popt, _ = curve_fit(fit_function, np.log(nu), np.log(lifetimes))
      59           1 :     assert np.isclose(popt[0], 3, atol=0.02)
      60             : 
      61             :     # Circular states
      62           1 :     try:
      63           1 :         kets = [pi_module.KetAtom("Rb", n=n, l=n - 1, j=n - 0.5, m=n - 0.5) for n in n_list]
      64           1 :     except ValueError as err:
      65             :         # If the limited database which comes with the repository is used, creating the
      66             :         # kets will fail because the circular states are not included in the database.
      67             :         # This is expected.
      68           1 :         if "No state found" not in str(err):
      69           0 :             raise
      70             :     else:
      71           0 :         nu = [ket.nu for ket in kets]
      72           0 :         lifetimes = [ket.get_lifetime(unit="us") for ket in kets]
      73           0 :         popt, _ = curve_fit(fit_function, np.log(nu), np.log(lifetimes))
      74           0 :         assert np.isclose(popt[0], 5, atol=0.02)
      75             : 
      76             : 
      77           1 : def test_transition_rates(pi_module: PairinteractionModule) -> None:
      78             :     """Test calculating transition rates to other states.
      79             : 
      80             :     Note that obtaining a reasonable value for the transition rates requires the full database and is not possible
      81             :     with the reduced database that is included in the repository!
      82             :     """
      83           1 :     ket = pi_module.KetAtom("Yb174_mqdt", n=60, l=0, j=0, m=0)
      84             : 
      85           1 :     lifetime = ket.get_lifetime(temperature=300, temperature_unit="K", unit="us")
      86           1 :     kets_sp, rates_sp = ket.get_spontaneous_transition_rates(unit="MHz")
      87           1 :     kets_bbr, rates_bbr = ket.get_black_body_transition_rates(temperature=300, temperature_unit="K", unit="MHz")
      88             : 
      89           1 :     assert len(rates_sp) == len(kets_sp)
      90           1 :     assert len(rates_bbr) == len(kets_bbr)
      91           1 :     assert np.isclose(1 / (sum(rates_sp) + sum(rates_bbr)), lifetime)

Generated by: LCOV version 1.16