Revision 223ee354d84d0615853e1d40cb597024a397f33b authored by catherinehardacre on 04 April 2024, 23:14:39 UTC, committed by catherinehardacre on 04 April 2024, 23:14:39 UTC
1 parent a91915e
Raw File
recipe_miles_block.yml
# ESMValTool
# recipe_miles_block.yml
---
documentation:
  title: Blocking Statistics by MiLES
  description: |
    Recipe for computing and plotting blocking statistics using
    the MiLES (Mid-Latitude Evaluation System) package

  authors:
    - vonhardenberg_jost
    - davini_paolo
    - arnone_enrico

  maintainer:
    - unmaintained

  references:
    - davini18
    - davini12jclim
    - tibaldi90tel

  projects:
    - c3s-magic

datasets:
   - {dataset: EC-EARTH,    project: CMIP5,  exp: historical,  ensemble: r2i1p1,  start_year: 1980,  end_year: 1989}
   - {dataset: ERA-Interim, project: OBS6, type: reanaly, version: 1, tier: 3, start_year: 1980,  end_year: 1989 }

preprocessors:
    preproc1:
      extract_levels:
        levels: 50000
        scheme: linear
      regrid:
        target_grid: 2.5x2.5
        lat_offset: False
        scheme: linear_extrapolate
      extract_region:
        start_longitude: 0.
        end_longitude: 360.
        start_latitude: -1.25
        end_latitude: 90.

diagnostics:

  miles_diagnostics:
    description: MiLES Blocking Diagnostics
    variables:
      zg:
        preprocessor: preproc1
        mip: day
        reference_dataset: "ERA-Interim"
#       reference_exp: historical
    scripts:
        miles_block:
            script: miles/miles_block.R
            seasons: DJF # Select season ('DJF','MAM','JJA','SON')
back to top