Data for Metastable short-range charge order in superconducting CuxTiSe2
收藏资源简介:
This repository provides the data shown in Metastable short-range charge order in superconducting CuxTiSe2. The separate files like "200K_g2.txt" provide the value of the g_2 correlation function at the specified temperature (200 K in that example). Load these data files with: >>> data = np.loadtxt('98K_g2.txt', delimiter = ',')>>> print(data.shape)(5, 54) This shows how the data file has 5 rows corresponding to five different q ROIs in order of increasing q, see publication for details on the specific ROIs. The delay times associated with these 54 different g_2 values are given in lag_steps.txt Thus, a plot of g_2 against delay time is accomplished with: >>> plt.plot(lag_steps, data[0, :]) Where the data[0, :] is selecting the lowest q ROI. For more detailed example code on analyzing the data see: gen_tau_beta_data_set.py



