I am wondering if it is possible to add extra ticks to a plot without declaring them in the options of \begin{axis}. Consider the following example, where I would like to have the coordinates of the calculated point Ua appear on the graph.
\usepackage{tikz}
\usepackage[active,tightpage]{preview} %generates a tightly fitting border around the work
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{2mm}
\usetikzlibrary{intersections}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel={$u$},
ylabel={$p$},
restrict x to domain=0:1.5,
ymin=-0.1, ymax=1.
xtick={0},
ytick={0.1,1}
]
\addplot[name path global=RW,samples=50,domain=0:0.999999]
({sqrt(35)*(1-x^(1/7))},
x);
\addplot[name path global=SW,samples=50,domain=0.1:1]
({(x-0.1)/sqrt(7/400)/(1+sqrt(6/7*(10*x-1)))},
x);
\coordinate[circle,fill,inner sep=1pt, label=above right:{$U_1$}]
(U1) at (axis cs:0,1);
\coordinate[circle,fill,inner sep=1pt, label=below right:{$U_2$}]
(U2) at (axis cs:0,0.1);
\node[name intersections={of=RW and SW, by=Ua},circle,fill,inner sep=1pt]
at (Ua) {};
\end{axis}
\end{document}
Now I could also work without pgfplots, but since I am already using it for other graphs in the document, consistency would be tedious to achieve.
