CY50R1 wave hindcast with altimeter wave height assimilation based on ERA5 forcing 2000-2018

Title CY50R1 wave hindcast with altimeter wave height assimilation based on ERA5 forcing 2000-2018
Description Standalone ecWAM wave model CY51R1 forced by corrected ERA5 hourly neutral 10m winds, air density, gustiness and sea ice fraction (2000-2018). Native grid is Tco799 (14km), 36 directions, 36 frequencies. Altimeter wave data assimilation. Hourly output, many parameters. See chapter 10 of https://www.ecmwf.int/en/elibrary/81629-ifs-documentation-cy49r1-part-vii-ecmwf-wave-model
DOI 10.21957/jdpk-bm70
Experiment ID ik27
Experiment class ECMWF Research Department
Examples

Significant wave height, global native Tco grid, for 20000101 to 20000102 , every hour

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "20000101/to/20000102/by/1",
    "expver": "ik27",
    "levtype": "sfc",
    "param": "swh",
    "step": "0",
    "stream": "wave",
    "target": "output.grib",
    "time": "0/to/23/by/1",
    "type": "an"
})

Mean wave period, global Tco native grid, for 20000101 to 20000102 every hour

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "20000101/to/20000102/by/1",
    "expver": "ik27",
    "levtype": "sfc",
    "param": "mwp",
    "step": "0",
    "stream": "wave",
    "target": "output.grib",
    "time": "0/to/23/by/1",
    "type": "an"
})

Significant wave height, global lat-lon grid (90N, 0W, 360E, 78S), for 20000101 to 20000102 , every hour

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

server = ECMWFDataServer()

server.retrieve({
    "area": "90/0/-78/360",
    "class": "rd",
    "dataset": "research",
    "date": "20000101/to/20000102/by/1",
    "expver": "ik27",
    "grid": "0.1/0.1",
    "levtype": "sfc",
    "param": "swh",
    "step": "0",
    "stream": "wave",
    "target": "output.grib",
    "time": "0/to/23/by/1",
    "type": "an"
})

Mean wave period, global lat-lon grid (90N, 0W, 360E, 78S), for 20000101 to 20000102 every hour

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

server = ECMWFDataServer()

server.retrieve({
    "area": "90/0/-78/360",
    "class": "rd",
    "dataset": "research",
    "date": "20000101/to/20000102/by/1",
    "expver": "ik27",
    "grid": "0.1/0.1",
    "levtype": "sfc",
    "param": "mwp",
    "step": "0",
    "stream": "wave",
    "target": "output.grib",
    "time": "0/to/23/by/1",
    "type": "an"
})