Dataset associated to the publication NATASTRON-22125961A arXiv:2212.10924
收藏NIAID Data Ecosystem2026-05-01 收录
下载链接:
https://zenodo.org/record/7965617
下载链接
链接失效反馈官方服务:
资源简介:
# Dataset description
1. Single stellar model grids at Zsun
All single stellar model grids are labeled as "single_star_grid_Zsun_*.h5".
To access the dataset you should use the POSYDON v1 code and refer to the
code documentation, see https://github.com/POSYDON-code/POSYDON/releases/tag/v1.0.0.
The data can be accessed, e.g., with POSYDON as
```py
from posydon.grids.psygrid import PSyGrid
grid = PSyGrid()
grid.load(path_to_grid)
print(grid.initial_values)
print(grid.final_values)
print(grid[0].history1['log_L'])
print(grid[0].history1['log_Teff'])
```
2. Binary black hole population at Zsun
We provide the binary black hole population in the file labeled
"BBH_population_Zsun.h5". This file contains all binary systems forming
binary black holes as simulated from a population synthesis model of 50 million
binaries generated with POSYDON v1 at solar metallicity. The data can be
accessed, e.g., with Pandas as
```py
import pandas as pd
df = pd.read_hdf('./data_release/source_data/BBH_population_Zsun.h5',
key='history')
df.head(10)
```
For convenience we also provide a dataset labeled "arXiv_2212.10924.csv.gz"
that contains the subset of merging binary black holes obtained from
"BBH_population_Zsun.h5" at the time of double compact object formation used to
generate the Figure 4 of the main manuscript and compute the binary black hole
rates using the software released on https://github.com/ssbvr/BBH_merging_rates.
The data can be accessed, e.g., with Pandas as
```py
import pandas as pd
df = pd.read_csv('./data_release/source_data/arXiv_2212.10924.csv.gz',
compression='gzip')
df.head(10)
```
Please refer to the following notebook on how use the data to compute the
detectable and intrinsic merging population as well as rates, see
https://github.com/ssbvr/BBH_merging_rates/blob/main/arXiv_221210924_POSYDON_BBH_Zsun.ipynb
创建时间:
2023-05-25



