here I want to plot the v vs p ...the code I used here...
Clear["Global`*"]
p'[v] = (((c1^2 + c2^2 + u*v)*(v + u)*v)/(d1^2*(v^2 - c1^2)*p*
v)) + ((d1^2*
p^2 (v^2 + c1^2 + (v^2 - c1^2)^2/2*c2^2))/(d1^2*(v^2 - c1^2)*p*
v));
p1 = Integrate[p'[v], v];
now what should I do get the plot v vs p1....
