Skip to content

Add two new BNS distributions

This PR adds two common BNS distributions popular in the literature: Alsing et al.: https://arxiv.org/abs/1709.07889 Farrow et al.: https://arxiv.org/abs/1902.03300

Both are simply two Gaussian distributions. A plot of the PDFs produced are below. image

import matplotlib.pyplot as plt masses = np.linspace(1.0,3.0,1000) plt.plot(masses, ns_alsing_mass1_dist.pdf(masses), label='A1') plt.plot(masses, ns_alsing_mass2_dist.pdf(masses), label='A2') plt.plot(masses, ns_farrow_mass1_dist.pdf(masses), label='F1') plt.plot(masses, ns_farrow_mass2_dist.pdf(masses), label='F2') plt.legend() plt.savefig('test.png') plt.close()

Merge request reports