Skip to content

Commit

Permalink
Merge pull request #122 from namurphy/reorganize-atomic
Browse files Browse the repository at this point in the history
Reorganize and refactor atomic subpackage.  This merge breaks
backward compatibility for the atomic subpackage.
  • Loading branch information
namurphy committed Sep 29, 2017
2 parents c286e55 + 78ca910 commit 7f06dd7
Show file tree
Hide file tree
Showing 10 changed files with 1,154 additions and 706 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,10 @@ ENV/
.#*

# Auxilliary files associated with vim
*.swp
*.swp

# Miscellaneous files
.idea/
Untitled*
untitled*
*debuglog*
7 changes: 4 additions & 3 deletions plasmapy/atomic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Physical and mathematical constants for use within PlasmaPy"""
from .atomic import (element_symbol, isotope_symbol, atomic_number,
from .atomic import (atomic_symbol, isotope_symbol, atomic_number,
mass_number, element_name, standard_atomic_weight,
isotope_mass, ion_mass, nuclear_binding_energy, half_life,
energy_from_nuclear_reaction, is_isotope_stable,
isotope_mass, ion_mass, half_life, is_isotope_stable,
known_isotopes, common_isotopes, stable_isotopes,
isotopic_abundance, charge_state)

from .nuclear import (nuclear_binding_energy, nuclear_reaction_energy)

from .elements import Elements

from .isotopes import Isotopes
Loading

0 comments on commit 7f06dd7

Please sign in to comment.