Skip to content

Commit

Permalink
Fixing bug for taking chi_eff instead of chi_bh in nsbh conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
tsunhopang authored Aug 22, 2024
1 parent 85cd7c0 commit f149dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nmma/joint/conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@ def ejecta_parameter_conversion(self, converted_parameters, added_keys):
chi_eff = (mass_1_source * chi_1 + mass_2_source * chi_2) / total_mass_source

mdyn_fit = self.dynamic_mass_fitting(
mass_1_source, mass_2_source, compactness_2, chi_eff
mass_1_source, mass_2_source, compactness_2, chi_1
)
remnant_disk_fit = self.remnant_disk_mass_fitting(
mass_1_source, mass_2_source, compactness_2, chi_eff
mass_1_source, mass_2_source, compactness_2, chi_1
)
mdisk_fit = remnant_disk_fit - mdyn_fit

Expand Down

0 comments on commit f149dea

Please sign in to comment.