Skip to content

Latest commit

 

History

History
158 lines (126 loc) · 6.69 KB

glossary.rst

File metadata and controls

158 lines (126 loc) · 6.69 KB

plasmapy

Glossary

args

An abbreviation for positional arguments.

-like

Used to indicate an object of that type or that can instantiate that type. For example, "He 2+" is particle-like because it can be used to instantiate .

charge number

The charge of a particle in units of elementary charge.

integration test

An integration test verifies that multiple software components work together as intended.

Compared to a unit test, an integration test is typically harder to write, slower to run, more difficult to maintain, and less useful at pinpointing the specific cause of a problem. However, integration tests are able to find problems that unit tests cannot. In particular, integration tests are able to find problems at the interfaces between different modules. On average, each integration test covers more lines of code than each related unit test. Because unit tests and integration tests complement each other, both are important constituents of a test suite.

keyword-only

An argument or parameter is keyword-only when the argument must be provided with the name of the corresponding parameter.

If z is a keyword-only parameter to f(z), then the argument 2 can be provided as f(z=2) but not f(2).

kwargs

An abbreviation for keyword arguments.

lite-function lite-functions A lite weight version of an existing plasmapy function, typically a formulary function. These functions are intended for computational use where speed matters more than anything else, and as such all argument safeguards have been stripped away to leave the most fundamental calculation possible. A few things to know about lite-functions:

  • Lite-functions are a flavor of existing plasmapy functionality and are denoted with a trailing _lite to the name. For example, ~plasmapy.formulary.speeds.thermal_speed_lite is the lite-function associated with ~plasmapy.formulary.speeds.thermal_speed.
  • Lite-functions are typically bound to their normal version as the lite attribute. For example, ~plasmapy.formulary.speeds.thermal_speed_lite can be accessed as thermal_speed.lite.
  • Lite-functions view all input and output arguments as being in SI units.
  • UNITS ARE NOT VALIDATED BY THE FUNCTIONS. It is solely up to the user to pass in parameters with the correct units.
  • When possible, lite-functions are decorated with numba.jit (or the like) for an additional speed boost.
particle-like

An object is particle-like if it is a or , or can be cast into one.

An element may be represented by a string containing the atomic symbol (case-sensitive), the name of the element, or an integer representing the atomic number. The element iron can be represented as "Fe", "iron", or 26.

An isotope may be represented by a string that contains an atomic symbol or element name, followed by a hyphen and the mass number (with no spaces in between). The isotope 56Fe can be represented as "Fe-56", or "iron-56". 2H can be represented by "D" or "deuterium", and 3H can be represented by "T" or "tritium".

An ion or neutral atom may be represented by a string that contains a representation of an element or isotope, followed by charge information which is typically an integer representing the charge number and a plus or minus sign to indicate the charge. For example, a deuteron may be represented as "D 1+" and 56Fe1+ may be represented as "Fe-56 1+".

A special particle may be represented by a string that contains the name of the particle (case insensitive) or a standard symbol for it (case insensitive). A neutron can be represented as "n" or "neutron"; a proton can be represented as "p+", "p", or "proton"; and an electron can be represented by "e-", "e", or "electron".

instances are not particle-like because, without normalization information, they do not uniquely identify a physical particle.

For more complete details, refer to .

particle-list-like

An object is particle-list-like if it is a , or can be cast into one.

For more complete details, refer to .

real number

Any numeric type that represents a real number. This could include a float, int, a dimensionless , or any of the numpy.number types. Note that if a PlasmaPy function expects a dimensional and a real number is provided, then the real number is often assumed to have the appropriate SI units.

temperature

Most functions in PlasmaPy accept temperature, T, as a ~astropy.units.Quantity with units of temperature (e.g., kelvin) or energy (e.g., electron-volts). A value for energy that is provided will be divided by the Boltzmann constant, kB, to be converted into units of temperature.

unit test

A unit test verifies a single unit of behavior, does it quickly, and does it in isolation from other tests :citekhorikov:2020.

Unit tests are intended to provide fast feedback that help pinpoint the locations of errors. Unit tests often abide by the following pattern :citeosherove:2013:

  1. Arrange: gather inputs and get the system to the state in which the test is expected to run.
  2. Act: make the system under test undertake the operation that is being tested.
  3. Assert: verify that the actual outcome of the act phase matches the expected outcome.

In a unit test for a function, the arrange phase involves collecting or constructing the inputs for the function. The act phase occurs when the function is called with those inputs. The assert phase is when the value returned by the function is compared to the expected result.