Analysis for the summer 2019 with the reseach configuration

Title Analysis for the summer 2019 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 July 2019 to 30 September 2019.
DOI 10.21957/2hd6-3h68
Experiment ID hg65
Experiment class ECMWF Research Department
Examples

Skin temperature forecast at time 06:00Z for 1 July 2019

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2019-07-01",
    "expver": "hg65",
    "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 July 2019 00:00Z analysis

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

server = ECMWFDataServer()

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