MIST
This submodule enables interaction with the bolometric correction (BC) grids released as part of the Mesa Isochrones & Stellar Tracks (MIST; Dotter (2016), Choi et al. (2016), Dotter et al. (2026), Bauer et al. (2026)) project. The MIST BC grids are convenient for stellar population work: they cover a wide range of photometric filters, span the full range of effective temperature, surface gravity, and metallicity relevant for stellar evolution, and are regular in their dependent variables, which greatly simplifies interpolation.
Two versions of the MIST BC tables are currently supported:
- MIST v1.2 — the original grid with BCs tabulated as a function of temperature (Teff), surface gravity (logg), metallicity ([Fe/H]), and V-band extinction (Av).
- MIST v2.5 — new grid adding [α/Fe] as a free parameter, updated solar chemical abundances, and additional photometric systems.
Common features
Both versions share:
- The same set of photometric zeropoints stored in
BolometricCorrections.MIST.zpt, an instance ofBolometricCorrections.MIST.MISTZeropoints. This can be used to convert bolometric corrections between the AB, Vega, and ST photometric systems. - The same solar bolometric magnitude $M_{\odot,\text{bol}} = 4.74$ and bolometric luminosity $L_\odot = 3.828 \times 10^{33}$ erg s⁻¹.
- A regular Cartesian grid in all dependent variables, enabling simple bilinear (or higher-order) interpolation.
- The same call signature API: construct a grid object by loading a photometric system, then call it to obtain a table with the stellar-population parameters fixed.
Version comparison
| Feature | v1.2 | v2.5 |
|---|---|---|
| Solar abundances | Asplund et al. (2009) | Grevesse and Sauval (1998) |
| α-element enhancement | fixed (scaled-solar) | [α/Fe] ∈ {−0.2, 0, 0.2, 0.4, 0.6} |
| Teff grid | linear (2,500 – 1,000,000 K; 70 pts) | log₁₀ (∼1,500 – 5,000,000 K; 41 pts) |
| [Fe/H] range | −4.0 to +0.75 (18 values) | −3.0 to +0.5 (15 values) |
| logg range | −4.0 to 9.5 (26 values) | −1.0 to 9.5 (22 values) |
| Photometric systems | 22 | 28 (adds Euclid, NIRISS, RoboAO, Roman, HST/ACS-SBC) |
| Chemistry type | MISTv1Chemistry | MISTv2Chemistry |
| Grid type | MISTv1BCGrid | MISTv2BCGrid |
| Table type | MISTv1BCTable | MISTv2BCTable |
Note that for ease of transition from with earlier versions of BolometricCorrections.jl that only supported MIST v1.2, the following deprecated aliases are available
MISTChemistryaliases forMISTv1ChemistryMISTBCTablealiases forMISTv1BCTableMISTBCGridaliases forMISTv1BCGrid
Shared types
The zeropoint table and its type are shared between both versions:
BolometricCorrections.MIST.zpt — Constant
This constant is an instance of MISTZeropoints. See the docs for more informations on supported operations. This constant is returned when calling zeropoints on instances of MIST grids (MIST.MISTv1BCGrid, MIST.MISTv2BCGrid) and tables (MIST.MISTv1BCTable, MIST.MISTv2BCTable).
Each set of bolometric corrections is specified on either the Vega or AB magnitude system. For ease of conversion amongst the AB, ST, and Vega systems this table is provided containing one line for each filter in our collection. The contents of the file can be used to convert amongst AB, ST, and Vega magnitude systems as follows.
| filter | system | mag(Vega/ST) | mag(Vega/AB) |
|---|---|---|---|
| WISE_W1 | Vega | 6.610497 | 2.665543 |
Above is the information for WISE W1, which is tabulated by default in Vega mags (as noted in column "system"). To convert WISE mags from Vega to AB is a simple operation: mag(AB) = mag(Vega) + "mag(Vega/AB)" [column 4 in the file]. For example, a star with WISE_W1(Vega) = 0.0 would have WISE_W1(AB) = 2.66.
To ease compatibility between Symbol and String representations, the mag(Vega/ST) and mag(Vega/AB) columns have been simplified to VegaST and VegaAB.
BolometricCorrections.MIST.MISTZeropoints — Type
Struct to contain the MIST zeropoint information. A constant instance is available as BolometricCorrections.MIST.zpt. Instances are callable with a filtername::AbstractString which will return the zeropoint entry for the relevant filter. The full table can be retrieved with Table(zpt) and the list of available filters can be retrieved with filternames(zpt).
MIST References
This page cites the following references:
- Asplund, M.; Grevesse, N.; Sauval, A. J. and Scott, P. (2009). The Chemical Composition of the Sun. Annual Review of Astronomy and Astrophysics 47, 481–522.
- Bauer, E. B.; Dotter, A.; Conroy, C.; Cunningham, T.; Park, M. and Tremblay, P.-E. (2026). MESA Isochrones and Stellar Tracks (MIST). III. The White Dwarf Cooling Sequence. ApJS 283, 41, arXiv:2509.21717 [astro-ph.SR].
- Choi, J.; Dotter, A.; Conroy, C.; Cantiello, M.; Paxton, B. and Johnson, B. D. (2016). MESA ISOCHRONES AND STELLAR TRACKS (MIST). I. SOLAR-SCALED MODELS. ApJ 823, 102.
- Dotter, A.; Bauer, E. B.; Park, M.; Conroy, C.; Milone, A. P.; Joyce, M. and Cantiello, M. (2026). MESA Isochrones and Stellar Tracks (MIST). II. Models with alpha-enhanced Chemical Composition. ApJS 283, 64, arXiv:2602.22012 [astro-ph.SR].
- Grevesse, N. and Sauval, A. (1998). Standard Solar Composition. Space Science Reviews 85, 161–174.