API Reference
crflux.models
:mod:models --- models of the cosmic ray flux at the top of Earth's atmosphere
This module is a collection of models of the high-energy primary cosmic
ray flux, found in the literature of the last decades. The base class
:class:PrimaryFlux has various methods, which can be employed in lepton flux
calculations, cosmic ray physics, radiation physics etc.
The numbering scheme for nuclei is adapted from the Cosmic Ray Air-Shower Monte
Carlo CORSIKA <https://web.ikp.kit.edu/corsika/>_. Protons have the ID 14. The
composite ID for nuclei follows the formula :math:ID=100 \cdot A + Z, where
:math:A is the mass number and :math:Z the charge. With this scheme one can
easily obtain charge and mass from the ID and vice-versa (see :func:PrimaryFlux.Z_A).
The physics underlying each of the models can be found following the references in this documentation.
.. note::
As always, if you use one of the models for your work, please cite the corresponding
publication!
Example::
import crflux.models as mods
import numpy as np
model = mods.HillasGaisser2012("H3a")
E = np.logspace(1, 11, 100)
pfrac, p, n = model.p_and_n_flux(E)
# With geomagnetic cutoff of 7 GV
model_cut = mods.HillasGaisser2012("H3a", geomagnetic_cutoff=7.0)
pfrac_cut, p_cut, n_cut = model_cut.p_and_n_flux(E)
PrimaryFlux
Base class for primary cosmic ray flux models.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geomagnetic_cutoff
|
float
|
rigidity cutoff in GV. If set, the flux is zeroed below the corresponding energy for each nucleus. For a nucleus with charge Z, the energy cutoff is E_cut = Z * R_cut. |
None
|
Source code in crflux/models.py
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 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
PolyGonato
Bases: PrimaryFlux
J. R. Hoerandel, Astroparticle Physics 19, 193 (2003).
Source code in crflux/models.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
HillasGaisser2012
Bases: PrimaryFlux
Gaisser, T.K., Astroparticle Physics 35, 801 (2012).
Model is based on Hillas ideas and eye-ball fits by T.K. Gaisser. H3a is a 3-'peters cycle' 5 mass group model with mixed composition above the ankle. H4a has protons only in the 3. component.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
str
|
can be either H3a or H4a. |
'H4a'
|
Source code in crflux/models.py
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
H3a_polygonato
Bases: HillasGaisser2012
Modified version of Gaisser, T.K., Astroparticle Physics 35, 801 (2012).
Model is based on Hillas ideas and eye-ball fits by T.K. Gaisser. H3a is a 3-'peters cycle' 5 mass group model with mixed composition above the ankle. H4a has protons only in the 3. component.
This version has a five component poly-gonato at lower energies and resembles H3/4a at energies above the knee.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
str
|
can be either H3a or H4a. |
'H3a'
|
Source code in crflux/models.py
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
GaisserStanevTilav
Bases: PrimaryFlux
T. K. Gaisser, T. Stanev, and S. Tilav, arXiv:1303.3565, (2013).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
str
|
3-gen or 4-gen |
'3-gen'
|
include_heavy_in_total
|
bool
|
if True, the total flux will include the heavy component groups (Te, Hg) as well. Default is False for legacy compatibility. |
False
|
Raises:
| Type | Description |
|---|---|
Exception
|
if |
Source code in crflux/models.py
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
CombinedGHandHG
Bases: PrimaryFlux
A. Fedynitch, J. Becker Tjus, and P. Desiati, Phys. Rev. D 86, 114024 (2012).
In the paper the high energy models were called cHGm for GH+H3a and cHGp for GH+H4a. The names have been changed to use the quite unintuitive names H3a and H4a in ongoing literature.
Source code in crflux/models.py
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
ZatsepinSokolskaya
Bases: PrimaryFlux
The model was first released in V. I. Zatsepin and N. V. Sokolskaya, Astronomy and Astrophysics 458, 1 (2006).
Later, the PAMELA experiment has fitted the parameters of this model to their data in PAMELA Collaboration, O. Adriani et al., Science 332, 69 (2011). Both versions of parameters can be accessed here.
The model does not describe the flux above the knee. Therefore, the highest energies should not exceed 1-10 PeV.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
str
|
'default' for original or 'pamela' for PAMELA parameters |
'pamela'
|
Source code in crflux/models.py
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
GaisserHonda
Bases: PrimaryFlux
5 mass group single power-law model from T.K. Gaisser and M. Honda, Annual Review of Nuclear and Particle Science 52, 153 (2002)
This model was tuned to lower energy baloon data. It fails to describe the flux at and above the knee. A safe range for using it is < 100 TeV/nucleon.
Source code in crflux/models.py
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
Thunman
Bases: PrimaryFlux
Popular broken power-law flux model.
The parameters of this model are taken from the prompt flux calculation paper by M. Thunman, G. Ingelman, and P. Gondolo, Astroparticle Physics 5, 309 (1996). The model contains only protons with a power-law index of -2.7 below the knee, located at 5 PeV, and -3.0 for energies higher than that.
Source code in crflux/models.py
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
SimplePowerlaw27
Bases: PrimaryFlux
Simple E**-2.7 parametrization based on values from
:class:Thunman below knee.
Source code in crflux/models.py
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as :math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
GlobalSplineFitBeta
Bases: PrimaryFlux
Data-driven fit of direct and indirect measurements of the cosmic ray flux and composition. Tracks the mass composition using four leading elements (p, He, O, Fe), whose flux is modeled by shaped spline functions. Assumes fixed flux ratios in rigidity for the flux of subleading elements. Covers the whole rigidity range from 10 GV to 10^11 GeV.
Tabulated ICRC 2017 version. The full interface will become available, when the model is published. The class picks the most recent spline file in the current directory.
Use for reference: Dembinski et al., PoS ICRC2017 533 https://inspirehep.net/literature/1639832
Source code in crflux/models.py
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 | |
p_and_n_flux(E)
Returns tuple with proton fraction, proton flux and neutron flux.
The proton fraction is defined as
:math:\frac{\Phi_p}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns: (float,float,float): proton fraction, proton flux, neutron flux
Source code in crflux/models.py
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 | |
tot_nucleon_flux(E)
Returns total flux of nucleons, the "all-nucleon-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): nucleon flux :math:\Phi_{nucleons} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
935 936 937 938 939 940 941 942 943 944 | |
nucleus_flux(corsika_id, E)
Returns the flux of nuclei corresponding to
the corsika_id at energy E, with optional geomagnetic cutoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
see :mod: |
required |
E
|
float or ndarray
|
laboratory energy of nucleus in GeV |
required |
Returns:
(numpy.ndarray): flux of single nucleus type :math:\Phi_{nucleus}
in :math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
total_flux(E)
Returns total flux of nuclei, the "all-particle-flux".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns:
(numpy.ndarray): particle flux in :math:\Phi_{particles} in
:math:(\text{m}^2 \text{s sr GeV})^{-1}
Source code in crflux/models.py
106 107 108 109 110 111 112 113 114 115 | |
nucleon_gamma(E, rel_delta=0.01)
Returns differential spectral index of all-nucleon-flux obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nucleons
Source code in crflux/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
nucleus_gamma(E, corsika_id, rel_delta=0.01)
Returns differential spectral index of nuclei obtained from a numerical derivative.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nuclei in GeV |
required |
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
rel_delta
|
float
|
range of derivative relative to log10(E) |
0.01
|
Returns:
(numpy.ndarray): spectral index :math:\gamma of nuclei
Source code in crflux/models.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
delta_0(E)
Returns proton excess.
The proton excess is defined as
:math:\delta_0 = \frac{\Phi_p - \Phi_n}{\Phi_p + \Phi_n}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of nucleons in GeV |
required |
Returns:
(numpy.ndarray): proton excess :math:\delta_0
Source code in crflux/models.py
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 | |
lnA(E)
Returns mean logarithmic mass
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
E
|
float or ndarray
|
laboratory energy of particles in GeV |
required |
Returns: (numpy.ndarray): mean (natural) logarithmic mass
Source code in crflux/models.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
Z_A(corsika_id)
Returns charge :math:Z and mass number :math:A corresponding
to corsika_id
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
corsika_id
|
int
|
corsika id of nucleus/mass group |
required |
Returns: (int,int): (Z, A) tuple
Source code in crflux/models.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |