Dark Photon Exclusions from Existing Axion Haloscope Measurements
收藏NIAID Data Ecosystem2026-03-12 收录
下载链接:
https://zenodo.org/record/4721922
下载链接
链接失效反馈官方服务:
资源简介:
Dark photon exclusions for polarized and unpolarized dark photons converted from axion measurements are each in a .mat file.
Keys for the data are 'RBF_ueV', 'RBF_chi', 'UF_ueV', 'UF_chi', 'HAYSTAC_ueV', 'HAYSTAC_chi', 'ADMX_ueV', 'ADMX_chi', 'CAPP_ueV', and 'CAPP_chi' to obtain exclusions for dark photons for each of these experiments in the polarized and unpolarized cases. Each case has its own .mat file.
The .py file is the Python code used to calculate cos2(theta), the square of the dot product between the dark photon polarization and the axis of the haloscope cavity in the slowly varying polarized case described in the associated manuscript. The code shows how to calculate cos2(theta) using probability, taking the rotation of the earth into account for longer measurements.
To use the .mat file format in Python, use a script like the following:
import matplotlib.pyplot as plt
from scipy.io import loadmat
mat_file = loadmat('haloscope_exclusions_unpolarized.mat')
masses_in_ueV = mat_file['HAYSTAC_ueV']
chi_exclusion = mat_file['HAYSTAC_chi']
plt.figure()
plt.semilogy(masses_in_ueV, chi_exclusion)
plt.xlabel('Mass ($\mu$eV)')
plt.ylabel('$\chi$')
plt.title('HAYSTAC unpolarized dark photon exclusions')
plt.show()
创建时间:
2021-10-06



