forecast with ECMWF IFS for the EUREC4A period (25km), no shallow convection momentum transport

Title forecast with ECMWF IFS for the EUREC4A period (25km), no shallow convection momentum transport
Description Research forecast experiment produced with ECMWF IFS cycle 47R1, at TCo399 (25km), for the EUREC4A field campaign (15.01.2020-14.02.2020). Initialized from the hezu analysis, but no shallow convection momentum transport, with fields and physics tendencies saved on model levels
DOI 10.21957/af7h-bf97
Experiment ID hhz0
Experiment class ECMWF Research Department
Examples

Retrieval of temperature and humidity from the forecasts on model levels on original model grid

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-01-16",
    "expver": "hhz0",
    "levellist": "137/to/106",
    "levtype": "ml",
    "param": "t/q",
    "step": "24",
    "stream": "lwda",
    "target": "TQ_ml_24.grib",
    "time": "00:00:00",
    "type": "fc"
})

Retrieval of temperature tendencies from the forecasts on model levels on original model grid

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-01-16",
    "expver": "hhz0",
    "levellist": "137/to/106",
    "levtype": "ml",
    "param": "93/95/98/105/109",
    "step": "24",
    "stream": "lwda",
    "target": "Ttend_ml_24.grib",
    "time": "00:00:00",
    "type": "fc"
})