SANPSI strong vortex case, initialised on 2022-01-01, nudged to climatology in the stratosphere

Title SANPSI strong vortex case, initialised on 2022-01-01, nudged to climatology in the stratosphere
Description SNAPSI case study of Northern Hemisphere strong polar vortex case in the stratosphere, initialised on 2022-01-01. TCo319L137 resolution 51-member ensemble, integrated for 70 days.
DOI -
Experiment ID i5a5
Experiment class ECMWF Research Department
Examples

retrieve 1x1 degree T-field for all pressure levels, ENS members 1-3 and steps 0 to 594h in steps of 6h

#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2022-01-01",
    "expver": "i5a5",
    "grid": "1./1.",
    "levelist": "0.4/0.5/0.7/1/2/3/5/7/10/15/20/30/40/50/60/70/80/90/100/115/130/150/170/200/250/300/400/500/600/700/850/925/1000",
    "levtype": "pl",
    "number": "1/2/3",
    "param": "130.128",
    "step": "0/to/594/by/6",
    "stream": "enfo",
    "target": "output",
    "time": "00:00:00",
    "type": "pf"
})

retrieve 1x1 degree T2m surface field, ENS members 3 & 4 and steps 0 to 1680h in steps of 6h

#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2022-01-01",
    "expver": "i5a5",
    "grid": "1./1.",
    "levtype": "sfc",
    "number": "3/4",
    "param": "167.128",
    "step": "0/to/1680/by/6",
    "stream": "enfo",
    "target": "output",
    "time": "00:00:00",
    "type": "pf"
})