CY47R1 wave hindcast based on ERA5 forcing 2000-2009

Title CY47R1 wave hindcast based on ERA5 forcing 2000-2009
Description Standalone wave model CY47R1 forced by ERA5 hourly neutral 10m winds, air density, gustiness and sea ice fraction (2000-2009). Native grid is Tco639 (18km), 36 directions, 36 frequencies. No wave data assimilation. Hourly output, many parameters.
DOI 10.21957/dgkx-1485
Experiment ID he3k
Experiment class ECMWF Research Department
Examples

Significant wave height, global (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": "he3k",
    "grid": "0.2/0.2",
    "levtype": "sfc",
    "param": "swh",
    "step": "0",
    "stream": "wave",
    "target": "output.grib",
    "time": "0/to/23/by/1",
    "type": "an"
})

Mean wave period, global (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": "he3k",
    "grid": "0.2/0.2",
    "levtype": "sfc",
    "param": "mwp",
    "step": "0",
    "stream": "wave",
    "target": "output.grib",
    "time": "0/to/23/by/1",
    "type": "an"
})