eppaurora   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 23
rs 10
c 0
b 0
f 0
wmc 0
1
# Copyright (c) 2020 Stefan Bender
2
#
3
# This file is part of pyeppaurora.
4
# pyeppaurora is free software: you can redistribute it or modify
5
# it under the terms of the GNU General Public License as published
6
# by the Free Software Foundation, version 2.
7
# See accompanying LICENSE file or http://www.gnu.org/licenses/gpl-2.0.html.
8
"""Atmospheric ionization from auroral particle precipitation
9
10
Bundles some of the parametrizations for middle and upper atmospheric
11
ionization and recombination rates for precipitating
12
auroral (100 eV--30 keV) and radiation-belt (30 keV--1 MeV) electrons.
13
"""
14
__version__ = "0.3.2.dev0"
15
16
from .brems import *
17
from .conductivity import *
18
from .electrons import *
19
from .protons import *
20
from .spectra import *
21
from .ssusi import *
22
from .recombination import *
23