eccentricity function

double eccentricity(
  1. double t
)

Eccentricity of Earth's orbit.

Implementation

double eccentricity(double t) {
  return horner(t, [0.016708634, -0.000042037, -0.0000001267]);
}