epsilon = 0.1 # Initial velocity = 18000 * sqrt(epsilon) mi/hr!
tMax0 = 2
tMax1 = 2.14
# Numerically solve
solver.ode_solve(params = [epsilon], t_span = [0, tMax1], num_points = 1000)
# Plot
(plot(x0, (t, 0, tMax0), color = 'red')
+ plot(x0 + epsilon * x1, (t, 0, tMax1), color = 'green')
+ line(((s[0], s[1][0]) for s in solver.solution), color = 'blue')).show(axes_labels = ('t', 'x'))