sunset function

double sunset(
  1. Ecliptic cOnMoon,
  2. double jde,
  3. Planet earth
)

Time of sunset for a point on the Moon near the given jde.

Implementation

double sunset(Ecliptic cOnMoon, double jde, Planet earth) {
  jde += _srCorr(cOnMoon, jde, earth);
  return jde + _srCorr(cOnMoon, jde, earth);
}