Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

Issue with ERA5 SST fields

dmoreno

New member
Hello all,

I'm making a WRF run forced wit ERA5 reanalysis, and I noted that ERA5 SST fields look weird...

First, the mask values over land is 0ºC, which when WPS will interpolate the fields in metgrid will give irrealistic surface temperature fields over coastal areas. obviously, this will in turn produce WRF outputs with faulty temperature fields (and surface winds, and other vars tied to the surface temperature fields), as it can be seen below.

index.jpeg

Second, the coastline in ERA5 SST field seems too coarse, considering that ERA5 has ~ 25-30 km of horizontal resolution (image below). This does not happen for other variables such has skintemp or surface temperature, and so on.

Screenshot from 2023-02-08 14-58-25.png

So, I have 2 questions:

First, has anyone else noted these ERA5 SST issues? Is ECMWF aware of these issues?

Second, what is the fix to run WRF with ERA5? i was thinking of replacing the SSTs with SKINTEMP in the WPS Vtable for ERA5, they appear to have the same values over the ocean.

Appreciate any feedback on this
 
Last edited:
Hi David,
This is an old issue. If you replace the SST by the skin temperature you will have unrealistic warm waters near the coast in summer. Particularly near the capes. You just need to edit the SST field in METGRID.TBL.ARW and add a four-point weighted average in the interpolation option and declare the field as masked. See below.

name=SST
interp_option=sixteen_pt+four_pt+wt_average_4pt+search
interp_mask=LANDSEA(1)
masked=land
fill_missing=0.
missing_value=-1.E30
flag_in_output=FLAG_SST
 
Top