You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been having this issue that map.flux() and map.design_matrix() are different from sys.flux() and sys.design_matrix(), when they should be the same (same map, same planet and star parameters), but the issue is only in in-transit flux.
Here's the zoomed-in transit flux:
Additionally, I calculated the transit duration given my parameters: a = (1*np.square(truths['planet.porb']/365.25))**(1/3) * 215.03 # Solar radii; b = 0 tdur = truths['planet.porb'] / np.pi * np.arcsin(np.sqrt((truths['planet.r']+1)**2 - b**2) / a)
which gives 0.08418049738331004
and it seems like map.flux() gives incorrect transit duration?
figured it out: map.design_matrix() does not consider planetary mass -- by default, the system assumes the planetary mass of 1, and caused the difference!
Hi into the void!
I've been having this issue that
map.flux()
andmap.design_matrix()
are different fromsys.flux()
andsys.design_matrix()
, when they should be the same (same map, same planet and star parameters), but the issue is only in in-transit flux.Here's the zoomed-in transit flux:
Additionally, I calculated the transit duration given my parameters:
a = (1*np.square(truths['planet.porb']/365.25))**(1/3) * 215.03 # Solar radii;
b = 0
tdur = truths['planet.porb'] / np.pi * np.arcsin(np.sqrt((truths['planet.r']+1)**2 - b**2) / a)
which gives
0.08418049738331004
and it seems like
map.flux()
gives incorrect transit duration?The text was updated successfully, but these errors were encountered: