reaction Module
Description of a reaction (or decay) from a kinematics perspective
Decay
A two-body decay kinematics calculation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parent
|
NucleusData
|
The parent (decaying) nucleus |
required |
residual_1
|
NucleusData
|
The outgoing (angle sampled) nucleus |
required |
Attributes:
Name | Type | Description |
---|---|---|
parent |
NucleusData
|
The parent (decaying) nucleus |
residual_1 |
NucleusData
|
The outgoing (angle sampled) nucleus |
residual_2 |
NucleusData
|
The excited outgoing (angle calculated) nucleus |
decay_symbol |
str
|
The decay equation |
Source code in src/attpc_engine/kinematics/reaction.py
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 |
|
__str__()
Get the decay string
Returns:
Type | Description |
---|---|
str
|
The decay equation as a string |
calculate(parent_vector, residual_1_polar, residual_1_azimuthal, residual_2_excitation)
Calculate the kinematics for a set of phase space parameters
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parent_vector
|
MomentumObject4D
|
The momentum 4-vector of the parent (decaying) nucleus |
required |
residual_1_polar
|
float
|
The polar angle of residual_1 in the parent center-of-mass frame in radians |
required |
residual_1_azimuthal
|
float
|
The azimuthal angle of residual_1 in the parent center-of-mass frame in radians |
required |
residual_2_excitation
|
float
|
The excitation energy of residual_2 in MeV |
required |
Returns:
Type | Description |
---|---|
list[MomentumObject4D]
|
The set of calculated momentum 4-vectors in the lab frame |
Source code in src/attpc_engine/kinematics/reaction.py
is_excitation_allowed(parent_vector, residual_2_excitation)
Check if a given exctiation, parent vector is energetically allowed
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parent_vector
|
MomentumObject4D
|
The momentum 4-vector of the parent (decaying) nucleus |
required |
residual_2_excitation
|
float
|
The residual excitation energy in MeV |
required |
Returns:
Type | Description |
---|---|
bool
|
True if allowed, False if not |
Source code in src/attpc_engine/kinematics/reaction.py
Reaction
A two-body kinematics calculation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target
|
NucleusData
|
The target nucleus |
required |
projectile
|
NucleusData
|
The projectile (beam) nucleus |
required |
ejectile
|
NucleusData
|
The ejectile (outgoing) nucleus |
required |
Attributes:
Name | Type | Description |
---|---|---|
target |
NucleusData
|
The target nucleus |
projectile |
NucleusData
|
The projectile (beam) nucleus |
ejectile |
NucleusData
|
The outgoing (angle sampled) nucleus |
residual |
NucleusData
|
The excited outgoing (angle calculated) nucleus |
reaction_symbol |
str
|
The reaction equation |
Source code in src/attpc_engine/kinematics/reaction.py
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 |
|
__str__()
Get the reaction string
Returns:
Type | Description |
---|---|
str
|
The reaction equation as a string |
calculate(projectile_energy, ejectile_polar, ejectile_azimuthal, residual_excitation)
Calculate the kinematics for a set of phase space parameters
Parameters:
Name | Type | Description | Default |
---|---|---|---|
projectile_energy
|
float
|
The projectile kinetic energy in MeV |
required |
ejectile_polar
|
float
|
The ejectile polar angle in the reaction center-of-mass frame in radians |
required |
ejectile_azimuthal
|
float
|
The ejectile azimuthal angle in the reaction center-of-mass frame in radians |
required |
residual_excitation
|
float
|
The residual excitation energy in MeV |
required |
Returns:
Type | Description |
---|---|
list[MomentumObject4D]
|
The set of calculated momentum 4-vectors in the lab frame |
Source code in src/attpc_engine/kinematics/reaction.py
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 |
|
is_excitation_allowed(projectile_energy, residual_excitation)
Check if a given exctiation, projectile energy is energetically allowed
Calculate center-of-mass energy of the system and verify that there is enough energy to make the outgoing products
Parameters:
Name | Type | Description | Default |
---|---|---|---|
projectile_energy
|
float
|
The projectile kinetic energy in MeV |
required |
residual_excitation
|
float
|
The residual excitation energy in MeV |
required |
Returns:
Type | Description |
---|---|
bool
|
True if allowed, False if not |