費曼圖:雙方交換

費曼圖:雙方交換

在我的 t 通道費曼圖(使用 tikz-Feynman)中,t 通道的下部兩個粒子被切換。看來對於 s 通道,右側粒子也發生了切換。

t 通道代碼:

\documentclass[a4paper]{article}
 \usepackage{physics}
 \usepackage{graphicx}
 \usepackage[compat=1.1.0]{tikz-feynman}

\begin{document}

t-channel 
\[\feynmandiagram [large, vertical=a to b] {
    i1 [particle=\(\nu\)] -- [fermion, momentum=\(q\)] a -- [boson, momentum=\(k\)] f1 [particle=\(W^+\)],
    a -- [fermion, momentum=\(p\)] b,
    i2 [particle=\(\bar\nu\)] -- [anti fermion, momentum=\(q'\)] b,
    b -- [boson, momentum=\(k'\)] f2 [particle=\(W^-\)],
    };
\]

\end{document}

預期輸出:

在此輸入影像描述

得到:

在此輸入影像描述

如何解決這個問題?

答案1

您只需交換下面兩個粒子的順序。

在此輸入影像描述

\[\feynmandiagram [large, vertical=a to b] {
    i1 [particle=\(\nu\)] -- [fermion, momentum=\(q\)] a -- [boson, momentum=\(k\)] f1 [particle=\(W^+\)],
    a -- [fermion, momentum=\(p\)] b,
    b -- [boson, momentum=\(k'\)] f2 [particle=\(W^-\)],
    i2 [particle=\(\bar\nu\)] -- [anti fermion, momentum=\(q'\)] b,
    };
\]

相關內容