Central greece storm daniel intense precipitation event 2.8km 72 hours simulation

Title Central greece storm daniel intense precipitation event 2.8km 72 hours simulation
Description The storm daniel record precipitation event in central greece (produced the highest rainfall ever recorded in Europe) between 4/09-07/09 2023 is simulated with the 2.8km resolution version of the global IFS i.e.Tco3999 grid with 137 vertical levels.
DOI -
Experiment ID i5aw
Experiment class ECMWF Research Department
Examples

total 72 hours precipi - execute before: export MARS_READANY_BUFFER_SIZE=768896196

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2023-09-04",
    "expver": "i5aw",
    "levtype": "sfc",
    "param": "tp",
    "step": "72",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})

925 hpa wind field - execute before: export MARS_READANY_BUFFER_SIZE=768896196

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2023-09-04",
    "expver": "i5aw",
    "levelist": "925",
    "levtype": "pl",
    "param": "u/v",
    "step": "24",
    "stream": "oper",
    "target": "outputw.grib",
    "time": "00:00:00",
    "type": "fc"
})