My MWE:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.markings, arrows, arrows.meta,patterns.meta}
\tikzset{
midar/.style 2 args={
very thick,
decoration={name=markings,
mark=at position .55 with {\arrow{latex}},
mark=at position 0 with {\fill circle (2pt);},
mark=at position 1 with {\fill circle (2pt);}}
,postaction=decorate,
},
}
\begin{document}
\begin{tikzpicture}[thick]
\draw[-{Latex}] (0,0) -- (0,5) node[above] {$P$};
\draw[-{Latex}] (0,0) -- (5,0) node[right] {$V$};
\draw[dashed] (0,4) node[left] {$P_{1}$} -| (1,0) node[below] {$V_{1}$};
\draw[dashed] (0,1) node[left] {$P_{2}$} -| (4,0) node[below] {$V_{2}$};
\draw (1,4) node[above left]{1};
\draw (4,1) node[above right]{2};
\draw[midar] (1,4) arc (180:270:3 and 3);
\end{tikzpicture}
\end{document}
This is the picture that I get from the code:
This is an idea for what I'm trying to do:




