├── .github └── workflows │ └── pythonapp.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ ├── index.rst │ ├── tutorials │ ├── bayesian_method.ipynb │ ├── customize_plots.ipynb │ └── results │ │ ├── teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png │ │ ├── teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_fast_test_distributions.png │ │ ├── teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png │ │ ├── teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png │ │ ├── teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_fast_test_distributions.png │ │ ├── teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png │ │ ├── teff_20250_logg_8.53_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png │ │ └── teff_20250_logg_8.53_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png │ ├── user │ ├── citation.rst │ ├── install.rst │ └── models_included.rst │ └── wd_logo.png ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── test_cooling_age.py ├── test_extra_func.py ├── test_ifmr.py ├── test_ms_age.py └── test_wdwarfdate.py └── wdwarfdate ├── Models ├── MIST │ ├── MIST_v1.2_feh_m1.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv │ ├── MIST_v1.2_feh_m1.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv │ ├── MIST_v1.2_feh_m4.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv │ ├── MIST_v1.2_feh_m4.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv │ ├── MIST_v1.2_feh_p0.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv │ ├── MIST_v1.2_feh_p0.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv │ ├── MIST_v1.2_feh_p0.50_afe_p0.0_vvcrit0.0_EEPS_sum.csv │ ├── MIST_v1.2_feh_p0.50_afe_p0.0_vvcrit0.4_EEPS_sum.csv │ ├── __init__.py │ └── make_one_file.py ├── __init__.py └── cooling_models │ ├── Thick_seq_020_130.csv │ ├── Thin_seq_020_130.csv │ └── __init__.py ├── __init__.py ├── bayesian_age_grid.py ├── cooling_age.py ├── extra_func.py ├── fast_test_age.py ├── ifmr.py ├── make_models_fit.py ├── ms_age.py └── wdwarfdate.py /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/bayesian_method.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/bayesian_method.ipynb -------------------------------------------------------------------------------- /docs/source/tutorials/customize_plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/customize_plots.ipynb -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_fast_test_distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_fast_test_distributions.png -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_19250_logg_8.16_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_fast_test_distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_fast_test_distributions.png -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_20250_logg_8.526_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_20250_logg_8.53_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_20250_logg_8.53_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_distributions.png -------------------------------------------------------------------------------- /docs/source/tutorials/results/teff_20250_logg_8.53_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/tutorials/results/teff_20250_logg_8.53_feh_p0.00_vvcrit_0.0_DA_Cummings_2018_MIST_gridplot.png -------------------------------------------------------------------------------- /docs/source/user/citation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/user/citation.rst -------------------------------------------------------------------------------- /docs/source/user/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/user/install.rst -------------------------------------------------------------------------------- /docs/source/user/models_included.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/user/models_included.rst -------------------------------------------------------------------------------- /docs/source/wd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/docs/source/wd_logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_cooling_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/tests/test_cooling_age.py -------------------------------------------------------------------------------- /tests/test_extra_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/tests/test_extra_func.py -------------------------------------------------------------------------------- /tests/test_ifmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/tests/test_ifmr.py -------------------------------------------------------------------------------- /tests/test_ms_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/tests/test_ms_age.py -------------------------------------------------------------------------------- /tests/test_wdwarfdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/tests/test_wdwarfdate.py -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_m1.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_m1.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_m1.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_m1.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_m4.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_m4.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_m4.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_m4.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.00_afe_p0.0_vvcrit0.0_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.00_afe_p0.0_vvcrit0.4_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.50_afe_p0.0_vvcrit0.0_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.50_afe_p0.0_vvcrit0.0_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.50_afe_p0.0_vvcrit0.4_EEPS_sum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/MIST_v1.2_feh_p0.50_afe_p0.0_vvcrit0.4_EEPS_sum.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wdwarfdate/Models/MIST/make_one_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/MIST/make_one_file.py -------------------------------------------------------------------------------- /wdwarfdate/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wdwarfdate/Models/cooling_models/Thick_seq_020_130.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/cooling_models/Thick_seq_020_130.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/cooling_models/Thin_seq_020_130.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/Models/cooling_models/Thin_seq_020_130.csv -------------------------------------------------------------------------------- /wdwarfdate/Models/cooling_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wdwarfdate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/__init__.py -------------------------------------------------------------------------------- /wdwarfdate/bayesian_age_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/bayesian_age_grid.py -------------------------------------------------------------------------------- /wdwarfdate/cooling_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/cooling_age.py -------------------------------------------------------------------------------- /wdwarfdate/extra_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/extra_func.py -------------------------------------------------------------------------------- /wdwarfdate/fast_test_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/fast_test_age.py -------------------------------------------------------------------------------- /wdwarfdate/ifmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/ifmr.py -------------------------------------------------------------------------------- /wdwarfdate/make_models_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/make_models_fit.py -------------------------------------------------------------------------------- /wdwarfdate/ms_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/ms_age.py -------------------------------------------------------------------------------- /wdwarfdate/wdwarfdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkiman/wdwarfdate/HEAD/wdwarfdate/wdwarfdate.py --------------------------------------------------------------------------------