phoebe-project / phoebe2

PHOEBE - Eclipsing Binary Star Modeling Software
http://phoebe-project.org
GNU General Public License v3.0
80 stars 30 forks source link

Passband tables at mu=0 are overly nulled #753

Closed aprsa closed 1 year ago

aprsa commented 1 year ago

Some tables (most notably ldint, but possibly the entire Imu table) have 2888 null values but only 2632 are expected. This stems from the manual extension of the grid that was done way back when and needs to be fixed. The easiest to fix on-the-fly, without recomputing, is something along the lines of:

nanmask = np.isnan(ldtable[:,:,:,1])
ldtable[:,:,:,0] = 8.93456436e-10
ldtable[:,:,:,0][nanmask] = np.nan
aprsa commented 1 year ago

A new set of passbands that fixes this issue has been uploaded to the server.