Hi Everyone,
I am working on a model to date an eruption that incorporates an age from a different radiometric dating method and have run into a problem that I am trying to understand.
The model incorporates 14C ages from multiple sites that are cross-referenced, but for simplicity, I have trimmed that all out to illustrate the problem.
For reference, TBJ is a dated tephrostratigraphic marker bed and Eruption is the age from another radiometric dating method.
Using the following model:
Plot()
{
Curve("IntCal20","intcal20.14c");
Sequence("Site 6")
{
Boundary("Start Site");
Age("Eruption",N(2300,300))
{
Year=CE(2025);
};
Date("Paleosol");
R_Date("Age 1",1620,20);
Date("TBJ",U(CE(429),CE(433)));
Boundary("End Site");
};
};
The model yields an age for Eruption that can be as young as 460 CE, which is younger than the ages of the overlying units, including the TBJ.
I have found, however, that when I put a 14C age beneath Eruption in the following model, it changes:
Plot()
{
Curve("IntCal20","intcal20.14c");
Sequence("Site 6")
{
Boundary("Start Site");
R_Date("Age 2",2000,25);
Age("Eruption",N(2300,300))
{
Year=CE(2025);
};
Date("Paleosol");
R_Date("Age 1",1620,20);
Date("TBJ",U(CE(429),CE(433)));
Boundary("End Site");
};
};
The model then yields a minimum age of 310 CE for Eruption, which is consistent with the overlying ages but is a bit of an artificial fix that I would prefer to avoid.
In the bigger model, there are plenty of 14C ages beneath Eruption, but they are cross-referenced and Eruption still comes out with a minimum age that is younger than overlying units.
So, I am a bit stumped on why this is happening and would like to understand a bit better.
What am I missing here? Does anyone have any ideas?
Cheers,
Chris