IFS-COMPO sensitivity experiment with FINN fire emissions instead of GFAS (CY50R1)

Title IFS-COMPO sensitivity experiment with FINN fire emissions instead of GFAS (CY50R1)
Description IFS-COMPO Reference experiment for fire emission sensitivity evaluation. This experiment uses a CY50R1 esuite model configuration, but with updates to the isoprene degradation chemistry, along with a basic implementation of C2H2 chemistry, as planned for CY51R1. Otherwise, this experiment is run as a series of 24h forecasts excluding assimilation of atmospheric composition on T511 horizontal resolution. This experiment uses daily fire emissions from the FINN database.
DOI 10.21957/3j99-dc58
Experiment ID b2tn
Experiment class Netherlands
Examples

Nitrogen dioxide model level forecast

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

server = ECMWFDataServer()

server.retrieve({
    "area": "89.75/0.25/-89.75/359.75",
    "class": "nl",
    "dataset": "research",
    "date": "20230701",
    "expver": "b2tn",
    "grid": "0.5/0.5",
    "levelist": "1/to/137/by/1",
    "levtype": "ml",
    "param": "121.210",
    "step": "0/to/21/by/3",
    "stream": "oper",
    "target": "NO2_FINN_20230701.grib",
    "time": "00",
    "type": "fc"
})

PM2.5 surface level forecast

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

server = ECMWFDataServer()

server.retrieve({
    "area": "89.75/0.25/-89.75/359.75",
    "class": "nl",
    "dataset": "research",
    "date": "20230701",
    "expver": "b2tn",
    "grid": "0.5/0.5",
    "levtype": "sfc",
    "param": "73.210",
    "step": "0/to/21/by/3",
    "stream": "oper",
    "target": "PM2.5_FINN_20230701.grib",
    "time": "00",
    "type": "fc"
})