Versions Compared

Key

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

...

No Format
4300       ext00h1104           At this stage, the Extended Ensemble Forecast products have been updated.
4301       ext00h1104ref        At this stage, the Extended Ensemble reforecast products have been updated.

We will not migrate the user's TC-1 jobs subscribing to the ENS Extended (mofc) events. Users will have to adapt their existing jobs and submit them to either of the two new ENS extended events. See command 'ecaccess-job-submit'.

Note
titleENS extended events
  1. Event ext00h1104 will be triggered daily, when the ENS Extended forecasts are available, cf. our dissemination schedule. If you want to keep using ENS Extended data only on Mondays and Thursdays, like before the implementation of cycle 48r1, you will have to add some testing on the day of the week in your TC-1 job. This can be done with the 'date' command, e.g. in the KSH:

    No Format
    day_of_week=$(date +%a --date=$MSJ_YEAR$MSJ_MONTH$MSJ_DAY)
    case $day_of_week in
        Mon|Thu)
        echo 'I extract the ENS extended data on Mon and Thu ...'
        *) ;;
    esac


  2. Event ext00h1104ref will be triggered when the ENS extended re-forecasts are first generated. This is about 2 weeks or so before the availability of the ENS reforecasts following the dissemination schedule (the MSJ_ date variables will point to a date about 2 weeks ahead of the current date).

  3. Please remember to use the MSJ_ variables defined for you in your TC-1 jobs. I.e. by using the MSJ_EXPVER variable in your MARS requests, your TC-1 jobs will work before and after the implementation date of the - any - new IFS cycle.

...