Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
suite x
  family f
     repeat date YMD 20120601 20200531
     complete ./f/check:nofiles
     task check
        event 1 nofiles
     task t1 ; trigger check==complete
     task t2 ; trigger t2t1==complete
  endfamily


Here is a python example where we create a simple reusable experimental meteorological suite. There is a configuration section for the dates and synoptic cycles to be selected, and there is a function (add_complete()) to select the contents for the complete statement. This is needed since you can only have one complete statement for any node. The main loop of the suite is pretty straightforward.

...