Velocity at time t (units/second).
t
@override double velocity(double t) { if (t <= 0) return velocity0; return velocity0 * math.pow(drag, t).toDouble(); }