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



