Skip to content

1.0.28

Choose a tag to compare

@hippke hippke released this 13 Jun 18:48
· 13 commits to master since this release
  • Relaxed constraints on minimum stellar mass, stellar radius and planetary period. TLS can now be used to search for periods shorter than 0.6 days. Example usage:
model = transitleastsquares(t, y)
results = model.power(
    R_star_min=0.05,
    M_star_min=0.05,
    R_star_max=0.2,
    M_star_max=0.2,
    M_star=0.1,
    R_star=0.1,
    period_min=0.1,
    period_max=1,
    )

This will generate a grid of 698842 periods from 0.1 to 1.0 days. Attention: short periods require dense grid, which are computationally expensive.

  • Added compatibility with Python 3.9