Versions Compared

Key

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

...

Note
titleENS extended events
  1. Event ext00h1104 will be triggered daily, when the ENS Extended forecasts are availablen according to the 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 ECacces 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 MonMondays and ThuThursdays ...'
        *) ;;
    esac


  2. Event ext00h1104ref will be triggered when the ENS extended re-forecasts are available according to the dissemination schedule.

  3. Please remember to use the MSJ_ variables defined for you in your ECaccess Time Critical jobs. I.e. by using the MSJ_EXPVER variable in your MARS requests, your ECaccess Time Critical jobs will continue working before and after the implementation date of any new IFS cycle.

...

  • MSJ_MEMBERS contains the number of (perturbed) members if in the forecast stream, e.g. currently 100 members for ENS extended or 10 members for the re-forecasts.
  • MSJ_IFS_CYCLE contains the IFS cycle in use.

...