如何编写以下运算放大器电路的乳胶代码?

如何编写以下运算放大器电路的乳胶代码?

运算放大器图

我不确定如何编写运算放大器电路。有人能帮我尽快编写代码吗?

答案1

这应该能满足您的要求。您只需更改此处或彼处的数值即可延长整个过程。

\documentclass[tikz]{standalone}

\usepackage[american]{circuitikz}

\begin{document}
\begin{tikzpicture}
  \draw
    node[op amp](amp){}
    (amp.out)
      to[short,-*] ++(0.5,0)coordinate(out)
      to[short,-o] ++(1,0) node[right]{$V_{\mathrm{o}}$}
    (amp.-)
      to[short,bipole nodes={none}{circ,color=blue}]
        ++(-.5,0)coordinate(A)node[below,blue]{$A$}
      to[short] ++(0,1) coordinate(tmp)
      to[R,l=$R_y$] (tmp-|out)
      to[short] (out)
    (amp.+)
      to[short] (amp.+-|A)
      to[vsource,l_=$V_{\mathrm{i}}$] ++(0,-1.5) node[sground](gnd){}
    (A)
      to[R,l_=$R_x$] ++(-2.5,0)coordinate(tmp)
      to[short] (tmp|-gnd) node[sground]{}
    ;
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容