MPAS | WRF | GFS-Wave GRIB files

GFS Wave Model Forecast

  • These models are based on the 3rd generation wave model WAVEWATCH III using operational NCEP products as input.
  • WAVEWATCH III® Production Multigrid: July 2013 to present
    • The multigrid production uses the multi-grid spectral wave model WAVEWATCH III® with operational NCEP winds and ice fields as input forcing fields. No wave data assimilation is performed. The model is run four times a day, with all available data. Validation data is available from July 2013 through to the present.
    • Model output
      • Field output in grib2 format, available every 3 hours
        • .wind. = U-component of 10m wind, V-component of 10m wind (m/s)
        • .hs. = significant height of combined wind waves and swell (m)
        • .tp. = primary wave mean period (s)
        • .dp. = primary wave direction (degrees true, i.e. 0 deg => coming from North; 90 deg => coming from East)

GRiB2 Output Parameters

From https://polar.ncep.noaa.gov/waves/Model_Description.pdf,

  • Significant Height of Combined Wind Waves and Swell (HTSGW)
  • Direction of Combined Wind Waves and Swell (DIRPW)
  • Mean Period of Combined Wind Waves and Swell (PERPW)
  • Significant Height of Wind Waves (WVHGT)
  • Mean Period of Wind Waves (WVPER)
  • Direction of Wind Waves (WVDIR)
  • Significant wave height of first swell partition (SWELL: 1 in sequence)
  • Mean wave period of first swell partition (SWPER: 1 in sequence)
  • Mean wave direction of first swell partition (SWDIR: 1 in sequence)
  • Significant wave height of second swell partition (SWELL: 2 in sequence)
  • Mean wave period of second swell partition (SWPER: 2 in sequence)
  • Mean wave direction of second swell partition (SWDIR: 2 in sequence)
  • Significant wave height of third swell partition (SWELL: 3 in sequence)
  • Mean wave period of third swell partition (SWPER: 3 in sequence)
  • Mean wave direction of third swell partition (SWDIR: 3 in sequence)
  • Wind Speed (WIND)
  • Wind Direction (WDIR)
  • U-component of wind (UGRD)
  • V-component of wind (VGRD)

The multi_1 deterministic wave model is now unified with the Global Forecast System (GFS). The WAVEWATCH III wave model is one-way coupled with the atmospheric forecast model. The wave model uses three native computational grids:

  • Arctic Polar 9km resolution from 50N to 90N,
  • Global Core 10min resolution from 15S to 52N and
  • Southern Ocean 15min resolution from 10.5S to 79.5S.

There are 4 post-processed grids: West Coast, Eastern Pacific, Atlantic Ocean all with 0.16deg resolution and a Global grid with 0.25 deg of resolution.

  • The unification into GFS allows for an increase in frequency of the wind forcing from 3 hours to 30 minutes. In addition, ocean currents from the RTOFS model are included as input to the wave model. The system runs four cycles per day (00, 06, 12 and 18Z) and the wave forecast has been extended from 180 hours to 384 hours. The wave model produces hourly forecasts from 000 to 120 hours and every 3 hours from 120 to 384 hrs.

GFS-Wave subset download

NOMADS Data at NCEP

  • https://nomads.ncep.noaa.gov/
  • https://nomads.ncep.noaa.gov/gribfilter.php?ds=gfswave
  • Example:
    1
    https://nomads.ncep.noaa.gov/cgi-bin/filter_gfswave.pl?dir=%2Fgfs.20250228%2F00%2Fwave%2Fgridded&file=gfswave.t00z.global.0p16.f048.grib2&var_DIRPW=on&var_HTSGW=on&var_PERPW=on&var_SWDIR=on&var_SWELL=on&var_SWPER=on&var_UGRD=on&var_VGRD=on&var_WDIR=on&var_WIND=on&var_WVDIR=on&var_WVHGT=on&var_WVPER=on&lev_1_in_sequence=on&lev_2_in_sequence=on&lev_3_in_sequence=on&lev_surface=on
  • Dowload script:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    #!/bin/bash
    #
    # define URL
    #
    workdir=/home/wpsze/mpas/GFS/GFS_Wave/
    hr=00
    #date_st=20240920
    date_st=$(date -d "today -1 days" +%Y%m%d)

    #wget

    for iday in {0..0..1}; do

    idate=$(date -d "$date_st + $iday days" +%Y%m%d)
    echo $date_st $idate
    for fhr in {000..120..1}; do
    #for fhr in {076..76..1}; do


    URL="https://nomads.ncep.noaa.gov/cgi-bin/filter_gfswave.pl?\
    dir=%2Fgfs.${idate}%2F${hr}%2Fwave%2Fgridded&\
    file=gfswave.t${hr}z.global.0p16.f${fhr}.grib2\
    &var_DIRPW=on&var_HTSGW=on&var_PERPW=on&var_SWDIR=on&\
    var_SWELL=on&var_SWPER=on&var_UGRD=on&var_VGRD=on&\
    var_WDIR=on&var_WIND=on&var_WVDIR=on&var_WVHGT=on&\
    var_WVPER=on&lev_1_in_sequence=on&lev_2_in_sequence=on\
    &lev_3_in_sequence=on&lev_surface=on"

    yyyymm=${idate:0:6}
    datapath=$workdir/0p25/$yyyymm/$idate/
    mkdir -p $datapath

    # download file
    #curl "$URL" -o download_test$fhr.grb
    wget "$URL" -O $datapath/gfs.t${hr}z.global.0p16.f${fhr}.grib2
    # add a sleep to prevent a denial of service in case of missing file
    sleep 3
    done
    done
https://nomads.ncep.noaa.gov/gribfilter.php?ds=gfswave
https://nomads.ncep.noaa.gov/gribfilter.php?ds=gfswave

grib checking

  • grib_ls gfs.t00z.global.0p16.f000.grib2
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    gfs.t00z.global.0p16.f000.grib2
    edition centre date dataType gridType stepRange typeOfLevel level shortName packingType
    2 kwbc 20250227 fc regular_ll 0 surface 1 ws grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 wdir grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 u grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 v grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 swh grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 perpw grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 dirpw grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 shww grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 1 swell grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 2 swell grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 3 swell grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 mpww grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 1 swper grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 2 swper grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 3 swper grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 surface 1 wvdir grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 1 swdir grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 2 swdir grid_jpeg
    2 kwbc 20250227 fc regular_ll 0 orderedSequenceData 3 swdir grid_jpeg
    19 of 19 messages in gfs.t00z.global.0p16.f000.grib2

    19 of 19 total messages in 1 files
  • re-download dataset that only contains surface variables.
  • grib_to_netcdf gfs.t00z.global.0p16.f000.grib2 -o test.nc
  • ncvis/ncview test.nc

Reading

Literature review


MPAS | WRF | GFS-Wave GRIB files
https://waipangsze.github.io/2025/02/28/MPAS-WRF-GFS-Wave-GRIB-files/
Author
wpsze
Posted on
February 28, 2025
Updated on
February 28, 2025
Licensed under