Consistency of constants between bilby and lalsuite
Hi all, I was poking around the bilby code and noticed you have coded up the following values in core.utils.
I compared these with what is in lalsuite and get the following:
from bilby import core
import lal
core.utils.solar_mass / lal.MSUN_SI
#1.0000015312882258
core.utils.radius_of_earth / lal.REARTH_SI
#0.9988810838576271
core.utils.parsec / lal.PC_SI
#0.9999999998407587
#core.utils.speed_of_light / lal.C_SI
1.0
Is this a concern? I remember before I was doing some comparisons and the disagreement was being I wasn't using Newton's constant to the same precision and since then I am paranoid about these things :)