For my class, I have been trying to plot constant resistance and reactance curves on the Smith chart. While the latter appears to be straightforward, the only way I can think of for the former is plotting a group of closely spaced points, which becomes quite memory intensive. My questions are:
- Is there any way efficient way to plot constant resistance curves (red and orange in this case), like the reactance curve (blue)?
- Is there a way to shift the originating point of the blue (reactance) curve to a point say the one intersecting with the red one?
After following the answers from here and here, I have arrived at:
\documentclass[preview]{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\usepgfplotslibrary{smithchart}
\pgfplotsset{compat=1.11}
\begin{document}
\begin{tikzpicture}
\begin{smithchart}
% Reactance plot
\addplot[domain=0:90, samples=600, color=blue] {.5};
% Resistance plot - orange
\foreach \x in {.5, .51,...,5}
{\edef\temp{\noexpand\addplot+[mark=*,
mark options={solid},color={orange},mark size=.2,line width=1] coordinates { (.5,\x) };}\temp}
% Resistance plot - red
\foreach \x in {0, .01,...,.5}
{\edef\temp{\noexpand\addplot+[mark=*,
mark options={solid},color={red},mark size=.2,line width=1] coordinates { (1,\x) };}\temp}
\end{smithchart}
\end{tikzpicture}
\end{document}
which generates the output below:
Thanks!

