|
| 1 | +##################################################### |
| 2 | +CHANGE LOG |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | +##################################################### |
| 7 | +v0.1 - beta release |
| 8 | +Author: Artyom (Artem) Aguichine |
| 9 | + |
| 10 | + |
| 11 | +##################################################### |
| 12 | +v1.0 - first release |
| 13 | +Author: Artyom (Artem) Aguichine |
| 14 | +Date: 2024/04/24 |
| 15 | + |
| 16 | +New files: |
| 17 | +- ./models/Aguichine2021_fit_coefficients_2024.dat |
| 18 | +- ./data/catalog_exoplanets.dat |
| 19 | +- ./data/catalog_targets.dat |
| 20 | + |
| 21 | +Deprecated files: |
| 22 | +- ./models/Aguichine2021_fit_coefficients.dat |
| 23 | +- ./models/Aguichine2021_mr_all.dat |
| 24 | +- ./data/solarsystem.dat |
| 25 | +- ./data/PS_2023.12.08_19.54.38.tab |
| 26 | +- ./data/compo_targets.dat |
| 27 | + |
| 28 | +Changes: |
| 29 | +1. Clean-up of source code. |
| 30 | + |
| 31 | +2. Solar system planets are no longer represented by |
| 32 | + red markers, but with their alchemy symbols. In the |
| 33 | + code, planets are defined in the script, and are no |
| 34 | + longer read from the data file. |
| 35 | + |
| 36 | +3. For the Aguichine+2021 model, the validity range |
| 37 | + in mass is no longer extracted from the full grid |
| 38 | + (Aguichine2021_mr_all.dat), but was added as two |
| 39 | + columns in the new file |
| 40 | + "Aguichine2021_fit_coefficients_2024.dat". This |
| 41 | + helps reducing the amount of data needed to be |
| 42 | + stored locally, and the amount of data loaded |
| 43 | + upon execution of the code. |
| 44 | + |
| 45 | +4. Update of exoplanets and targets catalogs format, |
| 46 | + and both catalogs were renamed for clarity. The |
| 47 | + exoplanet catalog can now be easily updated using |
| 48 | + the NASA Exoplanet Archive's Table Access Protocol |
| 49 | + (TAP). Use the link below, and simply copy/paste |
| 50 | + all the content generated in your browser to |
| 51 | + the .dat file. Make sure to keep the header, and |
| 52 | + update the header with the relevant information. |
| 53 | + It is possible to use either actual planet mass |
| 54 | + (pl_masse), or the best available estimate among |
| 55 | + M, M*sin(i), or M*sin(i)/sin(i) (pl_bmasse). |
| 56 | + The two corresponding links are (choose one): |
| 57 | + https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+pl_name,pl_rade,pl_radeerr1,pl_radeerr2,pl_masse,pl_masseerr1,pl_masseerr2,pl_eqt+from+ps+where+default_flag=1&format=tsv |
| 58 | + https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+pl_name,pl_rade,pl_radeerr1,pl_radeerr2,pl_bmasse,pl_bmasseerr1,pl_bmasseerr2,pl_eqt+from+ps+where+default_flag=1&format=tsv |
| 59 | + It is recommended to use the first option, since |
| 60 | + an inaccurate mass results in the wrong position |
| 61 | + in the mass-radius plane, which can lead to |
| 62 | + a misinterpretation of planet composition. |
| 63 | + |
| 64 | + |
0 commit comments