mass_number
- plasmapy.particles.atomic.mass_number( ) int [source]
Get the mass number (the number of protons and neutrons) of an isotope.
- Parameters:
isotope (atom-like) – A string representing an isotope or a neutron; or an instance of the
plasmapy.particles.particle_class.Particle
class.- Returns:
The total number of protons plus neutrons in a nuclide.
- Return type:
- Raises:
InvalidParticleError – If the argument does not correspond to a valid particle.
InvalidIsotopeError – If the argument does not correspond to a valid isotope.
See also
Examples
>>> mass_number("H-1") 1 >>> mass_number("Pb-208") 208 >>> mass_number("tritium") 3 >>> mass_number("alpha") 4