ev static method

double ev(
  1. double t
)

Implementation

static double ev(double t) {
  double f = 628.307585 * t;
  return 628.332 +
      21 * math.sin(1.527 + f) +
      0.44 * math.sin(1.48 + f * 2) +
      0.129 * math.sin(5.82 + f) * t +
      0.00055 * math.sin(4.21 + f) * t * t;
}