You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

With the implementation of cycle 48r1 including the higher resolution ENS system and a separate daily ENS extended run, we are updating the ECaccess TC-1 events, as follows.


ENS extended forecasts and re-forecasts

All the existing ENS extended forecast related events will be discontinued. These are the events with names tarting by 'mofc'. See command 'ecaccess-event-list':

284        mofc_all             At this stage, the Monthly Forecast real time products have been updated.
809        mofc_mon             At this stage, the Monday Monthly Forecast real time products have been updated.
1341       mofc_mon_refc        At this stage, the Monday Monthly Forecast raw hindcast data have been generated.
1342       mofc_mon_refc_pp     At this stage, the Monday Monthly Forecast post-processed hindcast products have been generated.
3426       mofc_thu             At this stage, the Thursday Monthly Forecast real time products have been updated.
1343       mofc_thu_refc        At this stage, the Thursday Monthly Forecast raw hindcast data are generated.
1344       mofc_thu_refc_pp     At this stage, the Thursday Monthly Forecast post-processed hindcast products have been generated.
285        mofcrefc             At this stage, the Thursday Monthly Forecast hindcast products have been updated.

The above events have been replaced by two new events:

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.

ENS extended events

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:

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

Event ext00h1104ref will be triggered when the ENS extended reforecasts are first generated. This is about 2 weeks or so before the availability of the ENS reforecasts following the dissemination schedule.

  • No labels