-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Implementing AGB models #669
Comments
@karllark I'm assuming we need some color or magnitude cut that may depend on the users photometric filter? |
Thinking from the physics model standpoint, it would be based on the evolutionary phase or log(g)/Teff or something like that. Mapping the stellar atmosphere models to the tracks/isochrones is done before we have any photometry computed. |
Not sure the isochrones we download from the website have the evolutionary phase. This needs to be checked via the file (there are lots of columns!). |
The current models have ['Z', 'logz', 'logT', 'Teff', 'Reff', 'logg'] |
But there are is more info (I think) in the downloaded isochrone file. |
I remember that some models that we messed with last year when we were trying to interpolate the stellar models had "evolutionary points" from Phil Rosenfield that indicated evolutionary phase. |
The columns for /astro/mboyer/Science/BEAST/Aringer.AGB.grid.fits are the ones I mentioned. |
How do the points (say in log(T) and log(g)) compare to the Kurucz stellar models? Do they overlap? Do they extend the log(g)-T(eff) coverage? |
So there is some overlap |
Plot? |
Great. I think then there is an "easy" way forward. I think we can just add the models to the stellar atmosphere grid. The ordering does matter. The standard is |
When you say
What do you mean the same? |
If you plot the spectra for the same log(g)/Teff/metallicity from Kurucz and Aringer, do they overlap/look the same? |
Got it, thanks. Is there an easy way to generate the spectra other than through stellib.Kurucz() ? |
Not sure. It's been too long. ;-) |
No worries, I think i've found a way |
The flux units for Kurucz and Aringer seem different. |
Kurucz fluxes in ergs/s/cm2/A Aringer fluxes in (ν · Lν [erg/s]). |
To get spectra use:
|
@karllark How should we proceed in converting the fluxes between the spectra and interpolating them to overlapping wavelengths. Do we have functions already in place for this? |
Not sure. You can look in the kurucz subdir to see (physicsmodel/stars). |
fluxes are normalized and are in ergs/s/cm2/A versus ergs/s |
Putting the script into somewhere in physicsmodel/stars would be great. Hopefully named something descriptive. |
Even normalized, the shapes are different. And you didn't say if they were for the same log(g),Teff. |
That might be why they look different. I didn't specify. |
Specifying g0 doesn't seem to do anything:
|
Need to divide aringer fluxes by the associated frequency (specific luminosity * frequency -- > specific luminosity) and then get them in the form ergs/s/cm2/A. THEN need to interpolate those values to the wavelength grid of the Kurucz models AND extrapolate them toward bluer wavelengths (maybe using a blackbody). These two steps are important otherwise the composite spectral grid will include both sets of wavelength points. @lcjohnso did something similar for BOSZ in IDL in #180 . A function for doing this should be created and added to a file in physicsmodel/stars. |
Aringer models here |
I've parsed the COMARCS models into a useable form, however the flux conversion is tricky. The COMARCS (AGB) models are in specific luminosity νL(ν) (ergs/s). The models need to be in (erg/s/cm2/Å) for the BEAST. I can use the specific luminosity to get a flux (L=4πr^2) and doing some conversions, but for this we need to assume a distance. How does the BEAST currently scale model fluxes by distance? |
Distance is handled by the BEAST in a different part. If you can get the COMARCS models into surface flux units like the other stellar atmosphere models (e.g., ergs/s/cm2/A), then this will be handled. In this case, the cm2 is based on the radius of the star. At least if I understand things correctly. |
The conversion from the stellar atmosphere surface flux is done when the stellar evolutionary results are combined with the stellar atmospheres. This is where the radius is used to compute the luminosity and place star at a default distance. Then the actual distance is applied to get fluxes. Just a FYI. |
Okay great, and we can get radius with logg. Do you know how or in what file the surface flux is scaled by distance (just curious at this point). |
Somewhere in the creation of the spectral grid (not SED grid). To my memory. |
Okay it looks like the SEDs are scaled to 10pc and then again by the distance in |
That sound like what I remember. ;-) |
Here is the plot I made when I added the models. Looks the like overlap between Tlusty, Kurucz, and Aringer is as expected, so units should be OK... I think. |
@marthaboyer : your plot of the overlap of between Aringer and Kurucz models in Teff/logg space is different than Steve's earlier this this issue. Maybe "cleaning" the Aringer models has already been done? |
It looks like Steve plotted just one metallicity at a time. The weird extra evolutionary tracks are for just 2 metallicities, so they'll only show up if you plot one of those. I'm still working on cleaning them out. It might take a week or two (in the middle of a JWST rehearsal right now), but here's my todo list:
|
Totally awesome. Thanks! |
Now that we have the Padova/Colibri models incorporated into the downloadable data #357 , we need some criteria for when to use the models for a given star. At the moment we are not assuming any dust for these models. As has been discussed in #258 we may want to add dust as well as better resolution for thermal pulses.
The text was updated successfully, but these errors were encountered: