at.weight {CIAAWconsensus} | R Documentation |
Atomic weight and isotopic abundances of a chemical element from isotope ratios
Description
This function calculates the isotopic abundances and the atomic weight of a chemical element from the given isotope amount ratios and their uncertainties. The uncertainty evaluation is done using the Monte Carlo method and the relevant masses of the isotopes are extracted from the www.ciaaw.org.
Usage
at.weight(ratio, ratio.cov, element, ref.isotope, data=NULL)
Arguments
ratio |
A vector of nontrivial isotope amount ratios of an element |
ratio.cov |
A covariance matrix of |
element |
A string consisting of the lowercase English name of the element. For example, "zinc" |
ref.isotope |
A string which specifies the reference isotope. For example, "64Zn" |
data |
Nuclide mass dataframe. Default dataframe is ciaaw.mass.2016 |
Details
The isotopic composition of an element with N
isotopes is characterized using a set of N-1
nontrivial isotope amount ratios.
As an example, silicon has three stable isotopes (silicon-28, silicon-29, and silicon-30) and its isotope ratios can be reported against
either of its stable isotopes in three distinct ways: (1) 29Si/28Si and 29Si/28Si or (2) 28Si/29Si and 30Si/29Si, or (3) 28Si/30Si and 29Si/30Si.
Value
aw |
Atomic weight |
aw.u |
Standard uncertainty of the atomic weight |
aw.U95 |
Expanded uncertainty of the atomic weight corresponding to 95% confidence |
abundances |
Isotopic abundances |
abundances.u |
Standard uncertainty of the isotopic abundances |
abundances.U95 |
Expanded uncertainty of the isotopic abundances corresponding to 95% confidence |
abundances.cov |
Covariance matrix of the isotopic abundances |
Author(s)
Juris Meija <juris.meija@nrc-cnrc.gc.ca> and Antonio Possolo
References
J.Meija and Z. Mester (2008) Uncertainty propagation of atomic weight measurement results. Metrologia, 45, 53-62
J. Meija and A. Possolo (2017) Data reduction framework for standard atomic weights and isotopic compositions of the elements. Metrologia, 54, 229-238
JCGM 101:2008 Evaluation of measurement data - Supplement 1 to the "Guide to the expression of uncertainty in measurement" - Propagation of distributions using a Monte Carlo method
Examples
## Atomic weight and isotopic abundances of iridium which correspond
## to the isotope ratio 191Ir/193Ir = 0.59471(13)
at.weight(0.59471, matrix(0.00013^2), "iridium", "193Ir")
## Atomic weight and isotopic abundances of silicon which correspond
## to isotope ratios 28Si/29Si = 1.074(69) and 30Si/29Si = 260(11)
## with a correlation of 0.80 between the two isotope ratios
ratios = c(1.074,260)
r.cov = matrix(c(0.069^2,0.80*0.069*11,0.80*0.069*11,11^2),ncol=2,byrow=TRUE)
at.weight(ratios, r.cov, "silicon", "29Si")