Dear all,
I am a new user of Oxcal trained in art history, so my questions may be very basic ones but I would be very grateful for any guidance! I am trying to build up a chronological model that would include some forty C14 dates organised in contiguous phases along with external historical informations used as TPQ.
There are three operations I have not completely been able to figure out how to do:
- how to impose a fixed TPQ to a R_Date "y" without interfering with a previous R_Date "x"
- how to impose a fixed duration with free starting and ending times to a phase
- how to establish parallel phases or sequences
Here is an exemple that illustrate all these problems:
1. I have five R_Dates (1, 2, 3, 4, 5) which correspond to wall-paintings belonging to the same artistic phase "IV":
Phase("IV")
{
R_Date("1", 570, 30);
R_Date("2", 610, 30);
R_Date("3", 540, 30);
R_Date("4", 595, 30);
R_Date("5", 600, 30);
};
2. I know that "2" < "3" < "4" < "5" through art historical analysis. I don't know about "1":
Phase("IV")
{
R_Date("1", 570, 30);
Sequence( )
{
R_Date("2", 610, 30);
R_Date("3", 540, 30);
R_Date("4", 595, 30);
R_Date("5", 600, 30);
};
};
3. I also know that "3" can only be later than 1320 since a religious character enthroned in 1320 is depicted as such in the wall-paintings dated in "3". As "3" < "4" < "5", "4" and "5" can only be later than 1320 as well, but "2" (and "1") could be before 1320. I have not been able to find another way to impose this TPQ without pressuring "2" than to use the "after" operation. I have tried to enter the datas in two different ways and both seem to work fine... with slightly different results!
Solution 1 (gives quite early results):
Phase("IV")
{
R_Date("1", 570, 30);
Sequence( )
{
R_Date("2", 610, 30);
After ( )
{
Date("Enthronement", 1320);
};
R_Date("3", 540, 30);
R_Date("4", 595, 30);
R_Date("5", 600, 30);
};
};
Solution 2 (gives quite late results and shows "3" twice in the results, with and a without the TPQ's pressure):
Phase("IV")
{
R_Date("1", 570, 30);
Sequence( )
{
R_Date("2", 610, 30);
After (Date("Enthronement", 1320);)
{
R_Date("3", 540, 30);
};
R_Date("4", 595, 30);
R_Date("5", 600, 30);
};
};
Would you please explain me how that is possible?
4. Now is the tricky part. I would like to specify that "1", "2", "3", and "4" can not be separated by more than 60 years because they result from the activity of the same sponsor (it could be a little more than 60 years but let's try like this!). I suppose the better way to express this would be to include "1", "2", "3", and "4" in a phase "sponsor's activity" parallel to phase "IV" and lasting 60 years but I have not found how to do this so far. Would you please give me a hint?
Best wishes,
Nils Martin