openmc.stats.Tabular
- class openmc.stats.Tabular(x: Sequence[float], p: Sequence[float], interpolation: str = 'linear-linear', ignore_negative: bool = False)[source]
Piecewise continuous probability distribution.
This class is used to represent a probability distribution whose density function is tabulated at specific values with a specified interpolation scheme.
- Parameters:
x (Iterable of float) – Tabulated values of the random variable
p (Iterable of float) – Tabulated probabilities. For histogram interpolation, if the length of p is the same as x, the last value is ignored. Probabilities p are given per unit of x.
interpolation ({'histogram', 'linear-linear', 'linear-log', 'log-linear', 'log-log'}, optional) – Indicates how the density function is interpolated between tabulated points. Defaults to ‘linear-linear’.
ignore_negative (bool) – Ignore negative probabilities
- Variables:
x (numpy.ndarray) – Tabulated values of the random variable
p (numpy.ndarray) – Tabulated probabilities
interpolation ({'histogram', 'linear-linear', 'linear-log', 'log-linear', 'log-log'}) – Indicates how the density function is interpolated between tabulated points. Defaults to ‘linear-linear’.
Notes
The probabilities p are interpreted per unit of the corresponding independent variable x. This follows the definition of a probability density function (PDF) in probability theory, where the PDF represents the relative likelihood of the random variable taking on a particular value per unit of the variable. For example, if x represents energy in eV, then p should represent probabilities per eV.
- classmethod from_xml_element(elem: Element)[source]
Generate tabular distribution from an XML element
- Parameters:
elem (lxml.etree._Element) – XML element
- Returns:
Tabular distribution generated from XML element
- Return type:
- integral()[source]
Return integral of distribution
Added in version 0.13.1.
- Returns:
Integral of tabular distrbution
- Return type: