Particle¶
-
class
plasmapy.atomic.Particle(argument: Union[str, int], mass_numb: int = None, Z: int = None)¶ Bases:
objectA class for an individual particle or antiparticle.
Parameters: Raises: TypeError– For when any of the arguments or keywords is not of the required type.InvalidParticleError– Raised when the particle input does not correspond to a valid particle or is contradictory.InvalidElementError– For when an attribute is being accessed that requires information about an element, but the particle is not an element, isotope, or ion.InvalidIsotopeError– For when an attribute is being accessed that requires information about an isotope or nuclide, but the particle is not an isotope (or an ion of an isotope).ChargeError– For when either thechargeorinteger_chargeattributes is being accessed but the charge information for the particle is not available.AtomicError– Raised for attempts at converting aParticleobject to abool.
Examples
Particles may be defined using a wide variety of aliases:
>>> proton = Particle('p+') >>> electron = Particle('e-') >>> neutron = Particle('neutron') >>> deuteron = Particle('D', Z=1) >>> alpha = Particle('He', mass_numb=4, Z=2) >>> positron = Particle('positron') >>> hydrogen = Particle(1) # atomic number
The
particleattribute returns the particle’s symbol in the standard form.>>> positron.particle 'e+'
The
atomic_symbol,isotope_symbol, andionic_symbolattributes return the symbols for each of these different types of particles.>>> proton.element 'H' >>> alpha.isotope 'He-4' >>> deuteron.ionic_symbol 'D 1+'
The
ionic_symbolattribute works for neutral atoms if charge information is available.>>> deuterium = Particle("D", Z=0) >>> deuterium.ionic_symbol 'D 0+'
If the particle doesn’t belong to one of those categories, then these attributes return
None.>>> positron.element is None True
The attributes of a
Particleinstance may be used to test whether or not a particle is an element, isotope, or ion.>>> True if positron.element else False False >>> True if deuterium.isotope else False True >>> True if Particle('alpha').is_ion else False True
Many of the attributes return physical properties of a particle.
>>> electron.integer_charge -1 >>> proton.spin 0.5 >>> alpha.atomic_number 2 >>> deuteron.mass_number 2 >>> deuteron.binding_energy.to('MeV') <Quantity 2.22456652 MeV> >>> alpha.charge <Quantity 3.20435324e-19 C> >>> neutron.half_life <Quantity 881.5 s> >>> Particle('C-14').half_life.to(u.year) <Quantity 5730. yr> >>> deuteron.electron_number 0 >>> alpha.neutron_number 2
If a
Particleinstance represents an elementary particle, then the unary(invert) operator may be used to return the particle’s antiparticle.>>> ~electron Particle("e+") >>> ~proton Particle("p-") >>> ~positron Particle("e-")
The
categoriesattribute andis_categorymethod may be used to find and test particle membership in categories.Valid particle categories include:
'actinide','alkali metal','alkaline earth metal','antibaryon','antilepton','antimatter','antineutrino','baryon','boson','charged','electron','element','fermion','halogen','ion','isotope','lanthanide','lepton','matter','metal','metalloid','neutrino','neutron','noble gas','nonmetal','positron','post-transition metal','proton','stable','transition metal','uncharged', and'unstable'.Attributes Summary
antiparticleReturn the corresponding antiparticle, or raise an AtomicErrorif the particle is not an elementary particle.atomic_numberReturn the number of protons in an element, isotope, or ion. baryon_numberReturn the number of baryons in a particle. binding_energyReturn the nuclear binding energy in joules. categoriesReturn the particle’s categories. chargeReturn the particle’s electron charge in coulombs. electron_numberReturn the number of electrons in an ion. elementReturn the atomic symbol if the particle corresponds to an element, and Noneotherwise.element_nameReturn the name of the element corresponding to this particle, or raise an InvalidElementErrorif the particle does not correspond to an element.half_lifeReturn the particle’s half-life in seconds, or a strwith half-life information.integer_chargeReturn the particle’s integer charge. ionic_symbolReturn the ionic symbol if the particle corresponds to an ion or neutral atom, and Noneotherwise.is_electronReturn Trueif the particle is an electron, andFalseotherwise.is_ionReturn Trueif the particle is an ion, andFalseotherwise.isotopeReturn the isotope symbol if the particle corresponds to an isotope, and Noneotherwise.isotopic_abundanceReturn the isotopic abundance of an isotope. lepton_numberReturn 1for leptons,-1for antileptons, and0otherwise.massReturn the mass of the particle in kilograms. mass_numberReturn the number of nucleons in an isotope. neutron_numberReturn the number of neutrons in an isotope or nucleon. nuclide_massReturn the mass of the bare nucleus of an isotope or a neutron. particleReturn the particle’s symbol. periodic_tableReturn a namedtupleto access category, period, group, and block information about an element.spinReturn the spin of the particle. standard_atomic_weightReturn an element’s standard atomic weight in kg. Methods Summary
is_category(*category_tuple, require, …)Determine if the particle meets categorization criteria. Attributes Documentation
-
antiparticle¶ Return the corresponding antiparticle, or raise an
AtomicErrorif the particle is not an elementary particle.This attribute may be accessed by using the unary operator
acting on aParticleinstance.Examples
>>> electron = Particle('e-') >>> electron.antiparticle Particle("e+")
>>> antineutron = Particle('antineutron') >>> ~antineutron Particle("n")
-
atomic_number¶ Return the number of protons in an element, isotope, or ion.
If the particle is not an element, then this attribute will raise an
InvalidElementError.Examples
>>> proton = Particle('p+') >>> proton.atomic_number 1 >>> curium = Particle('Cm') >>> curium.atomic_number 96
-
baryon_number¶ Return the number of baryons in a particle.
This attribute will return the number of protons and neutrons minus the number of antiprotons and antineutrons. The baryon number is equivalent to the mass number for isotopes.
If the baryon number is unavailable, then this attribute will raise a
MissingAtomicDataError.Examples
>>> alpha = Particle('alpha') >>> alpha.baryon_number 4
-
binding_energy¶ Return the nuclear binding energy in joules.
This attribute will raise an
InvalidIsotopeErrorif the particle is not a nucleon or isotope.Examples
>>> alpha = Particle('alpha') >>> alpha.binding_energy <Quantity 4.53346938e-12 J> >>> Particle('T').binding_energy.to('MeV') <Quantity 8.48179621 MeV>
-
categories¶ Return the particle’s categories.
Examples
>>> gold = Particle('Au') >>> 'transition metal' in gold.categories True >>> 'antilepton' in gold.categories False
-
charge¶ Return the particle’s electron charge in coulombs.
This attribute will raise a
ChargeErrorif the charge has not been specified.Examples
>>> electron = Particle('e-') >>> electron.charge <Quantity -1.60217662e-19 C>
-
electron_number¶ Return the number of electrons in an ion.
This attribute will return the number of bound electrons in an ion, or
1for an electron.If this particle is not an ion or electron, then this attribute will raise an
InvalidIonError.Examples
>>> Particle('Li 0+').electron_number 3 >>> Particle('e-').electron_number 1
-
element¶ Return the atomic symbol if the particle corresponds to an element, and
Noneotherwise.Examples
>>> alpha = Particle('alpha') >>> alpha.element 'He'
-
element_name¶ Return the name of the element corresponding to this particle, or raise an
InvalidElementErrorif the particle does not correspond to an element.Examples
>>> tritium = Particle('T') >>> tritium.element_name 'hydrogen'
-
half_life¶ Return the particle’s half-life in seconds, or a
strwith half-life information.Particles that do not have sufficiently well-constrained half-lives will return a
strcontaining the information that is available about the half-life and issue aMissingAtomicDataWarning.Examples
>>> neutron = Particle('n') >>> neutron.half_life <Quantity 881.5 s>
-
integer_charge¶ Return the particle’s integer charge.
This attribute will raise a
ChargeErrorif the charge has not been specified.Examples
>>> muon = Particle('mu-') >>> muon.integer_charge -1
-
ionic_symbol¶ Return the ionic symbol if the particle corresponds to an ion or neutral atom, and
Noneotherwise.Examples
>>> deuteron = Particle('deuteron') >>> deuteron.ionic_symbol 'D 1+' >>> hydrogen_atom = Particle('H', Z=0) >>> hydrogen_atom.ionic_symbol 'H 0+'
-
is_electron¶ Return
Trueif the particle is an electron, andFalseotherwise.Examples
>>> Particle('e-').is_electron True >>> Particle('e+').is_electron False
-
is_ion¶ Return
Trueif the particle is an ion, andFalseotherwise.Examples
>>> Particle('D+').is_ion True >>> Particle('H-1 0+').is_ion False >>> Particle('e+').is_ion False
-
isotope¶ Return the isotope symbol if the particle corresponds to an isotope, and
Noneotherwise.Examples
>>> alpha = Particle('alpha') >>> alpha.isotope 'He-4'
-
isotopic_abundance¶ Return the isotopic abundance of an isotope.
If the isotopic abundance is not available, this attribute will raise a
MissingAtomicDataError. If the particle is not an isotope or is an ion of an isotope, then this attribute will raise anInvalidIsotopeError.Examples
>>> D = Particle('deuterium') >>> D.isotopic_abundance 0.000115
-
lepton_number¶ Return
1for leptons,-1for antileptons, and0otherwise.This attribute returns the number of leptons minus the number of antileptons, excluding bound electrons in an atom or ion.
If the lepton number is unavailable, then this attribute will raise a
MissingAtomicDataError.Examples
>>> Particle('e-').lepton_number 1 >>> Particle('mu+').lepton_number -1 >>> Particle('He-4 0+').lepton_number 0
-
mass¶ Return the mass of the particle in kilograms.
If the particle is an element and not an isotope or ion, then this attribute will return the standard atomic weight, if available.
If the particle is an isotope but not an ion, then this attribute will return the isotopic mass, including bound electrons.
If the particle is an ion, then this attribute will return the mass of the element or isotope (as just described) minus the product of the integer charge and the electron mass.
For special particles, this attribute will return the standard value for the particle’s mass.
If the mass is unavailable (e.g., for neutrinos or elements with no standard atomic weight), then this attribute will raise a
MissingAtomicDataError.Examples
>>> Particle('He').mass <Quantity 6.64647688e-27 kg> >>> Particle('He+').mass <Quantity 6.64556594e-27 kg> >>> Particle('He-4 +1').mass <Quantity 6.64556803e-27 kg> >>> Particle('alpha').mass <Quantity 6.64465709e-27 kg>
-
mass_number¶ Return the number of nucleons in an isotope.
This attribute will return the number of protons plus the number of neutrons in an isotope or nuclide.
If the particle is not an isotope, then this attribute will raise an
InvalidIsotopeError.Examples
>>> alpha = Particle('helium-4 2+') >>> alpha.mass_number 4
-
neutron_number¶ Return the number of neutrons in an isotope or nucleon.
This attribute will return the number of neutrons in an isotope, or
1for a neutron.If this particle is not an isotope or neutron, then this attribute will raise an
InvalidIsotopeError.Examples
>>> alpha = Particle('He-4++') >>> alpha.neutron_number 2 >>> Particle('n').neutron_number 1
-
nuclide_mass¶ Return the mass of the bare nucleus of an isotope or a neutron.
This attribute will raise a
InvalidIsotopeErrorif the particle is not an isotope or neutron, or aMissingAtomicDataErrorif the isotope mass is not available.Examples
>>> deuterium = Particle('D') >>> deuterium.nuclide_mass <Quantity 3.34358372e-27 kg>
-
particle¶ Return the particle’s symbol.
Examples
>>> electron = Particle('electron') >>> electron.particle 'e-'
-
periodic_table¶ Return a
namedtupleto access category, period, group, and block information about an element.If the particle is not an element, isotope, or ion, then this attribute will raise an
InvalidElementError.Examples
>>> gold = Particle('Au') >>> gold.periodic_table.category 'transition metal' >>> gold.periodic_table.period 6 >>> gold.periodic_table.group 11 >>> gold.periodic_table.block 'd'
-
spin¶ Return the spin of the particle.
If the spin is unavailable, then a
MissingAtomicDataErrorwill be raised.Examples
>>> positron = Particle('e+') >>> positron.spin 0.5
-
standard_atomic_weight¶ Return an element’s standard atomic weight in kg.
If the particle is isotope or ion or not an element, this attribute will raise an
InvalidElementError.If the element does not have a defined stsandard atomic weight, this attribute will raise a
MissingAtomicDataError.Examples
>>> oxygen = Particle('O') >>> oxygen.standard_atomic_weight <Quantity 2.65669641e-26 kg>
Methods Documentation
-
is_category(*category_tuple, require: Union[str, typing.Set, typing.Tuple, typing.List] = set(), any_of: Union[str, typing.Set, typing.Tuple, typing.List] = set(), exclude: Union[str, typing.Set, typing.Tuple, typing.List] = set()) → bool¶ Determine if the particle meets categorization criteria.
Return
Trueif the particle is in all of the inputted categories, andFalsethe particle is not.Required categories may be entered as positional arguments, including as a
list,set, ortupleof required categories. These may also be included using therequirekeyword argument. This method will returnFalseif the particle is not in all of the required categories.If categories are inputted using the
any_ofkeyword argument, then this method will returnFalseif the particle is not of any of the categories inany_of.If the
excludekeyword is set, then this method will returnFalseif the particle is in any of the excluded categories, whether or not the particle matches the other criteria.Examples
>>> Particle('e-').is_category('lepton') True >>> Particle('p+').is_category('baryon', exclude='charged') False >>> Particle('n').is_category({'matter', 'baryon'}, exclude={'charged'}) True >>> Particle('mu+').is_category('antilepton', exclude='baryon') True