diff --git a/src/seismic_hazard_forecasting.py b/src/seismic_hazard_forecasting.py index 0a41da9..03fcb42 100644 --- a/src/seismic_hazard_forecasting.py +++ b/src/seismic_hazard_forecasting.py @@ -150,10 +150,13 @@ def compute_IMT_exceedance(rx_lat, rx_lon, r, fr, p, lambdas, D, percentages_D, # Check function values at different test points IMT_mid = (IMT_max-IMT_min)/2 + + return None + lower_bound_value = exceedance_root_function(IMT_min) mid_point_value = exceedance_root_function(IMT_mid) upper_bound_value = exceedance_root_function(IMT_max) - return None + logger.info(f"Receiver: {str(rx_label)}") logger.info(f"Function value at {imt} = {str(IMT_min)} : {lower_bound_value}") logger.info(f"Function value at {imt} = {str(IMT_mid)} : {mid_point_value}")