Total Complexity | 0 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # coding: utf-8 |
||
2 | # Copyright (c) 2023 Stefan Bender |
||
3 | # |
||
4 | # This file is part of pyeppaurora. |
||
5 | # pyeppaurora is free software: you can redistribute it or modify |
||
6 | # it under the terms of the GNU General Public License as published |
||
7 | # by the Free Software Foundation, version 2. |
||
8 | # See accompanying LICENSE file or http://www.gnu.org/licenses/gpl-2.0.html. |
||
9 | """Empirical models for electron energy and flux and ionization rates |
||
10 | |||
11 | Implements the empirical proxy-driven models for auroral electrons, |
||
12 | providing the proxy driven ionization rate model described in [1]_ |
||
13 | and the empirical electron energy and flux model described in [2]_. |
||
14 | |||
15 | .. [1] Bender et al., in prep., 2023, preprint: https://doi.org/10.48550/arXiv.2312.11130 |
||
16 | .. [2] Zhang and Paxton, JASTP, 70, 1231--1242, 2008, https://doi.org/10.1016/j.jastp.2008.03.008 |
||
17 | """ |
||
18 | |||
19 | from .ssusiq2023 import * |
||
20 | from .zhangpaxton2008 import * |
||
21 |