You can switch curve during the calibration. Also the bomb curve includes the atmospheric IntCal13 back to AD1650 so there is an overlap. The following would switch between curves mid series:
Plot()
{
Curve("IntCal13","IntCal13.14c");
R_F14C(0.95, 0.002);
R_F14C(0.96, 0.002);
R_F14C(0.97, 0.002);
R_F14C(0.98, 0.002);
Curve("Bomb13NH1","Bomb13NH1.14c");
R_F14C(0.99, 0.002);
R_F14C(1.00, 0.002);
R_F14C(1.01, 0.002);
};
If you need to switch back and forth you can use cross referencing as in:
Plot()
{
Curve("IntCal13","IntCal13.14c");
Curve("Bomb13NH1","Bomb13NH1.14c");
Curve("=IntCal13");
R_F14C(0.95, 0.002);
Curve("=Bomb13NH1");
R_F14C(0.99, 0.002);
Curve("=IntCal13");
R_F14C(0.96, 0.002);
Curve("=Bomb13NH1");
R_F14C(1.00, 0.002);
Curve("=IntCal13");
R_F14C(0.97, 0.002);
Curve("=Bomb13NH1");
R_F14C(1.01, 0.002);
Curve("=IntCal13");
R_F14C(0.98, 0.002);
};
You might want to use higher than normal resolution for this sort of chronology too.
Best wishes
Christopher
> --
> You received this message because you are subscribed to the Google Groups "OxCal" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
oxcal+un...@googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.