From 00280726d41ab607beb958a392742e32b6d29f9c Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Mon, 13 Mar 2023 21:31:36 +0000 Subject: [PATCH] MAINT: update solar mass definition --- bilby/core/utils/constants.py | 2 +- test/gw/utils_test.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bilby/core/utils/constants.py b/bilby/core/utils/constants.py index 43250259c..8dbec27da 100644 --- a/bilby/core/utils/constants.py +++ b/bilby/core/utils/constants.py @@ -2,6 +2,6 @@ speed_of_light = 299792458.0 # m/s parsec = 3.085677581491367e+16 # m -solar_mass = 1.9884099021470415e+30 # Kg +solar_mass = 1.988409870698050731911960804878414216e30 # Kg radius_of_earth = 6378136.6 # m gravitational_constant = 6.6743e-11 # m^3 kg^-1 s^-2 diff --git a/test/gw/utils_test.py b/test/gw/utils_test.py index a63c3ae0d..f2aeb1c78 100644 --- a/test/gw/utils_test.py +++ b/test/gw/utils_test.py @@ -8,6 +8,7 @@ import lalsimulation as lalsim from gwpy.timeseries import TimeSeries from gwpy.detector import Channel from scipy.stats import ks_2samp +import pytest import bilby from bilby.gw import utils as gwutils @@ -72,6 +73,7 @@ class TestGWUtils(unittest.TestCase): ) self.assertEqual(mfsnr, 25.510869054168282) + @pytest.mark.skip(reason="GWOSC unstable: avoiding this test") def test_get_event_time(self): from urllib3.exceptions import NewConnectionError events = [ -- GitLab