I'm new to using OxCal so sorry if this seems rudimentary, but I have been looking for some easy-to-follow step-by-step instructions on how to use the program and have found no clear instructions so I have been fiddling through on my own. I am now trying to calibrate some shell dates and am getting nowhere, so I am hoping someone can point me towards a good set of instructions or provide me with some instructions.
See my various attempts below where I am trying to replicate these published dates:
UnCal Age CalBP (OxCal 4.2, SHCal 13, Marine 13)
Site 1 34,650 ± 630 36,970–40,270
Site 2 24,420 ± 250 27,680–28,600
I have used the web interface to calculate terrestrial calibrations before but when I try to use the Marine 13 curve the output shows that it is still calculated with IntCal 13 and the results are the same as before I try to use the Marine curve so I'm pretty sure it's not working this way.
Using the web interface Marine 13 is not shown in the main Curve dropdown. Under Options and the Curve tab it lists 14C Calibration Curve and Marine/mixed Curve so I assume this is where I set the marine curve to Marine 13. I have tried to run the calibration but the results still seem to be calculated with the IntCal 13 calibration rather than the Marine 13 calibration and I just can not figure out how to get it to use the Marine curve.
I have also tried entering it via the multi-plots function, but here I am even more lost. I was able to follow the limited instructions on the OxCal online manual to add R_Date to the Plot (File>New; Insert)
Plot()
R_Date("Site 1", 34650, 630)
R_Date("Site 2", 24420, 250)
With this input I get the below as an output:
From To %
R_Date Site 1 41203 38133 95.4
R_Date Site 2 29152 27972 95.4
But when it comes to setting a Marine curve there seems to be a number of options and I'm not sure if I am making the right choices.
The first one I tried was to select Curve from the Insert dropdown menu. But when I do this it just has an option for Name and Filename and no clear way to select any of the preset curves.
So the next option I tried was Tools>Options there I can select Marine 13 from the dropdown menu under Calibration Curve when I click the >> button it adds this to the code:
Options()
Curve="marine13.14c"
Plot()
R_Date("Site 1", 34650, 630)
R_Date("Site 2", 24420, 250)
From this code I get these results:
From To %
R_Date Site 1 40139 37196 95.4
R_Date Site 2 28346 27240 95.4
Ok so the next option is Tools> Curves tab. There I set 14C Calibration Curve Atmospheric to SHCal 13 and Marine/Mixed Curve to Marine 13 and click the >>
Curve("SHCal13","shcal13.14c")
Plot()
R_Date("Site 1", 34650, 630)
R_Date("Site 2", 24420, 250)
I then get this result. From the code above this seems like the results are for a SHCal13 rather than for the Marine 20 curve
From To %
R_Date Site 1 41203 38133 95.4
R_Date Site 2 29152 27972 95.4
The final option I have tried is a combination of these last two options. Tools>Curves Marine/mixed Curve = Marine 13 14 C Calibration Curve = SHCal 13. Then move over to Tools> Options Calibration Curve = Marine 13.
Options()
Curve="marine13.14c"
R_Date("Site 1", 34650, 630)
R_Date("Site 2", 24420, 250)
Which produces this output:
From To %
R_Date Site 1 40270 36967 95.4
R_Date Site 2 28605 27675 95.4
These results are the closest to the above-published results but they still don't match. I do not know if this is because they were calculated in OxCal 4.2 whereas these were done in 4.4, even though the calibration curves are the same.
The other option I have experimented with is adding a Delta R value but no matter what I add the results do not change. I know I should use a local Delta R offset, I calculate an average Delta R + error
for the region
here
<
http://calib.org/marine>, but I am unsure what to enter for Atmospheric % and
Marine %. When I enter these results into the field even just the Delta R values and leave the Atmospheric set to 100% and Marine % 0+-0. The results do not differ from the above results.
If I choose Reservior from the Insert dropdown menu I can only insert it if I have the Plot() selected not if I have the Curve selected. I get this code:
Options()
Curve="marine13.14c"
Plot()
Reservoir(-96, 37)
R_Date("Site 1", 34650, 630)
R_Date("Site 2", 24420, 250)
And these results
Warning! Inappropriate nesting - Reservoir into Plot
From To %
R_Date Site 1 40270 36967 95.4
R_Date Site 2 28605 27675 95.4
These are the same as the other Marine 13 results. The reservoir has made no effect.
So as you can see I've been trying to work this out but I can not get straight results. I have been unable to find any clear instructions and I have noone to ask for help. There are clearly things I am missing when it comes to calculating this so I am hoping someone can offer me some help with this.