Hi all,
I would like to generate an age-depth model
for one single sediment core using the Marine20 curve. The Delta R value
changes mid-core, so I split the model into two sequences with
different Delta R values. In addition, there are some samples, which
have an age reversal (younger than overlying samples), but from geologic
context, I'm sure the ages are correct and are the result of reworking.
I excluded these samples from the p-sequence and calibrated them
seperately.
Here is the code:
Plot()
{
Curve("Marine20","marine20.14c");
Delta_R(1884,155);
R_Date("Date_1",25444,256)
{
color="red";
z=657.5;
};
R_Date("Date_2",31456,428)
{
color="red";
z=667.5;
};
Outlier_Model("General",T(5),U(0,4),"t");
P_Sequence("Sequence1_bottom_to_350cm",1,0.1,U(-2,2))
{
Boundary();
Delta_R(1884,155);
R_Date("Date_3",42675,12814)
{
Outlier(0.05);
z=707.5;
};
R_Date("Date_4",36164,9282)
{
Outlier(0.05);
z=587.5;
};
R_Date("Date_5",16505,823)
{
Outlier(0.05);
z=498.5;
};
R_Date("Date_6",11571,385)
{
Outlier(0.05);
z=350;
};
Boundary();
};
P_Sequence("Sequence2_350cm_to_top",1,0.1,U(-2,2))
{
Boundary();
Delta_R(987,193);
R_Date("Date_7",8590,324)
{
Outlier(0.05);
z=290;
};
R_Date("Date_8",5890,105)
{
Outlier(0.05);
z=210;
};
R_Date("Date_9",3379,111)
{
Outlier(0.05);
z=137.5;
};
R_Date("Date_10",3565,121)
{
Outlier(0.05);
z=108;
};
R_Date("Date_11",2116,109)
{
Outlier(0.05);
z=45;
};
R_Date("PS128_39-1_0.5cm",1999,98)
{
Outlier(0.05);
z=0.5;
};
Boundary();
};
};
My Questions:
1:
Do I need to connect the p-sequences somehow? E.g. by putting them both
inside of an "encompassing" sequence? I tried that and it gives
slightly different results, I'm just not sure if it makes sense to do
so.
2: Is it correct to calibrate the age-reversal samples separately or do they have to be included in the p-sequence? When I included them, the output was forced to have an increasing age with depth, which is not correct.
3: Do the p-sequence parameters used here make sense?
4: Is there anything I'm doing completely wrong? Would a different model make more sense?
Any suggestions are very welcome!
Thanks a lot in advance!
Kelly