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