The “basic” (purely numeric except for T) and “extended” (written with
hyphens and colons) formats cannot be mixed. For example the following
date-times are invalid:
2000-01-01T00 # Datetime - midnight on the 1st of January 2000.
01-01T00 # Every year on the 1st of January.
01T00 # Every month on the first of the month.
T00 # Every day at midnight.
T-00 # Every hour at zero minutes past (every hour on the hour).
Note
To omit hours from a date time we must place a - after the
T character.
Overriding the recurrence start point (i.e. T00/P1D)
Using the [scheduling]initialcyclepointconstraints setting to
constrain the initial cycle point (e.g. to a particular time of day). See
the Cylc User Guide for details.
In this practical we will create a dummy forecasting suite
using date-time cycling.
Create A New Suite.
Within your ~/cylc-run directory create a new directory called
datetime-cycling and move into it:
mkdir ~/cylc-run/datetime-cycling
cd ~/cylc-run/datetime-cycling
Create a suite.rc file and paste the following code into it:
[cylc]UTC mode = True[scheduling]initial cycle point = 20000101T00Z[[dependencies]]
Add The Recurrences.
The weather-forecasting suite will require two
recurrences. Add sections under the dependencies section for these,
based on the information given above.
PT3H: repeat every three hours starting from the initial cycle
point.
+PT6H/PT6H: repeat every six hours starting six hours after the
initial cycle point.
[cylc]
UTC mode = True
[scheduling]
initial cycle point = 20000101T00Z
[[dependencies]]
+ [[[PT3H]]]+ [[[+PT6H/PT6H]]]
Write The Graphing.
With the help of the graphs and the information above add dependencies to
your suite to implement the weather-forecasting workflow.
You will need to consider the inter-cycle dependencies between tasks.
Use cylcgraph to inspect your work.
Hint
The dependencies you will need to formulate are as follows:
The consolidate_observations task is dependent on the
get_observations_<site> tasks.
The forecast task is dependent on:
the get_rainfall task;
the consolidate_observations tasks from:
the same cycle;
the cycle 3 hours before (-PT3H);
the cycle 6 hours before (-PT6H).
The post_process_exeter task is dependent on the forecast
task.
To launch cylcgraph run the command:
cylc graph <path/to/suite.rc>
Solution
[cylc]UTC mode = True[scheduling]initial cycle point = 20000101T00Z[[dependencies]][[[PT3H]]]graph="""get_observations_aldergrove=>consolidate_observationsget_observations_camborne=>consolidate_observationsget_observations_heathrow=>consolidate_observationsget_observations_shetland=>consolidate_observations"""[[[+PT6H/PT6H]]]graph="""consolidate_observations=>forecastconsolidate_observations[-PT3H] =>forecastconsolidate_observations[-PT6H] =>forecastget_rainfall=>forecast=>post_process_exeter"""
Inter-Cycle Offsets.
To ensure the forecast tasks for different cycles run in order the
forecast task will also need to be dependent on the previous run
of forecast.
We can express this dependency as forecast[-PT6H]=>forecast.
Try adding this line to your suite then visualising it with cylcgraph.
You will notice that there is a dependency which looks like this:
Note in particular that the forecast task in the 00:00 cycle is
grey. The reason for this is that this task does not exist. Remember
the forecast task runs every six hours
starting 6 hours after the initial cycle point, so the
dependency is only valid from 12:00 onwards. To fix the problem we
must add a new dependency section which repeats every six hours
starting 12 hours after the initial cycle point.
Make the following changes to your suite and the grey task should
disappear: