Forecast with the new gravity-capillary model and nonlinear renormalisation of the growth rate

Title Forecast with the new gravity-capillary model and nonlinear renormalisation of the growth rate
Description Coupled forecast with the new gravity-capillary model and nonlinear renormalisation of the growth rate in ecWAM. Tc1279 resolution (9km), from 2019-03-22 0 UTC, hourly output from step 1 to 72 hours code branch: wab_CY47R3.0_wam.IFS-1944
DOI 10.21957/ccsr-7e97
Experiment ID hodv
Experiment class ECMWF Research Department
Examples

Retrieval of U10 (245), Cd (233) and Hs (229) to be used to only consider sea point (Hs > 0)

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2019-03-22",
    "expver": "hodv",
    "levtype": "sfc",
    "param": "245/233/229",
    "step": "1/to/72/by/1",
    "stream": "wave",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})

Retrieval of U10 (245), mss (233), wave age (84) and Hs (229) to be used to only consider sea point (Hs > 0)

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2019-03-22",
    "expver": "hodv",
    "levtype": "sfc",
    "param": "245/244/84/229",
    "step": "1/to/72/by/1",
    "stream": "wave",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})