|
| 1 | +##### |
| 2 | +# Perturbative one-photon Compton scattering |
| 3 | +# Implementation of the cross section interface |
| 4 | +##### |
| 5 | + |
| 6 | +function _incident_flux( |
| 7 | + proc::Compton, model::PerturbativeQED, in_ps::AbstractVector{T} |
| 8 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 9 | + return prod(in_ps) |
| 10 | +end |
| 11 | + |
| 12 | +function _matrix_element( |
| 13 | + proc::Compton, |
| 14 | + model::PerturbativeQED, |
| 15 | + in_ps::AbstractVector{T}, |
| 16 | + out_ps::AbstractVector{T}, |
| 17 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 18 | + return _pert_compton_matrix_element(proc, in_ps, out_ps) |
| 19 | +end |
| 20 | + |
| 21 | +""" |
| 22 | +
|
| 23 | +!!! note "Convention" |
| 24 | +
|
| 25 | + We average over the initial spins and pols, and sum over final. |
| 26 | +""" |
| 27 | +function _averaging_norm(proc::Compton) |
| 28 | + normalizations = number_of_spin_pol.(_in_spin_and_pol(proc)) |
| 29 | + return inv(prod(normalizations)) |
| 30 | +end |
| 31 | + |
| 32 | +function _all_onshell( |
| 33 | + proc::Compton, in_ps::AbstractVector{T}, out_ps::AbstractVector{T} |
| 34 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 35 | + sq_in_moms = getMass2.(in_ps) |
| 36 | + sq_out_moms = getMass2.(out_ps) |
| 37 | + sq_in_masses = mass.(incoming_particles(proc)) .^ 2 |
| 38 | + sq_out_masses = mass.(outgoing_particles(proc)) .^ 2 |
| 39 | + return isapprox(sq_in_moms, SVector(sq_in_masses)) && |
| 40 | + isapprox(sq_out_moms, SVector(sq_out_masses)) |
| 41 | +end |
| 42 | + |
| 43 | +function _is_in_phasespace( |
| 44 | + proc::Compton, |
| 45 | + model::PerturbativeQED, |
| 46 | + in_ps_def::AbstractPhasespaceDefinition, |
| 47 | + in_ps::AbstractVector{T}, |
| 48 | + out_ps_def::AbstractPhasespaceDefinition, |
| 49 | + out_ps::AbstractVector{T}, |
| 50 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 51 | + return (!isapprox(sum(in_ps), sum(out_ps))) ? false : _all_onshell(proc, in_ps, out_ps) |
| 52 | +end |
| 53 | + |
| 54 | +@inline function _phase_space_factor( |
| 55 | + proc::Compton, |
| 56 | + model::PerturbativeQED, |
| 57 | + in_ps_def::AbstractPhasespaceDefinition, |
| 58 | + in_ps::AbstractVector{T}, |
| 59 | + out_ps_def::AbstractPhasespaceDefinition, |
| 60 | + out_ps::AbstractVector{T}, |
| 61 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 62 | + return _pert_compton_ps_fac(in_ps_def, in_ps[2], out_ps_def, out_ps[2]) |
| 63 | +end |
| 64 | + |
| 65 | +####### |
| 66 | +# Matrix elements |
| 67 | +####### |
| 68 | + |
| 69 | +@inline function _pert_compton_matrix_element( |
| 70 | + proc::Compton, in_ps::AbstractVector{T}, out_ps::AbstractVector{T} |
| 71 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 72 | + in_electron_mom = in_ps[1] |
| 73 | + in_photon_mom = in_ps[2] |
| 74 | + out_electron_mom = out_ps[1] |
| 75 | + out_photon_mom = out_ps[2] |
| 76 | + |
| 77 | + in_electron_state = base_state(Electron(), Incoming(), in_electron_mom, proc.in_spin) |
| 78 | + in_photon_state = base_state(Photon(), Incoming(), in_photon_mom, proc.in_pol) |
| 79 | + |
| 80 | + out_electron_state = base_state(Electron(), Outgoing(), out_electron_mom, proc.out_spin) |
| 81 | + |
| 82 | + out_photon_state = base_state(Photon(), Outgoing(), out_photon_mom, proc.out_pol) |
| 83 | + return _pert_compton_matrix_element( |
| 84 | + in_electron_mom, |
| 85 | + in_electron_state, |
| 86 | + in_photon_mom, |
| 87 | + in_photon_state, |
| 88 | + out_electron_mom, |
| 89 | + out_electron_state, |
| 90 | + out_photon_mom, |
| 91 | + out_photon_state, |
| 92 | + ) |
| 93 | +end |
| 94 | + |
| 95 | +function _pert_compton_matrix_element( |
| 96 | + in_electron_mom::T, |
| 97 | + in_electron_state, |
| 98 | + in_photon_mom::T, |
| 99 | + in_photon_state, |
| 100 | + out_electron_mom::T, |
| 101 | + out_electron_state, |
| 102 | + out_photon_mom::T, |
| 103 | + out_photon_state, |
| 104 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 105 | + base_states_comb = Iterators.product( |
| 106 | + QEDbase._as_svec(in_electron_state), |
| 107 | + QEDbase._as_svec(in_photon_state), |
| 108 | + QEDbase._as_svec(out_electron_state), |
| 109 | + QEDbase._as_svec(out_photon_state), |
| 110 | + ) |
| 111 | + |
| 112 | + matrix_elements = Vector{ComplexF64}() |
| 113 | + sizehint!(matrix_elements, length(base_states_comb)) |
| 114 | + for (in_el, in_ph, out_el, out_ph) in base_states_comb |
| 115 | + push!( |
| 116 | + matrix_elements, |
| 117 | + _pert_compton_matrix_element_single( |
| 118 | + in_electron_mom, |
| 119 | + in_el, |
| 120 | + in_photon_mom, |
| 121 | + in_ph, |
| 122 | + out_electron_mom, |
| 123 | + out_el, |
| 124 | + out_photon_mom, |
| 125 | + out_ph, |
| 126 | + ), |
| 127 | + ) |
| 128 | + end |
| 129 | + |
| 130 | + return matrix_elements |
| 131 | +end |
| 132 | + |
| 133 | +function _pert_compton_matrix_element_single( |
| 134 | + in_electron_mom::T, |
| 135 | + in_electron_state::BiSpinor, |
| 136 | + in_photon_mom::T, |
| 137 | + in_photon_state::SLorentzVector, |
| 138 | + out_electron_mom::T, |
| 139 | + out_electron_state::AdjointBiSpinor, |
| 140 | + out_photon_mom::T, |
| 141 | + out_photon_state::SLorentzVector, |
| 142 | +) where {T<:QEDbase.AbstractFourMomentum} |
| 143 | + in_ph_slashed = slashed(in_photon_state) |
| 144 | + out_ph_slashed = slashed(out_photon_state) |
| 145 | + |
| 146 | + prop1 = _fermion_propagator(in_photon_mom + in_electron_mom, mass(Electron())) |
| 147 | + prop2 = _fermion_propagator(in_electron_mom - out_photon_mom, mass(Electron())) |
| 148 | + |
| 149 | + # TODO: fermion propagator is not yet in QEDbase |
| 150 | + diagram_1 = |
| 151 | + out_electron_state * |
| 152 | + (out_ph_slashed * (prop1 * (in_ph_slashed * in_electron_state))) |
| 153 | + diagram_2 = |
| 154 | + out_electron_state * |
| 155 | + (in_ph_slashed * (prop2 * (out_ph_slashed * in_electron_state))) |
| 156 | + |
| 157 | + result = diagram_1 + diagram_2 |
| 158 | + |
| 159 | + # TODO: find (preferably unitful) global provider for physical constants |
| 160 | + # elementary charge |
| 161 | + return ELEMENTARY_CHARGE_SQUARE * result |
| 162 | +end |
| 163 | + |
| 164 | +####### |
| 165 | +# Phase space factors |
| 166 | +####### |
| 167 | + |
| 168 | +function _pert_compton_ps_fac( |
| 169 | + in_ps_def::PhasespaceDefinition{inCS,ElectronRestFrame}, |
| 170 | + in_photon_mom, |
| 171 | + out_ps_def::PhasespaceDefinition{SphericalCoordinateSystem}, |
| 172 | + out_photon_mom, |
| 173 | +) where {inCS} |
| 174 | + # TODO |
| 175 | + omega = getE(in_photon_mom) |
| 176 | + omega_prime = getE(out_photon_mom) |
| 177 | + return omega_prime^2 / (16 * pi^2 * omega * mass(Electron())) |
| 178 | +end |
0 commit comments