Forward modelling observed temperatures #919
jsimpson-astro
started this conversation in
Questions
Replies: 1 comment 5 replies
-
Hi Jordan, |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi PHOEBE team,
I am running a relatively simple model grid on some irradiated MS + NS binaries with PHOEBE, with the goal of simulating the temperature that would be observed (i.e. in optical spectra) at different orbital phases and in phase bins of varying width.
Currently I have something working that gives reasonable temperatures, but I wanted to check the logic is correct.
What I am doing right now:
np.average(teffs**4, weights=mus*areas)**0.25
or((mus * areas * teffs**4).sum() / (mus * areas).sum())**0.25
.(obs_teffs**4).mean()**0.25
.So then I have (I hope) temperatures at a given phase bin that should approximate what would be observed from a spectroscopic measurement over the same phases.
Is there anything crucial I've missed here within PHOEBE? I had a look at how flux-weighted RVs are done, with abs_intensities weighting, but I do not have this as I am only working with the mesh dataset.
Thank you for your help, and your hard work as always!
Jordan
Beta Was this translation helpful? Give feedback.
All reactions