I'm trying to draw another larger circle that is also centered at (0,0). In words I'd like to "walk out along the top horizontal arm to its halfway point, then draw a circle all the way around to the halfway point on the bottom horizontal arm". How can I turn these words into working code?
% vacuum
\draw (15:8) arc (15:345:8);
\draw (15:8) -- ++(5,0);
\path [name path=vacuum bottom horizontal] (345:8) -- ++(6,0);
\path [name path=vacuum vertical] (15:8) -- ++(5,0) -- ++(0,-15);
\draw[name intersections={of=vacuum bottom horizontal and vacuum vertical, by=bot}]
(15:8) ++(5,0) -- (bot);
\draw (345:8) -- ++(5,0);
This is the way that I've gone about it.
% helmholtz coil
\coordinate (A) at (15:8);
\coordinate (B) at (345:8);
\draw let \p1 = ($(A) +(2.5,0)$),
\p2 = ($(B) +(2.5,0)$),
\n1 = {atan(\y1/\x1)},
\n2 = {atan(\y2/\x2)+360},
\n3 = {veclen(\x1,\y1)}
in
(\n1:\n3) arc (\n1:\n2:\n3);

Thank you all for the answers below, I plan to work through them.

