Versions Compared

Key

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

...

The ERA-Interim analysis is an improvement over the original analysis which did not have as many observations. The scientific content of the IFS operational model at that time was significantly different to the more modern OpenIFS. A rough proxy for the how the forecast at the time performed would be to run OpenIFS at T255, the resolution of the initial data.

 

Info

As OpenIFS is a spectral model, the 'T' number refers to the triangular truncation is spectral space. Equivalent grid-pt resolutions are:
T159 is approximately 125km resolution, T255 - 80km, T511 - 40km, T799 - 25km, T1279 - 16km.

...

 

Panel
borderColorgray
bgColorwhite
titleBGColor#e0e0e0
titleSingle start dates
borderStyledotted
Section
Column
width75%
ResolutionExpt idStart dateAnalysisFilenameFile size
T159L60fqar1999/12/24/12zERA-InterimT159_1999122412_fqar.tgz22Mb
T255L60fqak1999/12/24/12zERA-InterimT255_1999122412_fqak.tgz54Mb
T511L60fqaj1999/12/24/12zERA-InterimT511_1999122412_fqaj.tgz205Mb
T1023L60fs2y1999/12/24/12zERA-InterimT1023_1999122412_fs2y.tgz780Mb
T1279L60fqaf1999/12/24/12zERA-InterimT1279_1999122412_fqaf.tgz1.2Gb
Column
Info

To unpack files with .tgz, either use:

tar zxf T159_1999122412_fqar.tgz

or if your tar command does not support compression:

mv T159_1999122412_fqar.tgz T159_1999122412_fqar.tar.gz
gunzip T159_1999122412_fqar.tar.gz
tar xf T159_1999122412_fqar.tar

...

  • What's the impact of the different 'lead times' on the forecast of the storm (i.e. starting from different dates)?

  • What's the impact of resolution on the forecast of the storm: both for it's development and impact over areas worse hit in Europe?

  • Reduce the timestep of the model - does this improve or worsen the forecast?

  • Reduce the gravity wave drag - how does this affect the forecast in the upper and lower levels?

...

Expand
titleHow to change the code (click here to expand)

 Edit the source code to half the gravity wave drag coefficient

File: ifs/phys_ec/sugwd.F90, change:

Code Block
Line 108: !  Revised gwd parameter values
Line 109: GKDRAG =0.15_JPRB

to:

Code Block
Line 108: !  Revised gwd parameter values
Line 109: GKDRAG = 0.075_JPRB   !  half GWD coefficient: 0.15_JPRB

...

  • Increase the precipitation auto conversion rate - what impact does this have?

    Expand
    titleHow to change the code (click here to expand…)

    Edit the source code to increase the auto conversion rate by 20%

    File: ifs/phys_ec/sucldp.F90, change:

    Code Block
    line 123: RKCONV=1._JPRB/6000._JPRB   ! 1/autoconversion time scale (s)

    to:

    Code Block
    line 123: ! RKCONV=1._JPRB/6000._JPRB   ! 1/autoconversion time scale (s)
    line 124: RKCONV=1.2_JPRB/6000._JPRB    ! default scaled by 20%: 1/autoconversion time scale (s)
  • Change the surface transfer coefficient in the turbulence scheme

    Expand

    Reduce the coefficient by 20%.

    Alter surf/module/surfexcdriver_ctl_mod.F90 from :

    Code Block
    line 671:  DO JL=KIDIA,KFDIA
    line 672:    IF (JTILE == IFRMAX(JL)) THEN 
    line 673:      PKHLEV(JL)=ZKHLEV(JL)
    line 674:    ENDIF
    line 675:  ENDDO

    to:

    Code Block
    line 671:  DO JL=KIDIA,KFDIA
    line 672:    IF (JTILE == IFRMAX(JL)) THEN 
    line 673:      PKHLEV(JL)=ZKHLEV(JL)
    line 674:    ENDIF
        !  reduce surface transfer coeff by 20% in turbulence scheme
        !  for stockholm MSc course experiments
        ZCFMTI(JL,JTILE)=0.8_JPRB*ZCFMTI(JL,JTILE)
    line 675:  ENDDO
  • Reduce (halve) the asymptotic mixing length scale (K)

    Expand
    titleHow to change the model code (click here to expand)

    For this change, two files need to be edited:

    Code Block
    titleifs/phys_ec/suvdf.F90
     line 53: RLAM   = 75.0_jprb  !! 150._JPRB: reduce to 75m 

    and:

    Code Block
    titleifs/phys_ec/vdfexcu.F90
     ZKLEN     = 75.0_jprb  !! 150.0_JPRB     ! asymptotic K length scale troposphere - Reduce to 75m

 

Further reading

Ulbrich et al., 2001, Weather, 56, 70-80

...