Analytical model for the mass ratio distribution of binary black holes (BBHs) formed through the stable mass transfer (SMT) channel. An interactive widget can be found in the jupyter notebook mass_ratio_widget.ipynb, with a live version at GW Observer's SMT Mass Ratio Widget.
This repository computes and visualizes the expected distribution of mass ratios of BBH mergers from the stable mass transfer (SMT) channel,
Mass transfer is assumed dynamically stable if the response of the Roche lobe to mass loss is less than the effective adiabatic response of the donor star, i.e.
This stability condition translates into a limit on the donor-accretor mass ratio:
where
The first mass transfer phase requires
which gives a minimum on
The second mass transfer phase requires
which gives a maximum on
Assuming
where the Jacobian is
Since we do not know which observed systems are mass-ratio reversed (
A standalone, embeddable version of the interactive widget lives in the widget/ directory. It requires no frameworks or build tools — just a <script> tag.
Add the following to any HTML page:
<div id="smt-widget"></div>
<script src="widget/smt-widget.js"></script>
<script>
SMTWidget.init("smt-widget");
</script>To start in light mode, pass { light: true }:
SMTWidget.init("smt-widget", { light: true });Open widget/index.html in a browser to preview the widget locally. A live version is hosted at gw.observer/research/smt-widget.
Plotly.js and MathJax are loaded automatically from public CDNs on first use.
| File | Description |
|---|---|
mass_ratio_widget.ipynb |
Analytical derivations with an interactive widget for exploring the parameter space |
MC_validation.ipynb |
Monte Carlo validation of the analytical model |
widget/smt-widget.js |
Standalone embeddable widget (HTML/CSS/JS, no dependencies) |
widget/index.html |
Demo page for previewing the widget |
| Symbol | Description |
|---|---|
| Accretion efficiency during mass transfer | |
| Effective adiabatic response limit | |
| Core mass fraction of the donor | |
| Mass lost by star |
|
| Mass lost by star |
If you use this code, please cite:
van Son, L. A. C., de Mink, S. E., Renzo, M., Justham, S., Zapartas, E., Breivik, K., Callister, T., Farr, W. M., & Conroy, C. (2022). No Peaks without Valleys: The Stable Mass Transfer Channel for Gravitational-wave Sources in Light of the Neutron Star–Black Hole Mass Gap. The Astrophysical Journal, 940(2), 184. doi:10.3847/1538-4357/ac9b0a
@article{vanSon2022,
author = {van Son, L. A. C. and de Mink, S. E. and Renzo, M. and Justham, S. and Zapartas, E. and Breivik, K. and Callister, T. and Farr, W. M. and Conroy, C.},
title = {No Peaks without Valleys: The Stable Mass Transfer Channel for Gravitational-wave Sources in Light of the Neutron Star–Black Hole Mass Gap},
journal = {The Astrophysical Journal},
volume = {940},
number = {2},
pages = {184},
year = {2022},
doi = {10.3847/1538-4357/ac9b0a}
}This project is licensed under the MIT License — see the LICENSE file for details.