CY46R1 wave hindcast based on ERA5 forcing 2010-2018

Title CY46R1 wave hindcast based on ERA5 forcing 2010-2018
Description Standalone ECMWF wave model CY46R1 forced by ERA5 hourly neutral 10m winds, surface air density, gustiness and sea ice fraction from 2010 to 2018. Native grid resolution is 14km, 36 directions, 36 frequencies. No wave data assimilation. Hourly output.
DOI 10.21957/x26j-bk23
Experiment ID h1pe
Experiment class ECMWF Research Department
Examples

Significant wave height, global (90N, 0W, 360E, 78S), for 20100101 to 20100102, every hour

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

server = ECMWFDataServer()

server.retrieve({
    "area": "90/0/-78/360",
    "class": "rd",
    "dataset": "research",
    "date": "20100101/to/20100102/by/1",
    "expver": "h1pe",
    "grid": "0.125/0.125",
    "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 20100101 to 20100102, every hour

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

server = ECMWFDataServer()

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