I have some explicit time-independent vector field on the plane, and I would like to study how points evolve under the flow generated by this vector field. The flow is rather complicated and cannot be solved explicitly.
For my purposes, it is important to analyze how a "curve" of initial conditions end up after a fixed time, say $t=1$. Is there any command in Mathematica that would do this job? I have read much documentation but could not find anything like this. Any help will be greatly appreciated.
To be concrete,
s =
NDSolve[
{x'[t] == -y[t] + x[t]*Log[x[t]], y'[t] == x[t] + y[t]*Log[x[t]],
x[0] == 1, y[0] == 0},
{x, y}, {t, 1}]
and I would like to plot the image of the line segment $1<x<2,\,y=0$ after time 1.


