The problem is the following:
There is system of differential equations
V = -1; G = 0.1; x[t] = a*Exp[-Sqrt[-1]*p*t];
y[t] = b*Exp[-Sqrt[-1]*p*t]; p = -2 Cos[k];
s = ParametricNDSolveValue[{Sqrt[-1]*x'[t] ==
V*x[t] - F*x[t]*Abs[x[t]]^2 - G*y[t],
Sqrt[-1]*y'[t] == V*y[t] - F*y[t]*Abs[y[t]]^2 - G*x[t], x[0] == 0,
y[0] == 1}, {x, y}, {t, 0, 15}, {F}];
The constraint on $a$ and $b$ is that $a^2+b^2=2$. Mathematica solves this without problem but then I want to get a plot for $F$ on x-axis vs $V-p$ on y-axis, which I am unable to plot. I tried with parametric plot but it gives errors. Any help will be greatly appreciated. Thanks.

