Uncoupled ensemble subseasonal reforecasts (ENS-U) with IFS cycle 49r2

Title Uncoupled ensemble subseasonal reforecasts (ENS-U) with IFS cycle 49r2
Description Uncoupled ensemble subseasonal reforecasts (ENS-U) with ocean and sea ice boundary conditions derived from observed values at initialisation time. In these experiments, SSTs are specified using daily values from the Operational Sea Surface Temperature and Ice Analysisthat are persisted as anomalies on top of a daily mean SST climatology (1979-2001) derived from the ERA40 reanalysis. Sea ice cover is specified using persistence of Ocean and Sea Ice Satellite Application Facility (OSI SAF) initial values for the first 15 days , linear blending between persistence and the ERA40 climatology for days 16-45, and climatology thereafter. This persistence-climatology approach represents a realistic operational alternative to a fully coupled ocean model, since observed SSTs beyond the initialisation date are not available in real-time forecast applications. Other than the specified ocean and sea ice boundary conditions, these reforecasts are configured identically to the coupled reference experiments available at https://apps.ecmwf.int/ifs-experiments/rd/impq/.
DOI 10.21957/4z2b-e329
Experiment ID imq1
Experiment class ECMWF Research Department
Examples

Retrieve all pressure level fields initialised on January 1st

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2024-01-01",
    "expver": "imq1",
    "hdate": "2006-01-01/2007-01-01/2008-01-01/2009-01-01/2010-01-01/2011-01-01/2012-01-01/2013-01-01/2014-01-01/2015-01-01/2016-01-01/2017-01-01/2018-01-01/2019-01-01/2020-01-01/2021-01-01/2022-01-01/2023-01-01",
    "levelist": "10/50/100/200/250/500/700/850/1000",
    "levtype": "pl",
    "number": "1/2/3/4/5/6/7/8/9/10",
    "param": "129.128/130.128/131/132/133.128/135.128/138.128/155.128/157.128",
    "step": "0/12/24/36/48/60/72/84/96/108/120/132/144/156/168/180/192/204/216/228/240/252/264/276/288/300/312/324/336/348/360/372/384/396/408/420/432/444/456/468/480/492/504/516/528/540/552/564/576/588/600/612/624/636/648/660/672/684/696/708/720/732/744/756/768/780/792/804/816/828/840/852/864/876/888/900/912/924/936/948/960/972/984/996/1008/1020/1032/1044/1056/1068/1080/1092/1104",
    "stream": "enfh",
    "target": "output",
    "time": "00:00:00",
    "type": "pf"
})

Retrieve all surface fields initialised on January 1st

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2024-01-01",
    "expver": "imq1",
    "hdate": "2006-01-01/2007-01-01/2008-01-01/2009-01-01/2010-01-01/2011-01-01/2012-01-01/2013-01-01/2014-01-01/2015-01-01/2016-01-01/2017-01-01/2018-01-01/2019-01-01/2020-01-01/2021-01-01/2022-01-01/2023-01-01",
    "levtype": "sfc",
    "number": "1/2/3/4/5/6/7/8/9/10",
    "param": "20.3/29.228/31.128/32.128/33.128/34.128/35.128/36.128/37.128/38.128/39.128/40.128/41.128/42.128/47.128/49.128/129.128/136.128/137.128/139.128/141.128/142.128/143.128/144.128/145.128/146.128/147.128/148.128/151.128/159.128/164.128/165.128/166.128/167.128/168.128/169.128/170.128/172.128/173.128/174.128/175.128/176.128/177.128/178.128/179.128/180.128/181.128/182.128/183.128/186.128/187.128/188.128/189.128/197.128/198.128/201.128/202.128/205.128/216.228/217.228/218.228/219.228/220.228/221.228/228.128/235.128/238.128/243.128/244.128/251.228/228050/260015/260121/260123",
    "step": "0/12/24/36/48/60/72/84/96/108/120/132/144/156/168/180/192/204/216/228/240/252/264/276/288/300/312/324/336/348/360/372/384/396/408/420/432/444/456/468/480/492/504/516/528/540/552/564/576/588/600/612/624/636/648/660/672/684/696/708/720/732/744/756/768/780/792/804/816/828/840/852/864/876/888/900/912/924/936/948/960/972/984/996/1008/1020/1032/1044/1056/1068/1080/1092/1104",
    "stream": "enfh",
    "target": "output",
    "time": "00:00:00",
    "type": "pf"
})