parabolicDescending function

({double jde, double r}) parabolicDescending(
  1. double q,
  2. double argP,
  3. double timeP
)

Time and distance at descending node for a parabolic orbit.

Implementation

({double jde, double r}) parabolicDescending(
    double q, double argP, double timeP) {
  return _pa(math.pi - argP, q, timeP);
}