IFS nextGEMS cycle 2 4km 1-year simulation

Title IFS nextGEMS cycle 2 4km 1-year simulation
Description nextGEMS cycle2 coupled global 1-year simulation without parameterized deep convection. Grids: tco2559 for atmosphere and NG5 for ocean. Model versions: IFS 47r3.3 + upgrades and FESOM2.1. Starting date: 20/01/2020.
DOI 10.21957/1n36-qg55
Experiment ID hqys
Experiment class ECMWF Research Department
Examples

Retrieve 2m temperature after 24 hours

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

server = ECMWFDataServer()

server.retrieve({
    "anoffset": "9",
    "class": "rd",
    "dataset": "research",
    "date": "20200120",
    "expver": "hqys",
    "levtype": "sfc",
    "param": "2t",
    "step": "24",
    "stream": "lwda",
    "target": "output.grib",
    "time": "0",
    "type": "fc"
})

Retrieve accumulated total precipitation between 1st and 5th Feb (fluxes accumulate over time and are reset to 0 on 1st day of every month)

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

server = ECMWFDataServer()

server.retrieve({
    "anoffset": "9",
    "class": "rd",
    "dataset": "research",
    "date": "20200120",
    "expver": "hr2n",
    "levtype": "sfc",
    "param": "tp",
    "step": "384",
    "stream": "lwda",
    "target": "output.grib",
    "time": "0",
    "type": "fc"
})