Analysis for the winter 2020 with the reseach configuration

Title Analysis for the winter 2020 with the reseach configuration
Description Analysis experiement with the IFS cycle 47R1, on a cubic horizontal grid with a 399 spectral truncature, and 137 vertical levels. The cloud sink control variable is turned off. Experiment described as TOVSCV in Massart et al. (2021). Period of interest: 1 January 2020 to 31 March 2020.
DOI 10.21957/bwf5-8929
Experiment ID hgef
Experiment class ECMWF Research Department
Examples

Skin temperature forecast at time 06:00Z for 1 January 2020

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-01-01",
    "expver": "hgef",
    "levtype": "sfc",
    "param": "skt",
    "step": "3",
    "stream": "lwda",
    "target": "output.grib",
    "time": "06:00:00",
    "type": "fc"
})

METOP-A AMSUA ODB file for the 1 1 January 2020 00:00Z analysis

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-01-01",
    "expver": "hgef",
    "reportype": "1007",
    "stream": "lwda",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "mfb"
})