抵抗を含む並列共振回路

抵抗を含む並列共振回路

\documentclass[tikz,border=10pt]{standalone}
\usepackage{circuitikz}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}
\draw(2,1.5)--(2,2);
\draw(2,-1)--(2,-0.5);
\draw(-2,-1)--(4,-1);
\draw(-2,2)--(4,2);
\draw(-2,-1) to[sV] (-2,2);
\draw(1.5,0.5)node{$L$};
\draw[thick,decorate,decoration={coil,amplitude=8pt,
  segment length=8}] (2,1.5) -- (2,-0.5);
\draw(4,-1) to[C=$C$] (4,2);
\draw(0,-1) to[european resistor=$R$] (0,2);
 
\fill[ball color=black](0,-1) circle(0.1);
\fill[ball color=black](0,2)  circle(0.1);
\fill[ball color=black](2,-1) circle(0.1);
\fill[ball color=black](2,2)  circle(0.1);

\draw(-2.5,1)node{+};
 
\draw(-2.5,0)node{$-$};
\draw[-{[scale=1.5]>}](-3,0)--(-3,1)node[above]{$I_\omega$};

\draw[densely dotted](4.5,2)  --  (6,2);
\draw[densely dotted](4.5,-1) -- (6,-1);
\draw[-{[scale=3]>}](5,-1)    --  (5,2);
\draw(5.5,0.5)node{$V$};

\draw[-{[scale=2]>}](4.25,1.75)--(4.25,1.1)node[below]{$I_C$};
\draw[-{[scale=2]>}](0.5,1.75) --(0.5,1.1) node[below]{$I_R$};
\draw[-{[scale=2]>}](2.5,1.75) --(2.5,1.1) node[below]{$I_L$};
\end{tikzpicture}
\end{document}