├── LICENSE.txt ├── README.md ├── mesafiles ├── SLURM_MISTgrid.sh ├── inlist_high ├── inlist_lowinter ├── kap_config_file.txt ├── my_history_columns.list ├── my_history_columns_basic.list ├── my_history_columns_full.list └── run_star_extras.f ├── reduce_jobs.py ├── scripts ├── README.md ├── __init__.py ├── calc_xyz.py ├── make_blend_input_file.py ├── make_eeps_isos.py ├── make_inlist_inputs.py ├── make_iso_input_file.py ├── make_replacements.py ├── make_slurm_sh.py ├── mesa_hist_trim.py ├── mesa_plot_grid.py ├── mist2fsps.py ├── read_mist_models.py ├── reduce_jobs_utils.py └── reformat_massname.py └── submit_jobs.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/README.md -------------------------------------------------------------------------------- /mesafiles/SLURM_MISTgrid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/SLURM_MISTgrid.sh -------------------------------------------------------------------------------- /mesafiles/inlist_high: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/inlist_high -------------------------------------------------------------------------------- /mesafiles/inlist_lowinter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/inlist_lowinter -------------------------------------------------------------------------------- /mesafiles/kap_config_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/kap_config_file.txt -------------------------------------------------------------------------------- /mesafiles/my_history_columns.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/my_history_columns.list -------------------------------------------------------------------------------- /mesafiles/my_history_columns_basic.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/my_history_columns_basic.list -------------------------------------------------------------------------------- /mesafiles/my_history_columns_full.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/my_history_columns_full.list -------------------------------------------------------------------------------- /mesafiles/run_star_extras.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/mesafiles/run_star_extras.f -------------------------------------------------------------------------------- /reduce_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/reduce_jobs.py -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/calc_xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/calc_xyz.py -------------------------------------------------------------------------------- /scripts/make_blend_input_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/make_blend_input_file.py -------------------------------------------------------------------------------- /scripts/make_eeps_isos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/make_eeps_isos.py -------------------------------------------------------------------------------- /scripts/make_inlist_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/make_inlist_inputs.py -------------------------------------------------------------------------------- /scripts/make_iso_input_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/make_iso_input_file.py -------------------------------------------------------------------------------- /scripts/make_replacements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/make_replacements.py -------------------------------------------------------------------------------- /scripts/make_slurm_sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/make_slurm_sh.py -------------------------------------------------------------------------------- /scripts/mesa_hist_trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/mesa_hist_trim.py -------------------------------------------------------------------------------- /scripts/mesa_plot_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/mesa_plot_grid.py -------------------------------------------------------------------------------- /scripts/mist2fsps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/mist2fsps.py -------------------------------------------------------------------------------- /scripts/read_mist_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/read_mist_models.py -------------------------------------------------------------------------------- /scripts/reduce_jobs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/reduce_jobs_utils.py -------------------------------------------------------------------------------- /scripts/reformat_massname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/scripts/reformat_massname.py -------------------------------------------------------------------------------- /submit_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieunchoi/MIST_codes/HEAD/submit_jobs.py --------------------------------------------------------------------------------