Hi all,
I am trying to calculate the difference between a few select parameters in a model I am building for a range of Bronze Age activity across a particular landscape I am looking at. I think I am happy with the way the model is constructed (critique welcome). However, when I run the model I am getting results for the difference which extend from a negative to a positive number or in some cases just a negative range. A I right in thinking that in these cases this simply allows for the possibility that there is no gap between the two selected parameters?
In the case below I have tried to calculate the difference between the Start Boundary of RD4 and the Start Boundary of S1. There should, I think be a gap between these two parameters given that their modelled ranges do not overlap at 95%. However, when I run the model I am getting entirely negative ranges.
Any help greatly appreciated.
Chris
Plot()
{
Sequence()
{
Boundary("Start Early Prehistoric");
Phase("Early Prehistoric")
{
Sequence("Isolated cremation burials")
{
Boundary("Start isolated crems");
Phase("Isolated cremation burials use")
{
R_Date("SUERC-132230 (4173)",3578,34);
R_Date("SUERC-132232 (4062)",3556,24);
R_Date("SUERC-132225 (6023)",3556,23);
R_Date("SUERC-132220 (6283)",3548,23);
Span("Isolated crem use");
};
Boundary("End isolated crems");
};
Sequence("Barrow RD4")
{
Boundary("Start RD4");
R_Date("Beta-538150 (4127)", 3620, 30);
Phase("Barrow RD4 use")
{
R_Date("Beta-538154 (4469)", 3590, 30);
R_Date("Beta-538153 (4269)", 3260, 30);
};
Boundary("End RD4");
};
Sequence("Other barrows")
{
Boundary("Start Other barrows");
Phase("Other barrows use")
{
After("Residual")
{
R_Date("Beta-585633 (8116)", 5510, 30);
};
R_Date("Beta-585628 (9027)", 2440, 30)
{
Outlier();
};
R_Date("Beta-585634 (8150)", 3530, 30);
Span("Other barrow use");
};
Boundary("End Other barrows");
};
Sequence("Hollow S1")
{
Boundary("Start S1");
Phase("Hollow [4334] S1 use")
{
R_Date("SUERC-132213 (4279)",3486,23);
R_Date("SUERC-132210 (4432)",3408,23);
R_Date("Beta-538151 (4388)", 3370, 30);
R_Date("SUERC-132226 (4337)",3363,24);
R_Date("SUERC-132211 (4448)",3453,23);
R_Date("SUERC-132212 (4412)",3347,21);
R_Date("SUERC-132204 (4562)",3329,19);
R_Date("SUERC-132221 (4453)",3284,25);
R_Date("SUERC-132242 (4467)",589,21)
{
Outlier();
};
Span("S1 use");
};
R_Date("SUERC-132233 (4345)",3335,23);
Boundary("End S1");
};
Sequence("Hollow S4")
{
Boundary("Start S4");
Phase("Hollow [4368] S4 use")
{
R_Date("SUERC-132231 (4557)",3380,24);
R_Combine("B4139")
{
R_Date("SUERC-132234 (6089)",3370,25);
R_Date("SUERC-132235 (6092)",3323,21);
};
R_Date("SUERC-132203 (6005)",3369,23);
R_Date("SUERC-132206 (6112)",3368,23);
R_Date("Beta-538149 (6142)", 3320, 30);
R_Date("SUERC-132215 (4577)",3320,20);
R_Date("SUERC-132214 (4552)",3272,22);
R_Date("SUERC-132222 (6094)",3226,25);
Span("S4 use");
};
R_Date("SUERC-132224 (4168)",3258,25);
Boundary("End S4");
};
Sequence("Enclosure E1")
{
Boundary("Start E1");
Phase("Enclosure E1 use")
{
R_Date("Beta-585631 (3165)", 3020, 30);
};
Boundary("End E1");
};
Span("Early prehistoric activity");
};
Boundary("End Early Prehistoric ");
};
Order()
{
Date("=Start E1");
Date("=End E1");
Date("=Start isolated crems");
Date("=End isolated crems");
Date("=Start RD4");
Date("=End RD4");
Date("=Start Other barrows");
Date("=End Other barrows");
Date("=Start S1");
Date("=End S1");
Date("=Start S4");
Date("=End S4");
};
Phase("Gaps")
{
Difference("Isolated crems/S1","=End isolated crems","=Start S1");
Difference("RD4/Isolated crems","=Start RD4","=Start isolated crems");
Difference("RD4/S1","=Start RD4","=Start S1");
};
};