calib_R | R Documentation |
calib_R
function to convert isotope values back-and-forth between R
and delta
calib_R( x, reference, isotope, type = "composition", input = "R", output = "F", y = NULL )
x |
A numeric value or vector. |
reference |
A character or numeric value or vector. |
isotope |
A character for the name of the isotope (e.g. |
type |
Type of conversion, isotope composition or enrichment. |
input |
The type of input value, R, F, and delta. |
output |
Desired output value, R, F, and delta. |
y |
A numeric value or vector of the product when calculating enrichment factors, following the convention; x = R(product)/ y = R(substrate). Both x and y should have the same notation, either R, F or delta, as supplied to the argument input. |
A fundamental in publishing isotope data is the conversion of isotope the delta formulation comparing the obtained R to that of a standard. These values are reported on a per mill scale. However in IC calculations ratios (R) or fractional abundances (F) are most commonly used. This functions provide an easy way of making these transformations for both the average composition but also fractionations as enrichment factors (alpha and epsilon).
A numeric value or vector.
# R value of 0.0111 to delta on VPDB scale calib_R(0.0111, reference = 0.011237, type = "composition", input = "R", output = "delta") # or calib_R(0.0111, reference = "VPDB", isotope = "13C", type = "composition", input = "R", output = "delta") # Fractional abundance for a given R calib_R(0.0111, reference = 0.011237, type = "composition", input = "R", output = "F") # Alpha enrichment factors can also be calculated based on two delta/R/F # values, where the second value can be supplied as argument y (i.e., # the product of a reaction) calib_R(-25, reference = "VPDB", isotope = "13C", type = "enrichment", input = "delta", output = "alpha", y = -105)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.