Standard Model in symmetric phase¶
The SMSP implements the SM in the symmetric phase:
with \(B\) being the U1 field, \(W\) being the SU2 field and \(G\) being the gluon field. The covariant derivative is defined as
which implies for the hypercharges of the quark and lepton representations:
Field |
\(Y_W\) |
---|---|
\(Q_\mathrm{L}\) |
1/3 |
\(L_\mathrm{L}\) |
-1 |
\(u_\mathrm{R}\) |
4/3 |
\(d_\mathrm{R}\) |
-2/3 |
\(l_\mathrm{R}\) |
-1/3 |
The Yukawa couplings are disabled and there is no direct coupling between quarks and the higgs.
The fermionic fields of this model correspond to the ones in the SM. The gauge fields are as follows
Fields |
Recola identifier |
---|---|
\(\mathrm{B}_0\), \(\mathrm{W}^+\), \(\mathrm{W}^-\), \(\mathrm{W}^3\) |
|
Gluon |
|
Power counting¶
The model has been implemented with a power counting (see SM power counting) in the gauge couplings as follows
Coupling |
Order |
\(g_1\) |
\(\mathrm{GC1}\) |
\(g_2\) |
\(\mathrm{GC2}\) |
\(g_s\) |
\(\mathrm{QCD}\) |
Snippet code¶
from pyrecola import *
set_output_file_rcl('*')
set_print_level_squared_amplitude_rcl(2)
set_draw_level_branches_rcl(1)
set_print_level_parameters_rcl(1)
define_process_rcl(1, 'u u~ -> W+ W-', 'NLO')
define_process_rcl(2, 'u u~ -> W3 W3', 'NLO')
generate_processes_rcl()
s = 500.
p1 = [s/2, 0., 0., s/2]
p2 = [s/2, 0., 0.,-s/2]
psp = set_outgoing_momenta_rcl(1, [p1, p2])
compute_process_rcl(1,psp,'NLO')
psp = set_outgoing_momenta_rcl(2, [p1, p2])
compute_process_rcl(2,psp,'NLO')
reset_recola_rcl()
Releases¶
SMSP-2.2.3 newest