Short CY47R1 wave hindcast based on ERA5 forcing (20 April 2005 to 4 May 2005)

Title Short CY47R1 wave hindcast based on ERA5 forcing (20 April 2005 to 4 May 2005)
Description Standalone wave model CY47R1 forced by ERA5 hourly neutral 10m winds, air density, gustiness and sea ice fraction. Native grid is Tco639 (18km), 36 directions, 37 frequencies. No wave data assimilation. Hourly output, including 2d spectra.
DOI 10.21957/9jcv-r297
Experiment ID hg6j
Experiment class ECMWF Research Department
Examples

Significant wave height, global (78N, 0W, 360E, 78S), every hour

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

server = ECMWFDataServer()

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

2d spectra, global (78N, 0W, 360E, 78S), every hour

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

server = ECMWFDataServer()

server.retrieve({
    "area": "90/0/-78/360",
    "class": "rd",
    "dataset": "research",
    "date": "20050420/to/20050504/by/1",
    "direction": "1/to/36/by/1",
    "expver": "hg6j",
    "frequency": "1/to/37/by/1",
    "grid": "0.2/0.2",
    "levtype": "sfc",
    "param": "251",
    "step": "0",
    "stream": "wave",
    "target": "output.grib",
    "time": "0/to/23/by/1",
    "type": "an"
})