Skip to content

Table of Isotopes for Julians. Interoperable with `PeriodicTable.jl`

License

Notifications You must be signed in to change notification settings

Gregstrq/IsotopeTable.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IsotopeTable.jl

The package provides PeriodicTable.jl inspired interface to the data on various isotopes. The data on Isotopes was generated using this repo.

Build status (Github Actions) codecov.io

Overview

Similarly to PeriodicTable.jl, IsotopeTable.jl exports the global variable isotopes, which is a collection of Isotope structures.

Accessing Isotopes

In this package, we consider only the isotopes in the nuclear ground states. Therefore, each isotope is uniquely identified by its atomic number (number of protons) and mass number (total number of protons and neutrons). Each isotope corresponds to a unique element of Periodic Table, which has the same atomic number. As such, instead of atomic number, one can use interchangeably element symbol, element name (case insensitive) and even Element structure from PeriodicTable.jl itself!

Let's consider the isotope ¹²C, which has atomic number 6 and mass number 12. These are all the valid ways to access information about it:

indexing interface function interface
atomic and mass numbers isotopes[6, 12] isotopes(6, 12)
symbol, mass number isotopes[:C, 12] isotopes(:C, 12)
symbol + mass number isotopes[:C12] isotopes(:C12)
name, mass number isotopes["carbon", 12] isotopes("carbon", 12)
name + mass number isotopes["carbon12"] isotopes("carbon12")
Element, mass number isotopes[elements[:C], 12] isotopes(elements[:C], 12)

Interfacing with PeriodicTable.jl

As we have already seen, we can use an Element in place of atomic number to access a particular isotope. But there are additional neat tricks in store.

isotopes[elements[:C]] or isotopes(elements[:C]) returns the vector of all the carbon isotopes. Correspondingly, elements[isotopes[:C12]] or elements(isotopes[:C12]) returns the carbon element from PeriodicTable.jl.

Pretty printing

When you look up an isotope in the REPL, the data is pretty printed:

julia> isotopes[:C12]
Carbon ¹²C, Z=6:
               atomic number: 6
                 mass number: 12
           natural abundance: 98.94
                        mass: 12.0 ± 0.0 u
                        spin: 0//1
                      parity: 1
              is radioactive: false
                   half-life: Inf ± 0.0 s
                    g-factor: 0.0 ± 0.0
  electric quadrupole moment: 0.0 ± 0.0 barn

About

Table of Isotopes for Julians. Interoperable with `PeriodicTable.jl`

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages