Extended-range reforecasts (43R1) with bias-corrected North Atlantic sea surface temperatures

Title Extended-range reforecasts (43R1) with bias-corrected North Atlantic sea surface temperatures
Description 15-member coupled IFS (cycle 43R1) extended-range reforecast experiment covering the period 1989-2015 with bias-corrected sea-surface temperatures (SSTs) in the North Atlantic region. This experiment can be compared with gkzp, which is the relevant control without bias-correction. The atmosphere is configured with 91 vertical levels and uses the Tco399 cubic octahedral reduced Gaussian grid. The IFS is coupled hourly to the 75 level version of the NEMO v3.4 ocean model and the LIM2 sea-ice model, both of which use the ORCA025 tripolar grid. The ocean receives atmospheric fluxes as normal, but the SSTs seen by the atmosphere are adjusted using the model SST bias derived from gkzp, which varies as a function of location, calendar start date, and forecast lead time. This bias-correction term is applied only in the North Atlantic region (80°W-0°E, 25°N-90°N) and is smoothly reduced to zero at the edge of the domain. Coupling is otherwise as in operational configurations of IFS cycle 43R1. Atmospheric fields are initialized from the ERA-interim reanalysis and ocean/sea-ice fields are initialized using the ORAS5 ocean (re)analysis.
DOI 10.21957/ed03-bp86
Experiment ID gpfk
Experiment class ECMWF Research Department
Examples

Weekly mean pressure level data for a given date.

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "1989-01-01",
    "expver": "gpfk",
    "levelist": "10/50/100/200/300/400/500/700/850/925/1000",
    "levtype": "pl",
    "number": "0/1/2/3/4/5/6/7/8/9/10/11/12/13/14",
    "param": "129.128/130.128/131.128/132.128/133.128/138.128/155.128",
    "step": "96-264/264-432/432-600/600-768",
    "stream": "enfo",
    "target": "weekly_mean_plev_output.grib",
    "time": "00:00:00",
    "type": "fcmean"
})

Weekly mean surface level data for a given date.

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "1989-01-01",
    "expver": "gpfk",
    "levtype": "sfc",
    "number": "0/1/2/3/4/5/6/7/8/9/10/11/12/13/14",
    "param": "31.128/33.128/34.128/39.128/40.128/41.128/42.128/49.128/59.128/78.128/79.128/121.128/122.128/136.128/137.128/139.128/141.128/142.172/143.172/144.172/146.172/147.172/151.128/159.128/164.128/165.128/166.128/167.128/168.128/169.172/170.128/175.172/176.172/177.172/178.172/179.172/180.172/181.172/182.172/189.172/201.128/202.128/207.128/228.172/246.228/247.228",
    "step": "96-264/264-432/432-600/600-768",
    "stream": "enfo",
    "target": "weekly_mean_sfc_output.grib",
    "time": "00:00:00",
    "type": "fcmean"
})