重叠 Circuitikz 和 Pgfplots 图

重叠 Circuitikz 和 Pgfplots 图

我今天的问题是将电路(主要使用 \draw 绘制)安装到 Tikz 轴中。

我正在使用 Axis 命令(使用 \addplot)从一组点绘制一条曲线(到目前为止没有问题),但我无法弄清楚 Tikzpicture 如何处理锚点和所有这些,以使事情不会变得疯狂,而是保持在原位。

为了更清楚起见,下面是我制作 3 个轴的代码(如果您愿意,可以有 3 个子图,2 个在顶部,1 个在左下方):

\begin{tikzpicture}[scale=1]
% Vs(ve) graphique

  \begin{axis}[name=plot1
    ]
    \addplot[black] table {Fig_ELA2/ELA2_P3_C3/ELA2_P3_C1_PP_CLASSE_B/courbes/vs_ve_out.txt};
  \end{axis}
  
% Vs(wt) graphique
  \begin{axis}[name=plot2,at={($(plot1.east)+(1.5cm,0)$)},anchor=west
    ]
    \addplot[black] table {Fig_ELA2/ELA2_P3_C3/ELA2_P3_C1_PP_CLASSE_B/courbes/vs_t_out.txt};
  \end{axis}
  
% Ve(wt) graphique
  \begin{axis}[name=plot3,at={($(plot1.south)-(0,1.5cm)$)},anchor=north
    ]
    \addplot[black] table {Fig_ELA2/ELA2_P3_C3/ELA2_P3_C1_PP_CLASSE_B/courbes/ve_t_out.txt};
  \end{axis}

% Electrical circuit
  \draw
    (0,0) node[njfet](J){$J$}
    (J.S) to[short,-o] ++(0,-0.1) node[left](S){\tiny S} to [R, l_=$R_S$,-*] (0,-3) node(gnd_rs)[ground]{}
    (J.D) to[short,-o] ++(0,0.3) node[left](D){\tiny D} to [R, l=$R_D$] ++(0,2) node[vcc]{\color{green} $V_{CC}$}
    (J.G) to[short,-o] ++(-0.1,0) node[above](G){\tiny G}-- ++(-1,0) node(RG){}
    ;
    \coordinate (gnd_rg) at (RG|-gnd_rs);
    \draw (RG) to [R, l_=$R_G$,-*] (gnd_rg);
    \draw (gnd_rs) to[short,-o] ++(-4,0) node(gnd_ve){};
    \draw (gnd_rs) to[short,-*] ++(1,0) node(gnd_cs){} to[short,-o] ++(2,0) node(gnd_vs){};
    \coordinate (ve) at (gnd_ve|-J.G);
    \draw (ve) to[C,l=$C_{Le}$,o-*] (RG);
    \coordinate (vs) at (gnd_vs|-D);
    \draw (D) to[C,l=$C_{Ls}$,-o] (vs);
    \coordinate (cs) at (S-|gnd_cs);
    \draw (S) -- (cs) to[C,l=$C_S$,] (gnd_cs);
    \draw[-triangle 45, red] (gnd_vs) -- (vs) node[right,pos=0.5]{$v_s(t)$};
    \draw[-triangle 45, red] (gnd_ve) -- (ve) node[left,pos=0.5]{$v_e(t)$};
\end{tikzpicture}
    

很抱歉,我没有提供曲线供您测试,我猜您可能只会制作一些愚蠢的曲线(或者根本没有 addplot)。

那么有没有办法将电路设置为绝对的,并使其在 CSS 中表现得像绝对的(所以不合流程)。

感谢您的帮助 !

答案1

您应该始终尝试发布独立示例,以便想要提供帮助的人可以做到这一点,而无需猜测您的序言或定义。然而,这是一个选择 --- 请注意:

  1. 在您的电路中,您只有一个绝对坐标,即(0,-3)第一行,我已修复它(并使您的电路无法平移)。
  2. 即使如此,电路仍然很大,因此我根据scope环境来缩放它。

所以你可以做这样的事情(手动调整++(6,-5);可以做更自动化的事情,但那是另一个故事,另一天会讲...)

\documentclass[border=10pt]{standalone}
\usepackage[siunitx, RPvoltages]{circuitikz}
\usepackage{pgfplots}\pgfplotsset{compat=newest}
\begin{document}

\begin{tikzpicture}[scale=1]
    % Vs(ve) graphique

    \begin{axis}[name=plot1
        ]
        \addplot[black] {sin(x)};
    \end{axis}

    % Vs(wt) graphique
    \begin{axis}[name=plot2,at={($(plot1.east)+(1.5cm,0)$)},anchor=west
        ]
        \addplot[black] {cos(x)};
    \end{axis}

    % Ve(wt) graphique
    \begin{axis}[name=plot3,at={($(plot1.south)-(0,1.5cm)$)},anchor=north
        ]
        \addplot[black] {x};
    \end{axis}

    % Electrical circuit
    \begin{scope}[scale=0.8, transform shape]
        \draw
            (plot1.south east) ++(6,-5) node[njfet](J){$J$}
            (J.S) to[short,-o] ++(0,-0.1) node[left](S){\tiny S} to [R, l_=$R_S$,-*] ++(0,-3) node(gnd_rs)[ground]{}
            (J.D) to[short,-o] ++(0,0.3) node[left](D){\tiny D} to [R, l=$R_D$] ++(0,2) node[vcc]{\color{green} $V_{CC}$}
            (J.G) to[short,-o] ++(-0.1,0) node[above](G){\tiny G}-- ++(-1,0) node(RG){}
            ;
        \coordinate (gnd_rg) at (RG|-gnd_rs);
        \draw (RG) to [R, l_=$R_G$,-*] (gnd_rg);
        \draw (gnd_rs) to[short,-o] ++(-4,0) node(gnd_ve){};
        \draw (gnd_rs) to[short,-*] ++(1,0) node(gnd_cs){} to[short,-o] ++(2,0) node(gnd_vs){};
        \coordinate (ve) at (gnd_ve|-J.G);
        \draw (ve) to[C,l=$C_{Le}$,o-*] (RG);
        \coordinate (vs) at (gnd_vs|-D);
        \draw (D) to[C,l=$C_{Ls}$,-o] (vs);
        \coordinate (cs) at (S-|gnd_cs);
        \draw (S) -- (cs) to[C,l=$C_S$,] (gnd_cs);
        \draw[->, red] (gnd_vs) -- (vs) node[right,pos=0.5]{$v_s(t)$};
        \draw[->, red] (gnd_ve) -- (ve) node[left,pos=0.5]{$v_e(t)$};
    \end{scope}
\end{tikzpicture}

\end{document}

图片来自上面的代码

相关内容