import numpy as np from matplotlib import pyplot as plt from matplotlib.axes import Axes from matplotlib.figure import Figure from paths import base_dir from read_vr_files import read_velo_halos waveform = "shannon" resolution = 128 dir = base_dir / f"{waveform}_{resolution}_100" halos = read_velo_halos(dir) halos = halos[halos["Mvir"] > 2] # there seem to be multiple halos with a mass of 1.88196993 halo_masses: np.ndarray = halos["Mvir"].to_numpy() print(halo_masses) num_bins = 100 sim_volume = 100 ** 3 bins = np.geomspace(halo_masses.min(), halo_masses.max(), num_bins + 1) digits = np.digitize(halo_masses, bins) number_densities = [] widths = [] centers = [] for bin_id in range(num_bins): mass_low = bins[bin_id] mass_high = bins[bin_id + 1] counter = 0 for val in halo_masses: if mass_low <= val < mass_high: counter += 1 delta_mass = mass_high - mass_low widths.append(delta_mass) centers.append(mass_low + delta_mass / 2) values = np.where(digits == bin_id + 1)[0] # print(halo_masses[values]) # print(values) num_halos = values.shape[0] print(num_halos, counter) assert num_halos == counter nd = num_halos / sim_volume / delta_mass number_densities.append(nd) fig: Figure = plt.figure() ax: Axes = fig.gca() ax.bar(centers, number_densities, width=widths, log=True) ax.set_xscale("log") ax.set_yscale("log") plt.show()