meepmeep.numba3d.ev_signal_d#
- meepmeep.numba3d.ev_signal_d(time: float | ndarray[tuple[Any, ...], dtype[_ScalarT]], alpha: float, mass_ratio: float, inc: float, tc: float, p: float, c: ndarray[tuple[Any, ...], dtype[_ScalarT]], dc: ndarray[tuple[Any, ...], dtype[_ScalarT]], te: float = 0.0)[source]#
Evaluate the ellipsoidal-variation signal and its parameter derivatives at an absolute time.
Direct counterpart of ev_signal_cd: epoch-folds the absolute time time around the expansion point and delegates to ev_signal_cd.
Accepts a scalar time or a 1-D array of times and dispatches to the appropriate kernel at compile time (inside
@njit) or at call time (pure Python).- Parameters:
- time
floatorndarray Absolute observation time(s) in the same units as tc and p.
- alpha
float Gravity-darkening coefficient (Lillo-Box et al. 2014, Eq. 7).
- mass_ratio
float Planet-to-star mass ratio \(M_p / M_\star\).
- inc
float Orbital inclination [radians]. This is the orbital inclination, the same quantity as the
iaxis of the gradient; its full derivative (the implicit position contribution plus the explicitsin^2 iprefactor) is accumulated into the single inclination slot (slot 3).- tc
float Transit-centre time (time of inferior conjunction), on the same time axis as time.
- p
float Orbital period, used for epoch folding.
- c
NDArray A (3, 5) Taylor coefficient matrix produced by solve3d.
- dc
NDArray A (7, 3, 5) parameter-derivative tensor produced by solve3d_d, with the leading axis ordered as (tc, p, a, i, e, w, lan).
- te
float, optional Expansion-point offset from the transit centre [days] - the same value that was passed to solve3d_d. Defaults to 0.0, the expansion point at the transit centre.
- time
- Returns: