is_stable¶
-
plasmapy.atomic.is_stable(particle: plasmapy.atomic.particle_class.Particle, mass_numb: int = None) → bool¶ Return
Truefor stable isotopes and particles andFalsefor unstable isotopes.Parameters: Returns: is_stable –
Trueif the isotope is stable,Falseif it is unstable.Return type: Raises: Examples
>>> is_stable("H-1") True >>> is_stable("tritium") False >>> is_stable("e-") True >>> is_stable("tau+") False