Pb0corr {IsoplotR} | R Documentation |
Common Pb correction
Description
Applies a common-Pb correction to a U-Pb dataset using either the Stacey-Kramers mantle evolution model, isochron regression, or any nominal inital Pb isotope composition.
Usage
Pb0corr(x, option = 3, omit4c = NULL)
Arguments
x |
an object of class |
option |
one of either
|
omit4c |
vector with indices of aliquots that should be
omitted from the isochron regression (only used if
|
Details
IsoplotR
implements nine different methods to correct for
the presence of non-radiogenic (‘common’) lead. This includes three
strategies tailored to datasets that include Pb
measurements, three strategies tailored to datasets that include
Pb measurements, and a further three strategies for
datasets that only include
Pb and
Pb.
Pb is the only one of lead's four stable isotopes that
does not have a naturally occurring radioactive parent. This makes
it very useful for common-Pb correction:
where marks the radiogenic
Pb or
Pb component;
is the measured ratio; and
is the non-radiogenic component.
IsoplotR
offers three different ways to determine
. The first and easiest option
is to simply use a nominal value such as the
Pb/
Pb-ratio of a cogenetic feldspar,
assuming that this is representative for the common-Pb composition
of the entire sample. A second method is to determine the
non-radiogenic isotope composition by fitting an isochron line
through multiple aliquots of the same sample, using the
3-dimensional regression algorithm of Ludwig (1998).
Unfortunately, neither of these two methods is applicable to
detrital samples, which generally lack identifiable cogenetic
minerals and aliquots. For such samples, IsoplotR
infers the
common-Pb composition from the two-stage crustal evolution model of
Stacey and Kramers (1975). The second stage of this model is
described by:
where and
. These
Equations can be solved for
and
using the method of
maximum likelihood. The
Pb/
Pb-ratio is
corrected in exactly the same way, using
.
In the absence of Pb measurements, a
Pb-based
common lead correction can be used:
where marks the non-radiogenic
-component, which is obtained by removing the
radiogenic component for any given age.
If neither Pb nor
Pb were measured,
then a
Pb-based common lead correction can be used:
where is the fraction of common lead, and
is obtained by projecting the U-Pb
measurements on the concordia line in Tera-Wasserburg space. Like
before, the initial lead composition
can be obtained in three
possible ways: by analysing a cogenetic mineral, by isochron
regression through multiple aliquots, or from the Stacey and
Kramers (1975) model.
Besides the common-Pb problem, a second reason for U-Pb discordance
is radiogenic Pb-loss during igneous and metamorphic activity.
This moves the data away from the concordia line along a linear
array, forming an isochron or ‘discordia’ line. IsoplotR
fits this line using the Ludwig (1998) algorithm. If the data are
plotted on a Wetherill concordia diagram, the program will not only
report the usual lower intercept with the concordia line, but the
upper intercept as well. Both values are geologically meaningful as
they constrain both the initial igneous age as well as the timing
of the partial resetting event.
Value
Returns a list in which x.raw
contains the original data and
x
the common Pb-corrected compositions. All other items in
the list are inherited from the input data.
References
Ludwig, K.R., 1998. On the treatment of concordant uranium-lead ages. Geochimica et Cosmochimica Acta, 62(4), pp.665-676.
Stacey, J.T. and Kramers, 1., 1975. Approximation of terrestrial lead isotope evolution by a two-stage model. Earth and Planetary Science Letters, 26(2), pp.207-221.
Examples
attach(examples)
corrected <- Pb0corr(UPb,option=2)
concordia(corrected)
# produces identical results as:
dev.new()
concordia(UPb,common.Pb=2)