I have a plot that requires 3 curves. For the plot, [x] is a function of [v].
For each of the curves, I need to find the average [x] value and the average [v] value.
I figured out how to create the plot, but I have no idea how to extract the coordinates so I can get the average. I included the code from mathematical for one of the plots and the generated plot.

p3 = ContourPlot[{v^2/2 +
1.01/(1.01 - 1) ((0.7/(v x^2))^(1.01 - 1) - 1) == 1/x,
v^2/2 + 1.01/(1.01 - 1) ((1.092/(v x^2))^(1.01 - 1) - 1) == 1/x,
v^2/2 + 1.01/(1.01 - 1) ((1.3/(v x^2))^(1.01 - 1) - 1) == 1/x}, {x,
0.2, 2}, {v, 0.2, 2.5},
PlotLegends ->
Placed[{"\[Lambda]<\[Lambda]c", "\[Lambda]=\[Lambda]c",
"\[Lambda]>\[Lambda]c"}, {0.8, 0.5}],
PlotLabel -> Style["\[Gamma]=1.01", Blue, 20],
AspectRatio -> Automatic]
Cases[Normal@ p3, Line[pts_] :> pts, All]– MarcoB Dec 15 '21 at 02:11RegionCentroid? – cvgmt Dec 15 '21 at 02:21Cases[Normal@p3, Line[pts_] :> Mean[pts], All]? – kglr Dec 15 '21 at 04:04