Hi there,
I am struggling with figuring out the appropriate code for calibrating a group of dates from a cemetery that was in use over a period of about 100-200 years, with a defined end date.
If I have understood things correctly from reading the Manual, I need to use Boundaries to tell the model that the dates are related, but this seems to have the effect that the model assumes all burials must have occurred at the same time. It then groups the majority of the burials into a very short time frame which represents the overlap of the calibrated ranges (this also results in the earliest burials of the cemetery to be labelled with "poor agreement"). Is there a way to instruct the model to consider a defined end date of the cemetery but NOT assume that the burials occurred at the same time? The assumption is that the cemetery was used by several generations and the radiocarbon dated individuals represent both the younger and the older burials.
My main goal is obtaining RE corrected calibrated age ranges for a selection of burials from this cemetery, so not specifically chronological modeling of the burial activity, but obviously that would be pretty handy if the model could also produce an estimated sequence of the burials from oldest to youngest.
This is the code I have been working with thus far:
Plot()
{
Sequence()
{
Boundary("Start");
Phase()
{
Curve("IntCal20","intcal20.14c");
Curve("Marine20","marine20.14c")
{
Reservoir(300,100);
};
Mix_Curves("Mixed_a","IntCal20","Marine20",11,6);
R_Date("V1",880,30);
Mix_Curves("Mixed_b","IntCal20","Marine20",13,7);
R_Date("V2",805,30);
Mix_Curves("Mixed_c","IntCal20","Marine20",11,7);
R_Date("V3",920,30);
Mix_Curves("Mixed_d","IntCal20","Marine20",9,6);
R_Date("V4",695,30);
Mix_Curves("Mixed_e","IntCal20","Marine20",12,7);
R_Date("V5",790,30);
Mix_Curves("Mixed_f","IntCal20","Marine20",10,6);
R_Date("V6",710,30);
Mix_Curves("Mixed_g","IntCal20","Marine20",13,7);
R_Date("V7",775,30);
Mix_Curves("Mixed_h","IntCal20","Marine20",11,6);
R_Date("V8",785,30);
Mix_Curves("Mixed_i","IntCal20","Marine20",12,7);
R_Date("V9",775,30);
Mix_Curves("Mixed_j","IntCal20","Marine20",13,7);
R_Date("V10",795,30);
Mix_Curves("Mixed_k","IntCal20","Marine20",14,7);
R_Date("V11",785,30);
Mix_Curves("Mixed_l","IntCal20","Marine20",15,7);
R_Date("V12",885,30);
};
Boundary("End");
Date("End",N(AD(1300),20));
};
};
This is my first time doing complex models with OxCal so any advice is much appreciated! Thank you!