forked from QEDjl-project/QEDprocesses.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcross_sections.jl
304 lines (278 loc) · 10.2 KB
/
cross_sections.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
########################
# differential cross sections and probabilities.
#
# This file contains default implementations for differential and total cross
# sections based on the scattering process interface
########################
############
#
# differential cross sections
#
############
# differential cross sections without energy momentum conservation check
# single in phase space point/ single out phase space point
function _unsafe_differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVector{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVector{T},
) where {T<:QEDbase.AbstractFourMomentum}
I = 1 / (4 * _incident_flux(proc, model, in_phase_space))
return I * _unsafe_differential_probability(
proc,
model,
in_phase_space_def,
in_phase_space,
out_phase_space_def,
out_phase_space,
)
end
# differential cross sections without energy momentum conservation check
# single in phase space point/ several out phase space points
function _unsafe_differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVector{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractMatrix{T},
) where {T<:QEDbase.AbstractFourMomentum}
res = Vector{eltype(T)}(undef, size(out_phase_space, 2))
for i in 1:size(out_phase_space, 2)
res[i] = _unsafe_differential_cross_section(
proc,
model,
in_phase_space_def,
in_phase_space,
out_phase_space_def,
view(out_phase_space, :, i),
)
end
return res
end
# differential cross sections without energy momentum conservation check
# several in phase space points/ one or several out phase space points
function _unsafe_differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractMatrix{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
res = Matrix{eltype(T)}(undef, size(in_phase_space, 2), size(out_phase_space, 2))
for i in 1:size(in_phase_space, 2)
res[i, :] .= _unsafe_differential_cross_section(
proc,
model,
in_phase_space_def,
view(in_phase_space, :, i),
out_phase_space_def,
out_phase_space,
)
end
return res
end
"""
function unsafe_differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVecOrMat{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
Return the differential cross section without checking if the given phase space(s) are physical.
"""
function unsafe_differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVecOrMat{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
size(in_phase_space, 1) == number_incoming_particles(proc) || throw(
DimensionMismatch(
"The number of incoming particles <$(number_incoming_particles(proc))> is inconsistent with input size <$(size(in_phase_space,1))>",
),
)
size(out_phase_space, 1) == number_outgoing_particles(proc) || throw(
DimensionMismatch(
"The number of outgoing particles <$(number_outgoing_particles(proc))> is inconsistent with input size <$(size(out_phase_space,1))>",
),
)
return _unsafe_differential_cross_section(
proc,
model,
in_phase_space_def,
in_phase_space,
out_phase_space_def,
out_phase_space,
)
end
# differential cross sections with energy momentum conservation check
# single in phase space point/ single out phase space point
function _differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVector{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVector{T},
) where {T<:QEDbase.AbstractFourMomentum}
if !_is_in_phasespace(
proc,
model,
in_phase_space_def,
in_phase_space,
out_phase_space_def,
out_phase_space,
)
return zero(eltype(T))
end
return _unsafe_differential_cross_section(
proc,
model,
in_phase_space_def,
in_phase_space,
out_phase_space_def,
out_phase_space,
)
end
# differential cross sections with energy momentum conservation check
# single in phase space point/ several out phase space points
function _differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVector{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractMatrix{T},
) where {T<:QEDbase.AbstractFourMomentum}
res = Vector{eltype(T)}(undef, size(out_phase_space, 2))
for i in 1:size(out_phase_space, 2)
res[i] = _differential_cross_section(
proc,
model,
in_phase_space_def,
in_phase_space,
out_phase_space_def,
view(out_phase_space, :, i),
)
end
return res
end
# differential cross sections with energy momentum conservation check
# several in phase space points/ one or several out phase space points
function _differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractMatrix{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
res = Matrix{eltype(T)}(undef, size(in_phase_space, 2), size(out_phase_space, 2))
for i in 1:size(in_phase_space, 2)
res[i, :] .= _differential_cross_section(
proc,
model,
in_phase_space_def,
view(in_phase_space, :, i),
out_phase_space_def,
out_phase_space,
)
end
return res
end
"""
differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVecOrMat{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
If the given phase spaces are physical, return differential cross section. Zero otherwise
"""
function differential_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVecOrMat{T},
out_phase_space_def::AbstractPhasespaceDefinition,
out_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
size(in_phase_space, 1) == number_incoming_particles(proc) || throw(
DimensionMismatch(
"The number of incoming particles <$(number_incoming_particles(proc))> is inconsistent with input size <$(size(in_phase_space,1))>",
),
)
size(out_phase_space, 1) == number_outgoing_particles(proc) || throw(
DimensionMismatch(
"The number of outgoing particles <$(number_outgoing_particles(proc))> is inconsistent with input size <$(size(out_phase_space,1))>",
),
)
return _differential_cross_section(
proc,
model,
in_phase_space_def,
in_phase_space,
out_phase_space_def,
out_phase_space,
)
end
############
# Total cross sections
############
# total cross section on single phase space point
function _total_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVector{T},
) where {T<:QEDbase.AbstractFourMomentum}
I = 1 / (4 * _incident_flux(proc, model, in_phase_space))
return I * _total_probability(proc, model, in_phase_space_def, in_phase_space)
end
# total cross section on several phase space points
function _total_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractMatrix{T},
) where {T<:QEDbase.AbstractFourMomentum}
res = Vector{eltype(T)}(undef, size(in_phase_space, 2))
for i in 1:size(in_phase_space, 2)
res[i] = _total_cross_section(
proc, model, in_phase_space_def, view(in_phase_space, :, i)
)
end
return res
end
"""
total_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
Return the total cross section for a given combination of scattering process and compute model.
"""
function total_cross_section(
proc::AbstractProcessDefinition,
model::AbstractModelDefinition,
in_phase_space_def::AbstractPhasespaceDefinition,
in_phase_space::AbstractVecOrMat{T},
) where {T<:QEDbase.AbstractFourMomentum}
size(in_phase_space, 1) == number_incoming_particles(proc) || throw(
DimensionMismatch(
"The number of incoming particles <$(number_incoming_particles(proc))> is inconsistent with input size <$(size(in_phase_space,1))>",
),
)
return _total_cross_section(proc, model, in_phase_space_def, in_phase_space)
end