From 3bf09ee292ffa568e6103a5848f9ff43a59f6607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 22 May 2023 10:06:40 -0400 Subject: [PATCH 01/44] add terms of use notice --- README.md | 4 ++++ docs/Introduction.rst | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/README.md b/README.md index 87803edbb..f56d57188 100644 --- a/README.md +++ b/README.md @@ -128,3 +128,7 @@ Commerce. The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government. + +## UPP Terms of Use Notice + +The UPP Terms of Use Notice is available at: https://github.com/NOAA-EMC/UPP/wiki/UPP-Terms-of-Use-Notice \ No newline at end of file diff --git a/docs/Introduction.rst b/docs/Introduction.rst index f5646c1b1..00ba8a51c 100644 --- a/docs/Introduction.rst +++ b/docs/Introduction.rst @@ -15,3 +15,10 @@ Applications. This software package can be run inline, built as a library to be used by the model, and offline, built stand-alone and run separate from the model. This documentation largely details the offline procedures. + +===================== +Terms of Use Notice +===================== + +The UPP Terms of Use Notice is available at: +https://github.com/NOAA-EMC/UPP/wiki/UPP-Terms-of-Use-Notice \ No newline at end of file From 59bb4ed6ac6bcc5fc2488172c95bb6176e6904cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 22 May 2023 17:19:41 -0400 Subject: [PATCH 02/44] add schematic, dir structure, reformat docs --- docs/CodeOverview.rst | 63 ++++++++++++++++++++++++++++++-- docs/_static/theme_overrides.css | 9 +++++ docs/conf.py | 9 +++-- 3 files changed, 74 insertions(+), 7 deletions(-) create mode 100644 docs/_static/theme_overrides.css diff --git a/docs/CodeOverview.rst b/docs/CodeOverview.rst index 835187748..d33b5698e 100644 --- a/docs/CodeOverview.rst +++ b/docs/CodeOverview.rst @@ -8,11 +8,11 @@ diagnostic fields and interpolate to pressure levels or other vertical coordinat The UPP also incorporates the Joint Center for Satellite Data Assimilation (JCSDA) Community Radiative Transfer Model (CRTM) to compute model derived brightness temperature (TB) for various instruments and channels. This additional feature enables the generation of a number of simulated satellite products -including GOES products. +including GOES products. For CRTM documentation, refer to the `CRTM User Guide `__. Output from the UPP is in National Weather Service (NWS) and World Meteorological Organization (WMO) -`GRIB2 `_ format and can be used directly by -visualization, plotting, or verification packages, or for further downstream post-processing, e.g. +`GRIB2 `__ format and can be used directly by +visualization, plotting, or verification packages, or for further downstream post-processing, e.g., statistical post-processing techniques. Examples of UPP products include: @@ -34,4 +34,59 @@ The UPP has 2D decomposition capabilities (V11.0.0) and is also backwards compat The functionality demonstrates run-time improvements, especially for larger domains. Support for this feature is available for standalone UPP applications. -Support for the community UPP is provided through `GitHub Discussions `_. +Support for the community UPP is provided through `GitHub Discussions `__. + +============================== +System Architecture Overview +============================== + +The UPP can be run inline --- built as a library to be used by the model --- and offline --- built stand-alone and run separately from the model. The basic components of the offline UPP are shown in the schematic below. + +.. figure:: https://raw.githubusercontent.com/wiki/NOAA-EMC/UPP/UPP_schematic.png + :width: 75% + :alt: The model output files are used as input to the UPP executable. The UPP executable uses the parameter files to determine the list of output fields. The executable generates post-processed output files in grib2 format, which can be used in downstream applications for regridding, visualization, verification, etc. + +The ``upp.x`` component performs the bulk of the post-processing. Its functions include: + + * Vertical interpolation from model levels/surfaces to isobaric, height, and other levels/surfaces + * Computing diagnostics from model data such as CAPE, relative humidity, radar reflectivities, etc. + +===================== +Directory Structure +===================== + +The main repository for the Unified Post Processor repository is named ``UPP``; it is available on GitHub at https://github.com/NOAA-EMC/UPP. When the ``develop`` branch of the UPP repository is cloned, the basic directory structure will be similar to the example below. Some files and directories have been removed for brevity. + +.. code-block:: console + + UPP + ├── ci -------- Automated testing file + ├── cmake -------- CMake build system + ├── docs -------- User Guide files + │ └── Doxyfile.in -------- Doxygen configuration file + ├── fix/Breadboard + ├── jobs -------- Scripts that set up the environment and call ex-scripts from the scripts directory + │ ├── JGLOBAL_ATMOS_NCEPPOST + │ ├── JGLOBAL_ATMOS_POST_MANAGER + │ └── J_NCEPPOST + ├── modulefiles -------- Modulefiles for supported machines + ├── parm -------- Parameter files + │ ├── post_avblflds.xml -------- Lists all fields available in UPP + │ ├── postcntrl*.xml -------- User editable control files that list the variables to be output + │ └── postxconfig-NT-*.txt -------- Text file of requested output that UPP reads (processed from postcntrl) + ├── scripts -------- Ex-scripts + │ ├── exgdas_atmos_nceppost.sh -------- + │ ├── exgfs_atmos_nceppost.sh -------- + │ ├── exglobal_atmos_pmgr.sh -------- Script that monitors the progress of the gfs_fcst job + │ └── run_upp -------- Script for running the standalone UPP package + ├── sorc -------- Top source code directory + │ ├── libIFI.fd -------- Private repository (submodule) for in-flight icing + │ └── ncep_post.fd -------- Main post-processing routines + ├── tests + │ ├── compile_upp.sh -------- UPP build script + │ └── detect_machine.sh + ├── ush -------- Utility scripts (referenced & run in /scripts) + ├── CMakeLists.txt + ├── LICENSE.md + ├── README.md + └── VERSION diff --git a/docs/_static/theme_overrides.css b/docs/_static/theme_overrides.css new file mode 100644 index 000000000..0416b736c --- /dev/null +++ b/docs/_static/theme_overrides.css @@ -0,0 +1,9 @@ +/* !important prevents the common CSS stylesheets from overriding this CSS since on RTD they are loaded after this stylesheet */ + +.wy-nav-content { + max-width: 100% !important; +} + +.wy-table-responsive table td, .wy-table-responsive table th { + white-space: normal !important; +} diff --git a/docs/conf.py b/docs/conf.py index 81504c537..2ee565e03 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,7 +56,8 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'classic' +html_theme = 'sphinx_rtd_theme' +html_theme_path = ["_themes", ] # html_theme_options = {} html_theme_options = {"body_max_width": "none"} @@ -69,5 +70,7 @@ # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] -# Add custom style sheet -html_css_files = ['custom.css'] +# Add custom style sheets +def setup(app): + app.add_css_file('custom.css') # may also be an URL + app.add_css_file('theme_overrides.css') # may also be an URL From 137f25f57dafefe8dea0a53cfb51b4d8e1ade9b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 23 May 2023 14:02:32 -0400 Subject: [PATCH 03/44] update code overview; silence warnings --- docs/AddNewVariable.rst | 6 ++- docs/CodeOverview.rst | 60 ++++++++++++++++------------ docs/Installation.rst | 2 +- docs/Regridding.rst | 2 +- docs/UFS_unified_variables_table.rst | 2 + docs/UPP_GRIB2_Table.rst | 2 + 6 files changed, 44 insertions(+), 30 deletions(-) diff --git a/docs/AddNewVariable.rst b/docs/AddNewVariable.rst index b29536952..73ba79931 100644 --- a/docs/AddNewVariable.rst +++ b/docs/AddNewVariable.rst @@ -168,9 +168,10 @@ with examples in the sections below. 2 0 231 1 TG3 - e) Add the new variable to the UPP/parm/post_avblflds.xml, which lists all fields available - for output in GRIB2 format. This file is generally not modified unless adding a new field or + e) **Add the new variable to the UPP/parm/post_avblflds.xml, which lists all fields available + for output in GRIB2 format.** This file is generally not modified unless adding a new field or modifying an existing one. + - Post_avblfldidx: the unique array index number used to store this variable. The number chosen here is just an example and it is important to pick one that is not yet in use. - Shortname: name describing the variable and level type @@ -231,6 +232,7 @@ with examples in the sections below. :: allocate(tg3(ista_2l:iend_2u,jsta_2l:jend_2u)) + - Initialize in the initialization section that comes after the allocations section you added to. :: diff --git a/docs/CodeOverview.rst b/docs/CodeOverview.rst index d33b5698e..477181591 100644 --- a/docs/CodeOverview.rst +++ b/docs/CodeOverview.rst @@ -2,40 +2,54 @@ Code Overview ************* -The UPP is used to post-process model forecasts and provides the capability to compute a variety of +The Unified Post Processor (UPP) is used to post-process model forecasts and provides the capability to compute a variety of diagnostic fields and interpolate to pressure levels or other vertical coordinates. -The UPP also incorporates the Joint Center for Satellite Data Assimilation (JCSDA) Community Radiative -Transfer Model (CRTM) to compute model derived brightness temperature (TB) for various instruments and -channels. This additional feature enables the generation of a number of simulated satellite products -including GOES products. For CRTM documentation, refer to the `CRTM User Guide `__. - Output from the UPP is in National Weather Service (NWS) and World Meteorological Organization (WMO) `GRIB2 `__ format and can be used directly by visualization, plotting, or verification packages, or for further downstream post-processing, e.g., statistical post-processing techniques. -Examples of UPP products include: +**HIGHLIGHTS** -- T, Z, humidity, wind, cloud water, cloud ice, rain, and snow on pressure levels -- SLP, shelter level T, humidity, and wind fields -- Precipitation-related fields -- PBL-related fields -- Severe weather products (e.g. CAPE, Vorticity, Wind shear) -- Radiative/Surface fluxes -- Cloud related fields -- Aviation products -- Radar reflectivity products -- Satellite look-alike products +The UPP reads and processes GFS and LAM (Limited Area Model) data from the FV3 dynamical core and generates output in GRIB2 format. It uses MPI parallel code and produces hundreds of products like those used operationally on the same operational grids. Examples of UPP products include: + + - T, Z, humidity, wind, cloud water, cloud ice, rain, and snow on pressure levels + - SLP, shelter level T, humidity, and wind fields + - Precipitation-related fields + - PBL-related fields + - Severe weather products (e.g. CAPE, Vorticity, Wind shear) + - Radiative/Surface fluxes + - Cloud related fields + - Aviation products + - Radar reflectivity products + - Satellite look-alike products A full list of fields that can be generated by the UPP is provided in :doc:`UPP_GRIB2_Table`. -The UPP has 2D decomposition capabilities (V11.0.0) and is also backwards compatible for 1D decomposition. +As of v11.0.0, the UPP has 2D decomposition capabilities and is also backwards compatible for 1D decomposition. The functionality demonstrates run-time improvements, especially for larger domains. Support for this feature is available for standalone UPP applications. Support for the community UPP is provided through `GitHub Discussions `__. +**SYNTHETIC SATELLITE PRODUCTS** + +The UPP also incorporates the Joint Center for Satellite Data Assimilation (JCSDA) Community Radiative +Transfer Model (CRTM) to compute model-derived brightness temperature (TB) for various instruments and +channels. +This additional feature enables the generation of simulated satellite products such as: + + * Geostationary Operational Environmental Satellite (GOES) + * Advanced Microwave Scanning Radiometer (AMSRE) + * Special Sensor Microwave Imager/Sounder (SSMIS) + * Special Sensor Microwave Imager (SSMI) + * Multi-functional Transport Satellite (MTSAT2 and MTSAT1R) + * Spinning Enhanced Visible and Infrared Imager (SEVIRI) + * Indian Satellite Image (INSAT3D) + +For CRTM documentation, refer to the `CRTM User Guide `__. + ============================== System Architecture Overview ============================== @@ -55,7 +69,7 @@ The ``upp.x`` component performs the bulk of the post-processing. Its functions Directory Structure ===================== -The main repository for the Unified Post Processor repository is named ``UPP``; it is available on GitHub at https://github.com/NOAA-EMC/UPP. When the ``develop`` branch of the UPP repository is cloned, the basic directory structure will be similar to the example below. Some files and directories have been removed for brevity. +The main UPP repository is named ``UPP``; it is available on GitHub at https://github.com/NOAA-EMC/UPP. When the ``develop`` branch of the UPP repository is cloned, the basic directory structure will be similar to the example below. Some files and directories have been removed for brevity. .. code-block:: console @@ -66,18 +80,12 @@ The main repository for the Unified Post Processor repository is named ``UPP``; │ └── Doxyfile.in -------- Doxygen configuration file ├── fix/Breadboard ├── jobs -------- Scripts that set up the environment and call ex-scripts from the scripts directory - │ ├── JGLOBAL_ATMOS_NCEPPOST - │ ├── JGLOBAL_ATMOS_POST_MANAGER - │ └── J_NCEPPOST ├── modulefiles -------- Modulefiles for supported machines ├── parm -------- Parameter files │ ├── post_avblflds.xml -------- Lists all fields available in UPP │ ├── postcntrl*.xml -------- User editable control files that list the variables to be output │ └── postxconfig-NT-*.txt -------- Text file of requested output that UPP reads (processed from postcntrl) - ├── scripts -------- Ex-scripts - │ ├── exgdas_atmos_nceppost.sh -------- - │ ├── exgfs_atmos_nceppost.sh -------- - │ ├── exglobal_atmos_pmgr.sh -------- Script that monitors the progress of the gfs_fcst job + ├── scripts -------- Ex-scripts for performing post-processing │ └── run_upp -------- Script for running the standalone UPP package ├── sorc -------- Top source code directory │ ├── libIFI.fd -------- Private repository (submodule) for in-flight icing diff --git a/docs/Installation.rst b/docs/Installation.rst index 8dbf731b6..92b29c89f 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -77,7 +77,7 @@ tar file. .. note:: To make a clean build, simply remove both the **tests/build** and **tests/install** directories and the - :bolditalic:`exec/upp.x` executable and then rerun the :bolditalic:`compile_upp.sh script. This is + :bolditalic:`exec/upp.x` executable and then rerun the :bolditalic:`compile_upp.sh` script. This is recommended if a mistake is made during the installation process. ======================= diff --git a/docs/Regridding.rst b/docs/Regridding.rst index c41f96b46..0d528aab5 100644 --- a/docs/Regridding.rst +++ b/docs/Regridding.rst @@ -12,7 +12,7 @@ of re-gridding for all available grid definitions can be found at: http://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/new_grid.html -.. _Examples-of-wgrib2 +.. _Examples-of-wgrib2: ================== Examples of wgrib2 diff --git a/docs/UFS_unified_variables_table.rst b/docs/UFS_unified_variables_table.rst index 91294e36e..b5fa1d7d5 100644 --- a/docs/UFS_unified_variables_table.rst +++ b/docs/UFS_unified_variables_table.rst @@ -1,3 +1,5 @@ +:orphan: + ******************************** Unified Model Variables from UFS ******************************** diff --git a/docs/UPP_GRIB2_Table.rst b/docs/UPP_GRIB2_Table.rst index b64b61cac..da7c73cf0 100644 --- a/docs/UPP_GRIB2_Table.rst +++ b/docs/UPP_GRIB2_Table.rst @@ -1,3 +1,5 @@ +:orphan: + ******************************** GRIB2 Fields Produced by UPP ******************************** From 0d21c69fb97bcabd3b83f888a7f14a67377055d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 24 May 2023 16:50:52 -0400 Subject: [PATCH 04/44] update UPP GRIB2 Fields Table; sort by ID --- docs/InputsOutputs.rst | 2 +- docs/UPP_GRIB2_Table.csv | 12 +- docs/UPP_GRIB2_Table_byID.csv | 480 ++++++++++++++++++++++++++++++++++ docs/UPP_GRIB2_Table_byID.rst | 16 ++ 4 files changed, 503 insertions(+), 7 deletions(-) create mode 100644 docs/UPP_GRIB2_Table_byID.csv create mode 100644 docs/UPP_GRIB2_Table_byID.rst diff --git a/docs/InputsOutputs.rst b/docs/InputsOutputs.rst index a4c669fb3..351587728 100644 --- a/docs/InputsOutputs.rst +++ b/docs/InputsOutputs.rst @@ -88,7 +88,7 @@ If an entry for a particular field is not yet available in the control file, it control file with the appropriate entries for that field. For variables found on vertical levels (e.g. isobaric or height levels), the desired levels to be output must be listed (see next section: :ref:`control_levels`). A list of available Grib2 fields that can be output by UPP can be found in the -table :doc:`UPP_GRIB2_Table`. Please note that some fields are dependent on model, physics, and other fields. +table :doc:`UPP_GRIB2_Table_byID`. Please note that some fields are dependent on model, physics, and other fields. .. _control_levels: diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index 56957d83e..4d1fa31d4 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -1,5 +1,5 @@ Field Description,Name in Grib2 Control File,Grib2 pname,Vertical Level,UPP ID -Radar reflectivity on model surface*,REFD_ON_HYBRID_LVL,REFD,109,250 +Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,109,250 Pressure on model surface,PRES_ON_HYBRID_LVL,PRES,109,1 Height on model surface,HGT_ON_HYBRID_LVL,HGT,109,77 Temperature on model surface,TMP_ON_HYBRID_LVL,TMP,109,2 @@ -22,7 +22,7 @@ Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,109,11 Richardson number on model surface,RI_ON_HYBRID_LVL,RI,109,111 Master length scale on model surface,BMIXL_ON_HYBRID_LVL,BMIXL,109,146 Asymptotic length scale on model surface,AMIXL_ON_HYBRID_LVL,AMIXL,109,147 -Radar reflectivity on pressure surface*,REFD_ON_ISOBARIC_SFC,REFD,100,251 +Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,100,251 Height on pressure surface,HGT_ON_ISOBARIC_SFC,HGT,100,12 Temperature on pressure surface,TMP_ON_ISOBARIC_SFC,TMP,100,13 Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,100,14 @@ -72,8 +72,8 @@ Ground heat flux - instantaneous,INST_GFLUX_ON_SURFACE,GFLUX,1,152 Lifted index—surface based,LFTX_ON_ISOBARIC_SFC_500-1000hpa,LFTX,101,30 Lifted index—best,4LFTX_ON_SPEC_PRES_ABOVE_GRND,4LFTX,116,31 Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,116,75 -CAPE (4 types) ***,CAPE_ON_SURFACE,CAPE,1,32 -CIN (4 types) ***,CIN_ON_SURFACE,CIN,1,107 +Surface CAPE,CAPE_ON_SURFACE,CAPE,1,32 +Surface CIN,CIN_ON_SURFACE,CIN,1,107 Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,200,80 Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200,200 Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,200,201 @@ -92,7 +92,7 @@ Accumulated large scale snow,Not currently available for grib2,NA,1,244 Accumulated total snow melt,ACM_SNOM_ON_SURFACE,SNOM,1,121 Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,1,160 Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,1,167 -Composite radar reflectivity*,REFC_ON_ENTIRE_ATMOS,REFC,200,252 +Composite radar reflectivity,REFC_ON_ENTIRE_ATMOS,REFC,200,252 Low level cloud fraction,LCDC_ON_LOW_CLOUD_LYR,LCDC,214,37 Mid level cloud fraction,MCDC_ON_MID_CLOUD_LYR,MCDC,224,38 High level cloud fraction,HCDC_ON_HIGH_CLOUD_LYR,HCDC,234,39 @@ -200,7 +200,7 @@ Potential evaporation,PEVPR_ON_SURFACE,PEVPR,1,242 Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,107,243 Surface wind gust,GUST_ON_SURFACE,GUST,1,245 Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,1,249 -Radar reflectivity at certain above ground heights*,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,105,253 +Radar reflectivity at certain above ground heights,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,105,253 MAPS Sea Level Pressure,MAPS_PRMSL_ON_MEAN_SEA_LVL,PRMSL,102,445 Total soil moisture,SOILM_ON_DEPTH_BEL_LAND_SFC,SOILM,112,36 Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,1,118 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv new file mode 100644 index 000000000..a281b8249 --- /dev/null +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -0,0 +1,480 @@ +Field Description,Name in Grib2 Control File,Grib2 pname,Vertical Level,UPP ID +Pressure on model surface,PRES_ON_HYBRID_LVL,PRES,109,1 +Temperature on model surface,TMP_ON_HYBRID_LVL,TMP,109,2 +Potential temperature on model surface,POT_ON_HYBRID_LVL,POT,109,3 +Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,109,4 +Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,109,5 +Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,109,6 +U component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,109,7 +V component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,109,8 +Omega on model surface,VVEL_ON_HYBRID_LVL,VVEL,109,9 +Absolute vorticity on model surface,ABSV_ON_HYBRID_LVL,ABSV,109,10 +Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,109,11 +Height on pressure surface,HGT_ON_ISOBARIC_SFC,HGT,100,12 +Temperature on pressure surface,TMP_ON_ISOBARIC_SFC,TMP,100,13 +Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,100,14 +Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,100,15 +Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,100,16 +Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,100,17 +U component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,100,18 +V component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,100,19 +Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,100,20 +Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,100,21 +Turbulent kinetic energy on pressure surface,TKE_ON_ISOBARIC_SFC,TKE,100,22 +Mesinger (Membrane) sea level pressure,MSLET_ON_MEAN_SEA_LVL,MSLET,102,23 +Surface pressure,PRES_ON_SURFACE,PRES,1,24 +Terrain height,HGT_ON_SURFACE,HGT,1,25 +Skin temperature,TMP_ON_SURFACE,TMP,1,26 +Skin potential temperature,POT_ON_SURFACE,POT,1,27 +Skin specific humidity,SPFH_ON_SURFACE,SPFH,1,28 +Skin dew point temperature,DPT_ON_SURFACE,DPT,1,29 +Lifted index—surface based,LFTX_ON_ISOBARIC_SFC_500-1000hpa,LFTX,101,30 +Lifted index—best,4LFTX_ON_SPEC_PRES_ABOVE_GRND,4LFTX,116,31 +Surface CAPE,CAPE_ON_SURFACE,CAPE,1,32 +Accumulated convective precipitation,ACM_ACPCP_ON_SURFACE,ACPCP,1,33 +Accumulated grid-scale precipitation,ACM_NCPCP_ON_SURFACE,NCPCP,1,34 +Accumulated snowfall,ACM_WEASD_ON_SURFACE,WEASD,1,35 +Total soil moisture,SOILM_ON_DEPTH_BEL_LAND_SFC,SOILM,112,36 +Low level cloud fraction,LCDC_ON_LOW_CLOUD_LYR,LCDC,214,37 +Mid level cloud fraction,MCDC_ON_MID_CLOUD_LYR,MCDC,224,38 +High level cloud fraction,HCDC_ON_HIGH_CLOUD_LYR,HCDC,234,39 +Temperature tendency from shortwave radiative flux,SWHR_ON_HYBRID_LVL,SWHR,109,40 +Temperature tendency from longwave radiative flux,LWHR_ON_HYBRID_LVL,LWHR,109,41 +Surface latent heat flux - time-averaged,AVE_LHTFL_ON_SURFACE,LHTFL,1,42 +Surface sensible heat flux - time-averaged,AVE_SHTFL_ON_SURFACE,SHTFL,1,43 +Roughness length,SFCR_ON_SURFACE,SFCR,1,44 +Friction velocity,FRICV_ON_SURFACE,FRICV,1,45 +Surface momentum flux - time-averaged,AVE_MFLX_ON_SURFACE,MFLX,1,46 +Accumulated surface evaporation,ACM_EVP_ON_SURFACE,EVP,1,47 +Latitude,NLAT_ON_SURFACE,NLAT,1,48 +Longitude,ELON_ON_SURFACE,ELON,1,49 +Land sea mask (land=1 sea=0),LAND_ON_SURFACE,LAND,1,50 +Sea ice mask,ICEC_ON_SURFACE,ICEC,1,51 +Press at tropopause,PRES_ON_TROPOPAUSE,PRES,7,54 +Temperature at tropopause,TMP_ON_TROPOPAUSE,TMP,7,55 +U wind at tropopause,UGRD_ON_TROPOPAUSE,UGRD,7,56 +V wind at tropopause,VGRD_ON_TROPOPAUSE,VGRD,7,57 +Wind shear at tropopause,VWSH_ON_TROPOPAUSE,VWSH,7,58 +Temperature at flight levels,TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,TMP,103,59 +U wind at flight levels,UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,UGRD,103,60 +V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,103,61 +Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,4,62 +Freezing level RH,RH_ON_0C_ISOTHERM,RH,4,63 +10 M u component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,105,64 +10 M v component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,105,65 +Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,116,67 +Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,116,68 +Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,116,69 +Dew point temperature in boundary layer (30 mb mean),DPT_ON_SPEC_PRES_ABOVE_GRND,DPT,116,70 +Specific humidity in boundary layer (30 mb mean),SPFH_ON_SPEC_PRES_ABOVE_GRND,SPFH,116,71 +RH in boundary layer (30 mb mean),RH_ON_SPEC_PRES_ABOVE_GRND,RH,116,72 +U wind in boundary layer (30 mb mean),UGRD_ON_SPEC_PRES_ABOVE_GRND,UGRD,116,73 +V wind in boundary layer (30 mb mean),VGRD_ON_SPEC_PRES_ABOVE_GRND,VGRD,116,74 +Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,116,75 +Skin Relative humidity,RH_ON_SURFACE,RH,1,76 +Height on model surface,HGT_ON_HYBRID_LVL,HGT,109,77 +Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,109,78 +Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,109,79 +Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,200,80 +Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,109,83 +Geostrophic streamfunction on model surface,STRM_ON_HYBRID_LVL,STRM,109,84 +Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,100,85 +Geostrophic streamfunction on pressure surface,STRM_ON_ISOBARIC_SFC,STRM,100,86 +Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,1,87 +Moisture convergence in boundary layer (30 mb mean),MCONV_ON_SPEC_PRES_ABOVE_GRND,MCONV,116,88 +Precipitable water in boundary layer (30 mb mean),PWAT_ON_SPEC_PRES_ABOVE_GRND,PWAT,116,89 +Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,116,90 +Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,102,105 +2 M temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMP,105,106 +Surface CIN,CIN_ON_SURFACE,CIN,1,107 +Potential temperature at tropopause,POT_ON_TROPOPAUSE,POT,7,108 +Above-ground height of LCL,HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC,HGT,5,109 +Pressure of LCL,PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC,PRES,5,110 +Richardson number on model surface,RI_ON_HYBRID_LVL,RI,109,111 +2 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,SPFH,105,112 +2 M dew point temperature,DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DPT,105,113 +2 M RH,RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,RH,105,114 +Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,111,115/571 +Soil temperature in between each of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC,TSOIL,112,116 +Soil moisture in between each of soil layers,SOILW_ON_DEPTH_BEL_LAND_SFC,SOILW,112,117 +Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,1,118 +Snow water equivalent,WEASD_ON_SURFACE,WEASD,1,119 +Snow cover in percentage,SNOWC_ON_SURFACE,SNOWC,1,120 +Accumulated total snow melt,ACM_SNOM_ON_SURFACE,SNOM,1,121 +Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,1,122 +Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,1,123 +Cloud water on model surface,CLWMR_ON_HYBRID_LVL,CLWMR,109,124 +Cloud ice on model surface,CICE_ON_HYBRID_LVL,CICE,109,125 +Incoming surface shortwave radiation - time-averaged,AVE_DSWRF_ON_SURFACE,DSWRF,1,126 +Incoming surface longwave radiation - time-averaged,AVE_DLWRF_ON_SURFACE,DLWRF,1,127 +Outgoing surface shortwave radiation - time-averaged,AVE_USWRF_ON_SURFACE,USWRF,1,128 +Outgoing surface longwave radiation - time-averaged,AVE_ULWRF_ON_SURFACE,ULWRF,1,129 +Outgoing model top shortwave radiation - time-averaged,AVE_USWRF_ON_TOP_OF_ATMOS,USWRF,8,130 +Outgoing model top longwave radiation - time-averaged,AVE_ULWRF_ON_TOP_OF_ATMOS,ULWRF,8,131 +Surface drag coefficient,CD_ON_SURFACE,CD,1,132 +Surface u wind stress,UFLX_ON_SURFACE,UFLX,1,133 +Surface v wind stress,VFLX_ON_SURFACE,VFLX,1,134 +Ground heat flux - time-averaged,AVE_GFLUX_ON_SURFACE,GFLUX,1,135 +Average snow phase change heat flux,AVE_SNOHF_ON_SURFACE,SNOHF,1,136 +Accumulated potential evaporation,ACM_PEVAP_ON_SURFACE,PEVAP,1,137 +2 M pressure,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,PRES,105,138 +Time-averaged stratospheric cloud fraction,AVE_CDLYR_ON_ENTIRE_ATMOS,CDLYR,200,139 +Temperature tendency from radiative fluxes,TTRAD_ON_HYBRID_LVL,TTRAD,109,140 +Outgoing surface shortwave radiation - instantaneous,INST_USWRF_ON_SURFACE,USWRF,1,141 +Outgoing surface longwave radiation - instantaneous,INST_ULWRF_ON_SURFACE,ULWRF,1,142 +Time-averaged convective cloud fraction,AVE_CDCON_ON_ENTIRE_ATMOS,CDCON,200,143 +Time-averaged total cloud fraction,AVE_TCDC_ON_ENTIRE_ATMOS,TCDC,200,144 +Cloud fraction on model surface,TCDC_ON_HYBRID_LVL,TCDC,109,145 +Master length scale on model surface,BMIXL_ON_HYBRID_LVL,BMIXL,109,146 +Asymptotic length scale on model surface,AMIXL_ON_HYBRID_LVL,AMIXL,109,147 +Cloud bottom pressure,PRES_ON_CLOUD_BASE,PRES,2,148 +Cloud top pressure,PRES_ON_CLOUD_TOP,PRES,3,149 +Surface midday albedo,ALBDO_ON_SURFACE,ALBDO,1,150 +Sea surface temperature,WTMP_ON_SURFACE,WTMP,1,151 +Ground heat flux - instantaneous,INST_GFLUX_ON_SURFACE,GFLUX,1,152 +Cloud water on pressure surface,CLWMR_ON_ISOBARIC_SFC,CLWMR,100,153 +Surface sensible heat flux – instantaneous,INST_SHTFL_ON_SURFACE,SHTFL,1,154 +Surface latent heat flux - instantaneous,INST_LHTFL_ON_SURFACE,LHTFL,1,155 +Incoming surface shortwave radiation - instantaneous,INST_DSWRF_ON_SURFACE,DSWRF,1,156 +Incoming surface longwave radiation - instantaneous,INST_DLWRF_ON_SURFACE,DLWRF,1,157 +10 M potential temperature,POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,POT,105,158 +10 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,SPFH,105,159 +Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,1,160 +Total cloud fraction,INST_TCDC_ON_ENTIRE_ATMOS,TCDC,200,161 +Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,106,162 +U component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,106,163 +V component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,106,164 +Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,204,165 +Cloud ice on pressure surface,CICE_ON_ISOBARIC_SFC,CICE,100,166 +Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,1,167 +Cloud top temperature,TMP_ON_CLOUD_TOP,TMP,3,168 +Heat exchange coeff at surface,SFEXC_ON_SURFACE,SFEXC,1,169 +Vegetation cover,VEG_ON_SURFACE,VEG,1,170 +Soil moisture availability,MSTAV_ON_DEPTH_BEL_LAND_SFC,MSTAV,112,171 +Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,1,172 +Maximum wind pressure level,PRES_ON_MAX_WIND,PRES,6,173 +Maximum wind height,HGT_ON_MAX_WIND,HGT,6,174 +U-component of maximum wind,UGRD_ON_MAX_WIND,UGRD,6,175 +V-component of maximum wind,VGRD_ON_MAX_WIND,VGRD,6,176 +Height at tropopause,HGT_ON_TROPOPAUSE,HGT,7,177 +Cloud bottom height (above MSL),HGT_ON_CLOUD_BASE,HGT,2,178 +Cloud top height (above MSL),HGT_ON_CLOUD_TOP,HGT,3,179 +Visibility,VIS_ON_SURFACE,VIS,1,180 +Rain on model surface,RWMR_ON_HYBRID_LVL,RWMR,109,181 +Snow on model surface,SNMR_ON_HYBRID_LVL,SNMR,109,182 +Rain on pressure surface,RWMR_ON_ISOBARIC_SFC,RWMR,100,183 +Snow water on pressure surface,SNMR_ON_ISOBARIC_SFC,SNMR,100,184 +Model level fraction of rain for Ferrier scheme,FRAIN_ON_HYBRID_LVL,FRAIN,109,185 +Model level fraction of ice for Ferrier scheme,FICE_ON_HYBRID_LVL,FICE,109,186 +Model level riming factor for Ferrier scheme,RIME_ON_HYBRID_LVL,RIME,109,187 +Convective cloud bottom pressure,PRES_ON_CONVECTIVE_CLOUD_BOT_LVL,PRES,242,188 +Convective cloud top pressure,PRES_ON_CONVECTIVE_CLOUD_TOP_LVL,PRES,243,189 +Shallow convective cloud bottom pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL,PRES,248,190 +Shallow convective cloud top pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL,PRES,249,191 +Deep convective cloud bottom pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL,PRES,251,192 +Deep convective cloud top pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL,PRES,252,193 +Grid scale cloud bottom pressure,PRES_ON_GRID_SCALE_CLOUD_BOT_LVL,PRES,206,194 +Grid scale cloud top pressure,PRES_ON_GRID_SCALE_CLOUD_TOP_LVL,PRES,207,195 +Convective cloud fraction,CDCON_ON_ENTIRE_ATMOS,CDCON,200,196 +Convective cloud efficiency,CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR,CUEFI,200,197 +Total condensate on pressure surface,TCOND_ON_ISOBARIC_SFC,TCOND,100,198 +Model level total condensate for Ferrier scheme,TCOND_ON_HYBRID_LVL,TCOND,109,199 +Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200,200 +Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,200,201 +Column integrated rain,TCOLR_ON_ENTIRE_ATMOS,TCOLR,200,202 +Column integrated snow,TCOLS_ON_ENTIRE_ATMOS,TCOLS,200,203 +Column integrated total condensate,TCOLC_ON_ENTIRE_ATMOS,TCOLC,200,204 +Height of sigma surface,HGT_ON_SIGMA_LVLS,HGT,107,205 +Temperature on sigma surface,TMP_ON_SIGMA_LVLS,TMP,107,206 +Specific humidity on sigma surface,SPFH_ON_SIGMA_LVLS,SPFH,107,207 +U-wind on sigma surface,UGRD_ON_SIGMA_LVLS,UGRD,107,208 +V-wind on sigma surface,VGRD_ON_SIGMA_LVLS,VGRD,107,209 +Omega on sigma surface,VVEL_ON_SIGMA_LVLS,VVEL,107,210 +Cloud water on sigma surface,CLWMR_ON_SIGMA_LVLS,CLWMR,107,211 +Cloud ice on sigma surface,CICE_ON_SIGMA_LVLS,CICE,107,212 +Rain on sigma surface,RWMR_ON_SIGMA_LVLS,RWMR,107,213 +Snow on sigma surface,SNMR_ON_SIGMA_LVLS,SNMR,107,214 +Condensate on sigma surface,TCOND_ON_SIGMA_LVLS,TCOND,107,215 +Pressure on sigma surface,PRES_ON_SIGMA_LVLS,PRES,107,216 +Turbulent kinetic energy on sigma surface,TKE_ON_SIGMA_LVLS,TKE,107,217 +Vegetation type,VGTYP_ON_SURFACE,VGTYP,1,218 +Soil type,SOTYP_ON_SURFACE,SOTYP,1,219 +Canopy conductance,CCOND_ON_SURFACE,CCOND,1,220 +PBL height,HPBL_ON_SURFACE,HPBL,1,221 +Cloud fraction on sigma surface,TCDC_ON_SIGMA_LVLS,TCDC,107,222 +Slope type,SLTYP_ON_SURFACE,SLTYP,1,223 +Snow depth,SNOD_ON_SURFACE,SNOD,1,224 +Liquid soil moisture,SOILL_ON_DEPTH_BEL_LAND_SFC,SOILL,112,225 +Snow free albedo,SNFALB_ON_SURFACE,SNFALB,1,226 +Maximum snow albedo,MXSALB_ON_SURFACE,MXSALB,1,227 +Canopy water evaporation,EVCW_ON_SURFACE,EVCW,1,228 +Direct soil evaporation,EVBS_ON_SURFACE,EVBS,1,229 +Plant transpiration,TRANS_ON_SURFACE,TRANS,1,230 +Snow sublimation,SBSNO_ON_SURFACE,SBSNO,1,231 +Air dry soil moisture,SMDRY_ON_SURFACE,SMDRY,1,232 +Soil moist porosity,POROS_ON_SURFACE,POROS,1,233 +Minimum stomatal resistance,RSMIN_ON_SURFACE,RSMIN,1,234 +Number of root layers,RLYRS_ON_SURFACE,RLYRS,1,235 +Soil moist wilting point,WILT_ON_SURFACE,WILT,1,236 +Soil moist reference,SMREF_ON_SURFACE,SMREF,1,237 +Canopy conductance - solar component,RCS_ON_SURFACE,RCS,1,238 +Canopy conductance - temperature component,RCT_ON_SURFACE,RCT,1,239 +Canopy conductance - humidity component,RCQ_ON_SURFACE,RCQ,1,240 +Canopy conductance - soil component,RCSOL_ON_SURFACE,RCSOL,1,241 +Potential evaporation,PEVPR_ON_SURFACE,PEVPR,1,242 +Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,107,243 +Accumulated large scale snow,Not currently available for grib2,NA,1,244 +Surface wind gust,GUST_ON_SURFACE,GUST,1,245 +LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,116,246 +LOWEST WET BULB ZERO HEIGHT,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,245,247 +Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,1,249 +Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,109,250 +Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,100,251 +Composite radar reflectivity,REFC_ON_ENTIRE_ATMOS,REFC,200,252 +Radar reflectivity at certain above ground heights,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,105,253 +Leaf area index,LAI_ON_SURFACE,LAI,1,254 +Graupel on sigma surface,GRLE_ON_SIGMA_LVLS,GRLE,107,255 +Accumulated land surface model precipitation,ACM_LSPA_ON_SURFACE,LSPA,1,256 +In-flight icing,TIPD_ON_ISOBARIC_SFC,TIPD,100,257 +Clear air turbulence,TPFI_ON_ISOBARIC_SFC,TPFI,100,258 +Wind shear between shelter level and 2000 FT,VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND,VWSH,106,259 +Ceiling,HGT_ON_CLOUD_CEILING,HGT,215,260 +Flight restriction,VIS_ON_CLOUD_BASE,VIS,2,261 +Instantaneous clear sky incoming surface shortwave,INST_CSDSF_ON_SURFACE,CSDSF,1,262 +Pressure level riming factor for Ferrier scheme,RIME_ON_ISOBARIC_SFC,RIME,100,263 +Model level vertical velocity,DZDT_ON_HYBRID_LVL,DZDT,109,264 +Brightness temperature,SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD,SBT122,8,265 +Average albedo,AVE_ALBDO_ON_SURFACE,ALBDO,1,266 +Ozone on model surface,O3MR_ON_HYBRID_LVL,O3MR,109,267 +Ozone on pressure surface,O3MR_ON_ISOBARIC_SFC,O3MR,100,268 +Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,1,269 +Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,1,270 +Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,1,271 +Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,1,272 +Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,8,274 +Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,8,275 +Composite rain radar reflectivity,REFZR_ON_ENTIRE_ATMOS,REFZR,200,276 +Composite ice radar reflectivity,REFZI_ON_ENTIRE_ATMOS,REFZI,200,277 +Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,200,278 +Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,105,279 +Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,105,280 +Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,105,281 +Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,8,282 +Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,100,284 +Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,200,285 +Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,200,286 +Height of lowest level super cool liquid water,HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,253,287 +Height of highest level super cool liquid water,HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,254,288 +Richardson number planetary boundary layer height,HGT_ON_PLANETARY_BOUND_LYR,HGT,220,289 +Total column shortwave temperature tendency,SWHR_ON_ENTIRE_ATMOS,SWHR,200,290 +Total column longwave temperature tendency,LWHR_ON_ENTIRE_ATMOS,LWHR,200,291 +Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,200,292 +Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,200,293 +Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,100,294 +Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,200,295 +Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,1,297 +Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,1,298 +Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,200,299 +Average low cloud fraction,AVE_TCDC_ON_LOW_CLOUD_LYR,TCDC,214,300 +Average mid cloud fraction,AVE_TCDC_ON_MID_CLOUD_LYR,TCDC,224,301 +Average high cloud fraction,AVE_TCDC_ON_HIGH_CLOUD_LYR,TCDC,234,302 +Average low cloud bottom pressure,AVE_PRES_ON_LOW_CLOUD_BOT_LVL,PRES,212,303 +Average low cloud top pressure,AVE_PRES_ON_LOW_CLOUD_TOP_LVL,PRES,213,304 +Average low cloud top temperature,AVE_TMP_ON_LOW_CLOUD_TOP_LVL,TMP,213,305 +Average mid cloud bottom pressure,AVE_PRES_ON_MID_CLOUD_BOT_LVL,PRES,222,306 +Average mid cloud top pressure,AVE_PRES_ON_MID_CLOUD_TOP_LVL,PRES,223,307 +Average mid cloud top temperature,AVE_TMP_ON_MID_CLOUD_TOP_LVL,TMP,223,308 +Average high cloud bottom pressure,AVE_PRES_ON_HIGH_CLOUD_BOT_LVL,PRES,232,309 +Average high cloud top pressure,AVE_PRES_ON_HIGH_CLOUD_TOP_LVL,PRES,233,310 +Average high cloud top temperature,AVE_TMP_ON_HIGH_CLOUD_TOP_LVL,TMP,233,311 +Total column relative humidity,RH_ON_ENTIRE_ATMOS_SINGLE_LYR,RH,200,312 +Cloud work function,AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR,CWORK,200,313 +Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,6,314 +Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,1,315 +Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,1,316 +Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,1,317 +Simulated GOES 12 channel 2 brightness temperature,SBT122_ON_TOP_OF_ATMOS,SBT122,8,327 +Simulated GOES 12 channel 3 brightness temperature,SBT123_ON_TOP_OF_ATMOS,SBT123,8,328 +Simulated GOES 12 channel 4 brightness temperature,SBT124_ON_TOP_OF_ATMOS,SBT124,8,329 +Simulated GOES 12 channel 5 brightness temperature,SBT126_ON_TOP_OF_ATMOS,SBT126,8,330 +Cloud fraction on pressure surface,TCDC_ON_ISOBARIC_SFC,TCDC,100,331 +U-wind on theta surface,UGRD_ON_ISENTROPIC_LVL,UGRD,113,332 +V-wind on theta surface,VGRD_ON_ISENTROPIC_LVL,VGRD,113,333 +Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,113,334 +Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,113,335 +U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,117,336 +V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,117,337 +Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,117,338 +Height on constant PV surface,HGT_ON_POT_VORT_SFC,HGT,117,339 +Pressure on constant PV surface,PRES_ON_POT_VORT_SFC,PRES,117,340 +Wind shear on constant PV surface,VWSH_ON_POT_VORT_SFC,VWSH,117,341 +Planetary boundary layer cloud fraction,AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR,TCDC,211,342 +Average water runoff,ACM_WATR_ON_SURFACE,WATR,1,343 +Planetary boundary layer regime,PBLREG_ON_SURFACE,PBLREG,1,344 +Maximum 2m temperature,MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMAX,105,345 +Minimum 2m temperature,MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMIN,105,346 +Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,105,347 +Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,105,348 +Ice thickness,ICETK_ON_SURFACE,ICETK,1,349 +Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,204,350 +Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,113,352 +Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,113,353 +Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,100,354 +Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,100,355 +Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,100,357 +Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,100,358 +Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,100,359 +Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,100,361 +Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,100,362 +Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,100,366 +Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,100,367 +Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,8,376 +Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,8,377 +Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,113,378 +Mixing height,MIXHT_ON_SURFACE,MIXHT,1,381 +Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,1,382 +Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,1,383 +Average clear-sky outgoing longwave at surface,AVE_CSULF_ON_SURFACE,CSULF,1,384 +Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATMOS,CSULF,8,385 +Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,1,386 +Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,8,387 +Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,8,388 +Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,220,389 +Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,220,390 +Sunshine duration,SUNSD_ON_SURFACE,SUNSD,1,396 +Field capacity,FLDCP_ON_SURFACE,FLDCP,1,397 +ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,6,398 +ICAO height at tropopause,ICAHT_ON_TROPOPAUSE,ICAHT,7,399 +Radar echo top,RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR,RETOP,200,400 +Time averaged surface Visible beam downward solar flux,AVE_VBDSF_ON_SURFACE,VBDSF,1,401 +Time averaged surface Visible diffuse downward solar flux,AVE_VDDSF_ON_SURFACE,VDDSF,1,402 +Time averaged surface Near IR beam downward solar flux,AVE_NBDSF_ON_SURFACE,NBDSF,1,403 +Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,NDDSF,1,404 +Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,1,405 +GSD Cloud Top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,3,406 +GSD cloud base height,GSD_HGT_ON_CLOUD_BASE,HGT,2,408 +GSD cloud top height,GSD_HGT_ON_CLOUD_TOP,HGT,3,409 +GSD visibility,GSD_VIS_ON_CLOUD_TOP,VIS,3,410 +Wind energy potential,WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND,WMIXE,105,411 +U wind at 80 m above ground,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,UGRD,105,412 +V wind at 80 m above ground,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,VGRD,105,413 +2 M mixing ratio,Not currently available for grib2,NA,105,414 +Graupel on model surface,GRMR_ON_HYBRID_LVL,GRMR,109,415 +Graupel on pressure surface,GRMR_ON_ISOBARIC_SFC,GRMR,100,416 +Maximum updraft helicity,MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,106,420 +Maximum 1km reflectivity,MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,MAXREF,105,421 +Maximum wind speed at 10m,MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,105,422 +Maximum updraft vertical velocity,MAX_MAXUVV_ON_ISOBARIC_SFC_40-100hpa,MAXUVV,106,423 +Maximum downdraft vertical velocity,MAX_MAXDVV_ON_ISOBARIC_SFC_40-100hpa,MAXDVV,106,424 +Mean vertical velocity,AVE_DZDT_ON_SIGMA_LVL_0.5-0.8,DZDT,108,425 +Radar echo top in KDT,HGT_ON_SPEC_HGT_LVL_ABOVE_GRND,HGT,105,426 +Updraft helicity,UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,106,427 +Column integrated graupel,GRMR_ON_ENTIRE_ATMOS_SINGLE_LYR,GRMR,200,428 +Column integrated maximum graupel,MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR,TCOLG,200,429 +U-component of 0-1km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VUCSH,106,430 +V-component of 0-1km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VVCSH,106,431 +U-component of 0-6km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VUCSH,106,432 +V-component of 0-6km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VVCSH,106,433 +Total precipitation accumulated over user-specified bucket,BUCKET_APCP_ON_SURFACE,APCP,1,434 +Convective precipitation accumulated over user-specified bucket,BUCKET_ACPCP_ON_SURFACE,ACPCP,1,435 +Grid-scale precipitation accumulated over user-specified bucket,BUCKET_NCPCP_ON_SURFACE,NCPCP,1,436 +Snow accumulated over user-specified bucket,BUCKET_WEASD_ON_SURFACE,WEASD,1,437 +Dust 1 on pressure surface,DUST1_ON_ISOBARIC_LVL,MASSMR,100,438 +Dust 2 on pressure surface,DUST2_ON_ISOBARIC_LVL,MASSMR,100,439 +Dust 3 on pressure surface,DUST3_ON_ISOBARIC_LVL,MASSMR,100,440 +Dust 4 on pressure surface,DUST4_ON_ISOBARIC_LVL,MASSMR,100,441 +Dust 5 on pressure surface,DUST5_ON_ISOBARIC_LVL,MASSMR,100,442 +Equilibrium level height,HGT_ON_EQUIL_LVL,HGT,247,443 +Lightning,LTNG_ON_SURFACE,LTNG,1,444 +MAPS Sea Level Pressure,MAPS_PRMSL_ON_MEAN_SEA_LVL,PRMSL,102,445 +Goes west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,8,446 +Goes west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,8,447 +Goes west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,8,448 +Goes west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,8,449 +In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,100,450 +Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,103,451 +Virtual temperature based convective available potential energy,VTCAPE_ON_SURFACE,CAPE,1,452 +Virtual temperature based convective inhibition,VTCIN_ON_SURFACE,CIN,1,453 +Ventilation rate,VRATE_ON_PLANETARY_BOUND_LYR,VRATE,220,454 +Haines index,HINDEX_ON_SURFACE,HINDEX,1,455 +Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,8,456 +Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,8,457 +Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,8,458 +Simulated GOES 12 channel 5 brightness temperature with satellite angle correction,NON_NADIR_SBT126_ON_TOP_OF_ATMOS,SBT126,8,459 +Simulated GOES 11 channel 2 brightness temperature with satellite angle correction,SBT112_ON_TOP_OF_ATMOS,SBT112,8,460 +Simulated GOES 11 channel 3 brightness temperature with satellite angle correction,SBT113_ON_TOP_OF_ATMOS,SBT113,8,461 +Simulated GOES 11 channel 4 brightness temperature with satellite angle correction,SBT114_ON_TOP_OF_ATMOS,SBT114,8,462 +Simulated GOES 11 channel 5 brightness temperature with satellite angle correction,SBT115_ON_TOP_OF_ATMOS,SBT115,8,463 +Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,103,482 +Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,8,483 +Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,8,484 +Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,8,485 +Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,8,486 +Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,1,500 +Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,1,501 +Time-averaged 10m temperature,AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,105,502 +Time-averaged mass exchange coefficient,AVE_AKHS_ON_SURFACE,AKHS,1,503 +Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,1,504 +Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,105,505 +Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,105,506 +Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,105,507 +Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,111,571/115 +Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,200,575 +GSD Cloud Base pressure,Not currently available for grib2,NA,2,787 +SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,800 +SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,806 +SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,812 +SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,818 +SSMIS F17 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,825 +SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,832 +SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,839 +SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,846 +MTSAT2 imager channels 1-4,Not currently available for grib2,NA,109,860 +MTSAT-1r imager channels 1-4 (backup for mtsat2),Not currently available for grib2,NA,109,864 +Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,109,865 +Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,109,868 +Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,109,872 +Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,109,876 +Virtual temperature on model surfaces,Not currently available for grib2,NA,109,909 +Virtual temperature on pressure surfaces,Not currently available for grib2,NA,100,910 +Virtual temperature on flight levels,Not currently available for grib2,NA,103,911 +Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,109,927 +Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,109,928 +Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,109,929 +Simulated GOES 16 band 10 brightness temperature,SBTA1610_ON_TOP_OF_ATMOS,SBTA1610,109,930 +Simulated GOES 16 band 11 brightness temperature,SBTA1611_ON_TOP_OF_ATMOS,SBTA1611,109,931 +Simulated GOES 16 band 12 brightness temperature,SBTA1612_ON_TOP_OF_ATMOS,SBTA1612,109,932 +Simulated GOES 16 band 13 brightness temperature,SBTA1613_ON_TOP_OF_ATMOS,SBTA1613,109,933 +Simulated GOES 16 band 14 brightness temperature,SBTA1614_ON_TOP_OF_ATMOS,SBTA1614,109,934 +Simulated GOES 16 band 15 brightness temperature,SBTA1615_ON_TOP_OF_ATMOS,SBTA1615,109,935 +Simulated GOES 16 band 16 brightness temperature,SBTA1616_ON_TOP_OF_ATMOS,SBTA1616,109,936 +Simulated GOES 17 band 7 brightness temperature,SBTA177_ON_TOP_OF_ATMOS,SBTA177,109,937 +Simulated GOES 17 band 8 brightness temperature,SBTA178_ON_TOP_OF_ATMOS,SBTA178,109,938 +Simulated GOES 17 band 9 brightness temperature,SBTA179_ON_TOP_OF_ATMOS,SBTA179,109,939 +Simulated GOES 17 band 10 brightness temperature,SBTA1710_ON_TOP_OF_ATMOS,SBTA1710,109,940 +Simulated GOES 17 band 11 brightness temperature,SBTA1711_ON_TOP_OF_ATMOS,SBTA1711,109,941 +Simulated GOES 17 band 12 brightness temperature,SBTA1712_ON_TOP_OF_ATMOS,SBTA1712,109,942 +Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA1713,109,943 +Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,109,944 +Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,109,945 +Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,109,946 +Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,109,958 +Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,109,959 +Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,109,960 +Simulated GOES R band 10 brightness temperature,SBTAGR10_ON_TOP_OF_ATMOS,SBTAGR10,109,961 +Simulated GOES R band 11 brightness temperature,SBTAGR11_ON_TOP_OF_ATMOS,SBTAGR11,109,962 +Simulated GOES R band 12 brightness temperature,SBTAGR12_ON_TOP_OF_ATMOS,SBTAGR12,109,963 +Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR13,109,964 +Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,109,965 +Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,109,966 +Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,109,967 +Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,109,969 +Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,109,970 +Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,109,971 +Simulated Himawari-8 band 10 brightness temperature,SBTAHI10_ON_TOP_OF_ATMOS,SBTAHI10,109,972 +Simulated Himawari-8 band 11 brightness temperature,SBTAHI11_ON_TOP_OF_ATMOS,SBTAHI11,109,973 +Simulated Himawari-8 band 12 brightness temperature,SBTAHI12_ON_TOP_OF_ATMOS,SBTAHI12,109,974 +Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBTAHI13,109,975 +Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,109,976 +Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,109,977 +Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,109,978 diff --git a/docs/UPP_GRIB2_Table_byID.rst b/docs/UPP_GRIB2_Table_byID.rst new file mode 100644 index 000000000..56a0ac1a7 --- /dev/null +++ b/docs/UPP_GRIB2_Table_byID.rst @@ -0,0 +1,16 @@ +:orphan: + +******************************** +GRIB2 Fields Produced by UPP +******************************** + +GRIB2 fields produced by UPP (column 1), abbreviated names +used in the *postcntrl.xml* file (column 2), corresponding standard +grib2 pname (column 3), corresponding grib identification number for the +vertical coordinate (column 4), and corresponding array location UPP +uses to store the variable in parallel arrays (column 5). + +.. csv-table:: + :file: UPP_GRIB2_Table_byID.csv + :widths: 25, 30, 15, 15, 15 + :header-rows: 1 From 19ba4ae73dec69caccbbe29790a40e184581d9d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 25 May 2023 11:03:00 -0400 Subject: [PATCH 05/44] minor edits to Intro --- docs/Introduction.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Introduction.rst b/docs/Introduction.rst index 00ba8a51c..e6142cc4c 100644 --- a/docs/Introduction.rst +++ b/docs/Introduction.rst @@ -8,11 +8,11 @@ products from raw model output. The UPP is currently used in operations with the Global Forecast System (GFS), GFS Ensemble Forecast System (GEFS), North American Mesoscale (NAM), Rapid Refresh (RAP), High Resolution Rapid Refresh (HRRR), Short Range Ensemble Forecast (SREF), and Hurricane WRF (HWRF) applications. It is also used -in the Unified Forecasting System (UFS), including the Rapid Refresh Forecast System (RRFS), Hurricane -Application Forecasting System (HAFS), and the Medium Range Weather (MRW) and Short Range Weather (SRW) +in the Unified Forecast System (UFS), including the Rapid Refresh Forecast System (RRFS), Hurricane +Analysis and Forecast System (HAFS), and the Medium-Range Weather (MRW) and Short-Range Weather (SRW) Applications. -This software package can be run inline, built as a library to be used by the model, and offline, +This software package can be run inline---built as a library to be used by the model---and offline--- built stand-alone and run separate from the model. This documentation largely details the offline procedures. From f64ed534c3b91411585bf825be8eb2ebf7110ec9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 30 May 2023 08:27:18 -0400 Subject: [PATCH 06/44] add Glossary, minor edits to other chapters --- docs/CodeOverview.rst | 58 ++++++++------- docs/Glossary.rst | 162 +++++++++++++++++++++++++++++++++++++++++ docs/InputsOutputs.rst | 44 +++++------ docs/Installation.rst | 33 ++++++--- docs/Introduction.rst | 12 +-- docs/Running.rst | 23 +++--- docs/index.rst | 1 + 7 files changed, 255 insertions(+), 78 deletions(-) create mode 100644 docs/Glossary.rst diff --git a/docs/CodeOverview.rst b/docs/CodeOverview.rst index 477181591..a12f5a909 100644 --- a/docs/CodeOverview.rst +++ b/docs/CodeOverview.rst @@ -1,18 +1,21 @@ -************* -Code Overview -************* - -The Unified Post Processor (UPP) is used to post-process model forecasts and provides the capability to compute a variety of -diagnostic fields and interpolate to pressure levels or other vertical coordinates. - -Output from the UPP is in National Weather Service (NWS) and World Meteorological Organization (WMO) -`GRIB2 `__ format and can be used directly by -visualization, plotting, or verification packages, or for further downstream post-processing, e.g., -statistical post-processing techniques. +******************* +Technical Overview +******************* + +The Unified Post Processor (UPP) is used to post-process model forecasts. +It can compute a variety of diagnostic fields and interpolate output from the model's +native grids to National Weather Service (:term:`NWS`) standard levels (e.g., pressure, height) +and standard output grids (e.g., AWIPS, Lambert Conformal, polar-stereographic) in NWS +and World Meteorological Organization (WMO) `GRIB2 `__ format. +There is also an option to output fields on the model's native vertical levels. +Output from the UPP can be used directly by visualization, plotting, or verification packages +or used in further downstream post-processing (e.g., statistical post-processing techniques). **HIGHLIGHTS** -The UPP reads and processes GFS and LAM (Limited Area Model) data from the FV3 dynamical core and generates output in GRIB2 format. It uses MPI parallel code and produces hundreds of products like those used operationally on the same operational grids. Examples of UPP products include: +The UPP reads and processes :term:`GFS` and :term:`LAM` (Limited Area Model) data from the :term:`FV3` :term:`dynamical core` +and generates output in :term:`GRIB2` format. It uses :term:`MPI` parallel code and produces hundreds of +products like those used operationally on the same operational grids. Examples of UPP products include: - T, Z, humidity, wind, cloud water, cloud ice, rain, and snow on pressure levels - SLP, shelter level T, humidity, and wind fields @@ -25,7 +28,7 @@ The UPP reads and processes GFS and LAM (Limited Area Model) data from the FV3 d - Radar reflectivity products - Satellite look-alike products -A full list of fields that can be generated by the UPP is provided in :doc:`UPP_GRIB2_Table`. +A full list of fields that can be generated by the UPP is provided in :doc:`UPP_GRIB2_Table_byID`. As of v11.0.0, the UPP has 2D decomposition capabilities and is also backwards compatible for 1D decomposition. The functionality demonstrates run-time improvements, especially for larger domains. Support for this @@ -35,8 +38,8 @@ Support for the community UPP is provided through `GitHub Discussions `_ is a forecast-model agnostic, vetted collection of code containing atmospheric physical parameterizations and suites of parameterizations for use in Numerical Weather Prediction (NWP) along with a framework that connects the physics to the host forecast model. + + CIN + Convective Inhibition. + + CRTM + The `Community Radiative Transfer Model `__ (CRTM) is a fast and accurate radiative transfer model developed at the `Joint Center for Satellite Data Assimilation `__ (JCSDA) in the United States. It is a sensor-based radiative transfer model and supports more than 100 sensors, including sensors on most meteorological satellites and some from other remote sensing satellites. + + Component + A software element that has a clear function and interface. In Earth system models, components are often single portions of the Earth system (e.g. atmosphere, ocean, or land surface) that are assembled to form a whole. + + Component Repository + A :term:`repository` that contains, at a minimum, source code for a single component. + + CONUS + Continental United States + + CAM + convection-allowing models + Convection-allowing models (CAMs) are models that run on high-resolution grids (usually with grid spacing at 4km or less). They are able to resolve the effects of small-scale convective processes. They typically run several times a day to provide frequent forecasts (e.g., hourly or subhourly). + + data assimilation + Data assimilation is the process of combining observations, model data, and error statistics to achieve the best estimate of the state of a system. One of the major sources of error in weather and climate forecasts is uncertainty related to the initial conditions that are used to generate future predictions. Even the most precise instruments have a small range of unavoidable measurement error, which means that tiny measurement errors (e.g., related to atmospheric conditions and instrument location) can compound over time. These small differences result in very similar forecasts in the short term (i.e., minutes, hours), but they cause widely divergent forecasts in the long term. Errors in weather and climate forecasts can also arise because models are imperfect representations of reality. Data assimilation systems seek to mitigate these problems by combining the most timely observational data with a "first guess" of the atmospheric state (usually a previous forecast) and other sources of data to provide a "best guess" analysis of the atmospheric state to start a weather or climate simulation. When combined with an "ensemble" of model runs (many forecasts with slightly different conditions), data assimilation helps predict a range of possible atmospheric states, giving an overall measure of uncertainty in a given forecast. + + dycore + dynamical core + Global atmospheric model based on fluid dynamics principles, including Euler's equations of motion. + + echo top + The radar-indicated top of an area of precipitation. Specifically, it contains the height of the 18 dBZ reflectivity value. + + EMC + The `Environmental Modeling Center `__. + + EPIC + The `Earth Prediction Innovation Center `__ seeks to accelerate scientific research and modeling contributions through continuous and sustained community engagement in order to produce the most accurate and reliable operational modeling system in the world. + + ESG + Extended Schmidt Gnomonic (ESG) grid. The ESG grid uses the map projection developed by Jim Purser of NOAA :term:`EMC`. + + ESMF + `Earth System Modeling Framework `__. The ESMF defines itself as “a suite of software tools for developing high-performance, multi-component Earth science modeling applications.” + + FV3 + The Finite-Volume Cubed-Sphere :term:`dynamical core` (dycore). Developed at NOAA's `Geophysical + Fluid Dynamics Laboratory `__ (GFDL), it is a scalable and flexible dycore capable of both hydrostatic and non-hydrostatic atmospheric simulations. It is the dycore used in the UFS Weather Model. + + GFS + `Global Forecast System `_. The GFS is a National Centers for Environmental Prediction (:term:`NCEP`) weather forecast model that generates data for dozens of atmospheric and land-soil variables, including temperatures, winds, precipitation, soil moisture, and atmospheric ozone concentration. The system couples four separate models (atmosphere, ocean, land/soil, and sea ice) that work together to accurately depict weather conditions. + + GRIB2 + The second version of the World Meterological Organization's (WMO) standard for distributing gridded data. + + GSI + `Gridpoint Statistical Interpolation `__ (GSI) is a variational data assimilation system, designed to be flexible, state-of-art, and run efficiently on various parallel computing platforms. It supports :term:`RRFS` features. GSI code is publicly available `on GitHub `__, and fix file data is publicly available `here `__. + + HPC-Stack + The `HPC-Stack `__ is a repository that provides a unified, shell script-based build system for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. View the HPC-Stack documentation `here `__. + + HRRR + `High Resolution Rapid Refresh `__. The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh. + + JCSDA + Joint Center for Data Satellite Assimilation + The `Joint Center for Satellite Data Assimilation `__ is a multi-agency research center hosted by the University Corporation for Atmospheric Research (`UCAR `__). JCSDA is dedicated to improving and accelerating the quantitative use of research and operational satellite data in weather, ocean, climate, and environmental analysis and prediction systems. + + LAM + Limited Area Model (grid type), formerly known as the "Stand-Alone Regional" or SAR. LAM grids use a regional (rather than global) configuration of the :term:`FV3` :term:`dynamical core`. + + MPI + MPI stands for Message Passing Interface. An MPI is a standardized communication system used in parallel programming. It establishes portable and efficient syntax for the exchange of messages and data between multiple processors that are used by a single computer program. An MPI is required for high-performance computing (HPC) systems. + + MRW + Medium-Range Weather Application + The `Medium-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior out to about two weeks. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. + + NAM + `North American Mesoscale Forecast System `_. NAM generates multiple grids (or domains) of weather forecasts over the North American continent at various horizontal resolutions. Each grid contains data for dozens of weather parameters, including temperature, precipitation, lightning, and turbulent kinetic energy. NAM uses additional numerical weather models to generate high-resolution forecasts over fixed regions, and occasionally to follow significant weather events like hurricanes. + + namelist + A namelist defines a group of variables or arrays. Namelists are an I/O feature for format-free input and output of variables by key-value assignments in Fortran compilers. Fortran variables can be read from and written to plain-text files in a standardised format, usually with a ``.nml`` file ending. + + NCAR + The `National Center for Atmospheric Research `__. + + NCEP + National Centers for Environmental Prediction (NCEP) is an arm of the National Weather Service + consisting of nine centers. More information can be found at https://www.ncep.noaa.gov. + + NEMSIO + A binary format for atmospheric model output from :term:`NCEP`'s Global Forecast System (:term:`GFS`). + + netCDF + NetCDF (`Network Common Data Form `__) is a file format and community standard for storing multidimensional scientific data. It includes a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + + NUOPC + The `National Unified Operational Prediction Capability `__ Layer "defines conventions and a set of generic components for building coupled models using the Earth System Modeling Framework (:term:`ESMF`)." + + NWP + Numerical Weather Prediction (NWP) takes current observations of weather and processes them with computer models to forecast the future state of the weather. + + NWS + The `National Weather Service `__ (NWS) is an agency of the United States government that is tasked with providing weather forecasts, warnings of hazardous weather, and other weather-related products to organizations and the public for the purposes of protection, safety, and general information. It is a part of the National Oceanic and Atmospheric Administration (NOAA) branch of the Department of Commerce. + + offline UPP + Refers to cases where UPP is built stand-alone and run separately from the model. + + RAP + `Rapid Refresh `__. The continental-scale NOAA hourly-updated assimilation/modeling system operational at :term:`NCEP`. RAP covers North America and is comprised primarily of a numerical forecast model and an analysis/assimilation system to initialize that model. RAP is complemented by the higher-resolution 3km High-Resolution Rapid Refresh (:term:`HRRR`) model. + + Repository + A central location in which files (e.g., data, code, documentation) are stored and managed. + + RRFS + The `Rapid Refresh Forecast System `__ (RRFS) is NOAA's next-generation convection-allowing, rapidly-updated, ensemble-based data assimilation and forecasting system currently scheduled for operational implementation in 2024. It is designed to run forecasts on a 3-km :term:`CONUS` domain. + + SDF + Suite Definition File. An external file containing information about the construction of a physics suite. It describes the schemes that are called, in which order they are called, whether they are subcycled, and whether they are assembled into groups to be called together. + + SRW + Short-Range Weather Application + The `Short-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. + + Spack + `Spack `__ is a package management tool designed to support multiple versions and configurations of software on a wide variety of platforms and environments. It was designed for large supercomputing centers, where many users and application teams share common installations of software on clusters with exotic architectures. + + spack-stack + The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a :term:`Spack`-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. + + UFS + The Unified Forecast System is a community-based, coupled, comprehensive Earth modeling + system consisting of several applications (apps). These apps span regional to global + domains and sub-hourly to seasonal time scales. The UFS is designed to support the :term:`Weather Enterprise` and to be the source system for NOAA's operational numerical weather prediction applications. For more information, visit https://ufscommunity.org/. + + Updraft helicity + Helicity measures the rotation in a storm's updraft (rising) air. Significant rotation increases the probability that the storm will produce severe weather, including tornadoes. See http://ww2010.atmos.uiuc.edu/(Gh)/guides/mtr/svr/modl/fcst/params/hel.rxml for more details on updraft helicity. + + Weather Enterprise + Individuals and organizations from public, private, and academic sectors that contribute to the research, development, and production of weather forecast products; primary consumers of these weather forecast products. + + Weather Model + A prognostic model that can be used for short- and medium-range research and + operational forecasts. It can be an atmosphere-only model or an atmospheric + model coupled with one or more additional components, such as a wave or ocean model. The SRW App uses the `UFS Weather Model `__. + + Workflow + The sequence of steps required to run an experiment from start to finish. + + write component + The output files written by the UFS Weather Model use an Earth System Modeling Framework (ESMF) component, referred to as the write component because the UPP cannot directly process output on the native grid types (e.g., “GFDLgrid”, “ESGgrid”). Output fields are interpolated to a write component grid before writing them to an output file. \ No newline at end of file diff --git a/docs/InputsOutputs.rst b/docs/InputsOutputs.rst index 351587728..db2a7f6aa 100644 --- a/docs/InputsOutputs.rst +++ b/docs/InputsOutputs.rst @@ -15,17 +15,17 @@ Input files The UPP requires the following input files: - The model forecast file - - The itag namelist file - - The GRIB2 control file - - Additional data files (e.g. lookup tables, coefficient files for satellite) + - The :bolditalic:`itag` namelist file + - The :term:`GRIB2` control file + - Additional data files (e.g. lookup tables, coefficient files for satellites) -------------- Model Forecast -------------- -The UPP ingests FV3 write component files in parallel netCDF format. +The UPP ingests FV3 :term:`write component` files in parallel :term:`netCDF` format. -The table below is a list of the unified model variables available from the FV3 model core. Whether a +The table below is a list of the unified model variables available from the :term:`FV3` model core. Whether a specific variable is able to be read by UPP relies on dependencies such as physics options and model. This table does not include variables that are diagnosed when running the UPP. @@ -36,12 +36,13 @@ UFS Unified Model Variables ITAG ---- -The file called :bolditalic:`itag` is a text file that contains the fortran namelist &model_inputs as -well as the 2D decomposition specification in &nampgb. It is read in by the :bolditalic:`upp.x` executable -from stdin (unit 5) and is generated automatically within the UFS application workflow or stand-alone run script based on user-defined options. It should not be necessary to edit this. For description purposes, -the namelist &model_inputs and &nampgb (:bolditalic:`itag` file) contain the following lines for FV3: +The file called :bolditalic:`itag` is a text file that contains the fortran namelist ``&model_inputs`` as +well as the 2D decomposition specification in ``&nampgb``. It is read in by the :bolditalic:`upp.x` executable +from stdin (unit 5) and is generated automatically within the UFS application workflow or stand-alone run +script based on user-defined options. It should not be necessary to edit this. For description purposes, +the namelists ``&model_inputs`` and ``&nampgb`` (:bolditalic:`itag` file) contain the following lines for FV3: -&model_inputs +:bolditalic:`&model_inputs` #. fileName: Name of the FV3 (pressure level) output file to be post-processed. @@ -58,7 +59,7 @@ the namelist &model_inputs and &nampgb (:bolditalic:`itag` file) contain the fol #. fileNameFlat: Name of configuration file (postxconfig-NT.txt) -&nampgb +:bolditalic:`&nampgb` #. numx: Number of subdomains in the x-direction used for 2D decomposition. @@ -87,7 +88,7 @@ To output a field, the body of the control file needs to contain an entry for th If an entry for a particular field is not yet available in the control file, it may be added to the control file with the appropriate entries for that field. For variables found on vertical levels (e.g. isobaric or height levels), the desired levels to be output must be listed (see next section: -:ref:`control_levels`). A list of available Grib2 fields that can be output by UPP can be found in the +:ref:`control_levels`). A list of available GRIB2 fields that can be output by UPP can be found in the table :doc:`UPP_GRIB2_Table_byID`. Please note that some fields are dependent on model, physics, and other fields. .. _control_levels: @@ -102,15 +103,15 @@ levels are currently available for output: then every 25 mb from 75 to 1000 mb*). The complete list of levels is specified in :bolditalic:`sorc/ncep_post.fd/CTLBLK.f`. - - Modify specification of variable LSMDEF to change the number of pressure levels: LSMDEF=47 - - Modify specification of SPLDEF array to change the values of pressure levels: + - Modify specification of variable ``LSMDEF`` to change the number of pressure levels: LSMDEF=47 + - Modify specification of ``SPLDEF`` array to change the values of pressure levels: (/200.,500.,700.,1000.,2000.,3000.,5000.,7000.,7500.,10000.,12500.,15000.,17500.,20000., …/) - For model-level output, all model levels are possible, from the highest to the lowest. - When using the Noah LSM, the soil layers are 0-10 cm, 10-40 cm, 40-100 cm, and 100-200 cm. - When using the RUC LSM, the soil levels are 0 cm, 1 cm, 4 cm, 10 cm, 30 cm, 60 cm, 100 cm, 160 cm, - and 300 cm. (For the old RUC LSM, there are only 6 layers and if using this, you will need to change - “RUC LSM” from 9 to 6 in the :bolditalic:`sorc/ncep_post.fd/WRFPOST.f` routine.) + and 300 cm. (For the old RUC LSM, there are only 6 layers, and if using this, you will need to change + ``NSOIL`` for “RUC LSM” from 9 to 6 in the :bolditalic:`sorc/ncep_post.fd/WRFPOST.f` routine.) - When using Pliem-Xiu LSM, there are two layers: 0-1 cm, 1-100 cm - For low, mid, and high cloud layers, the layers are :math:`\geq`\ 642 hPa, :math:`\geq`\ 350 hPa, and <350 hPa, respectively. @@ -133,9 +134,9 @@ file to declare which fields are to be output from the UPP. In order to ensure that the user-edited xml files are error free, XML stylesheets (:bolditalic:`parm/EMC\_POST\_CTRL\_Schema.xsd` and :bolditalic:`EMC\_POST\_Avblflds\_Schema.xsd`) can be used to validate both the :bolditalic:`postcntrl.xml` and :bolditalic:`post\_avblflds.xml` files, -respectively. Confirmation of validation will be given (e.g. postcntrl.xml validates) or otherwise -return errors if it does not match the schema. This step is optional, but acts as a safe-guard to avoid -run-time failures with UPP. To run the validation: +respectively. Confirmation of validation will be given (e.g., :bolditalic:`postcntrl.xml` validates) or otherwise +return errors if it does not match the schema. This step is optional, but acts as a safeguard to avoid +run-time failures with the UPP. To run the validation: .. code-block:: console @@ -143,8 +144,7 @@ run-time failures with UPP. To run the validation: xmllint --noout --schema EMC_POST_Avblflds_Schema.xsd post_avblflds.xml Once the xmls are validated, the user will need to generate the flat file. The below command will run the -perl program :bolditalic:`parm/POSTXMLPreprocessor.pl` to generate the post flat file. Generate the flat -file: +Perl program :bolditalic:`parm/POSTXMLPreprocessor.pl` to generate the post flat file: .. code-block:: console @@ -159,7 +159,7 @@ Output Files Upon a successful run, :bolditalic:`upp.x` will generate GRIB2 output files in the post-processor working directory. These files will include all fields that were requested in the control file. -When running UPP stand-alone, the following Grib2 output files will be generated: +When running UPP stand-alone, the following GRIB2 output files will be generated: | **GFS Model**: GFSPRS.HHH | **LAM (Limited Area Model)**: NATLEV.HHH and PRSLEV.HHH diff --git a/docs/Installation.rst b/docs/Installation.rst index 92b29c89f..3f2a72d18 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -14,14 +14,18 @@ Once built, the UPP can be run stand-alone (outside the UFS Applications) to pos Software Requirements ===================== -The UPP is tested on a variety of research platforms, including NOAA HPC systems (e.g. Hera, Orion) and +The UPP is tested on a variety of research platforms, including NOAA HPC systems (e.g., Hera, Orion) and the NCAR HPC Cheyenne. These supported platforms are pre-configured for building and running the UPP and already have the required libraries available via `HPC-Stack `_ in a centralized -location. The HPC-Stack is a script-based build system that builds the software stack required by UFS components. +location. The :term:`HPC-Stack` is a script-based build system that builds the software stack required by UFS components. Users working on unsupported platforms will need to install the HPC-Stack on their system and can do so following the instructions in the `HPC-Stack User's Guide `_. +.. note:: + + UFS applications are gradually shifting to :term:`spack-stack`, which is a :term:`Spack`-based method for installing the same UFS prerequisite software libraries installed by HPC-Stack. The spack-stack is currently used on NOAA Cloud platforms and in containerized UFS applications, while HPC-Stack is still used on other Level 1 systems and is the software stack validated by the UFS Weather Model. Users are encouraged to check out `spack-stack `__ to prepare for the upcoming shift in support from HPC-Stack to spack-stack. + ============================ Obtaining and Installing UPP ============================ @@ -40,13 +44,15 @@ Building and running UPP V10.1.0 has been tested and is supported on the followi | NOAA Orion | Intel 2018.4 | +---------------+----------------------+ -Move to the directory where you want to install UPP and clone the repository. +.. COMMENT: Fix version #! + +To install the UPP, navigate to the directory where you want to install UPP and clone the repository. .. code-block:: console git clone -b branch-or-tag-name https://github.com/NOAA-EMC/UPP -where, ``branch-or-tag-name`` is the release branch or tag you wish to clone. +where, ``branch-or-tag-name`` is the release branch or tag you wish to clone. (Leaving this off the ``-b`` argument will clone all branches of the repository.) Move to the directory with the build script and build the UPP. @@ -57,17 +63,18 @@ Move to the directory with the build script and build the UPP. ./compile_upp.sh .. note:: - To build in debug mode, you can add :bolditalic:`-DCMAKE_BUILD_TYPE=Debug` to the *cmake_opts* + To build in debug mode, you can add ``-DCMAKE_BUILD_TYPE=Debug`` to the *cmake_opts* parameter in the :bolditalic:`compile_upp.sh` script. - This removes compiler optimization flags and adds -g to the fortran compilation. You can also use - :bolditalic:`-DCMAKE_BUILD_TYPE=RELWITHDEBINFO`, which gives the -g, but keeps the -O2 optimization + This removes compiler optimization flags and adds ``-g`` to the fortran compilation. You can also use + ``-DCMAKE_BUILD_TYPE=RELWITHDEBINFO``, which gives the ``-g``, but keeps the ``-O2`` optimization for the fortran compilation. -Move back to the top level UPP directory and create a directory for the CRTM fix files to be unpacked -in. Download the fix files from the Github `release page -`_ or use the wget command. Unpack the +Move back to the top level UPP directory and create a directory where the CRTM fix files will be unpacked. Download the fix files from the GitHub `release page +`__ or use the ``wget`` command. Unpack the tar file. +.. COMMENT: Only v10.1.0? No v11.0.0? + .. code-block:: console cd ../ @@ -84,7 +91,7 @@ tar file. UPP Directory Structure ======================= -Under the main directory **UPP** reside the following relevant subdirectories (The * indicates a +Under the main **UPP** directory reside the following relevant subdirectories (The * indicates a directory that exists only after the build is complete): | **exec***: Contains the :bolditalic:`upp.x` executable after successful compilation @@ -98,9 +105,11 @@ directory that exists only after the build is complete): | **scripts**: Contains a sample run script to process fv3 history files. | - **run_upp**: runs :bolditalic:`upp.x`. - | **sorc**: Contains source codes for: + | **sorc**: Contains source code for: | - **ncep_post.fd**: Source code for the UPP | **tests**: Contains the scripts used to install UPP | - **build***: Contains the UPP build | - **install***: Contains the installed executable (bin/upp.x), modules, and libraries + +.. COMMENT: Delete this section and link to Ch. 2? Add exec there? Is some of this out-of date? (e.g., tests info?) diff --git a/docs/Introduction.rst b/docs/Introduction.rst index e6142cc4c..9844c8453 100644 --- a/docs/Introduction.rst +++ b/docs/Introduction.rst @@ -5,15 +5,15 @@ Introduction The Unified Post Processor (UPP) is a software package designed to generate useful products from raw model output. -The UPP is currently used in operations with the Global Forecast System (GFS), GFS Ensemble Forecast -System (GEFS), North American Mesoscale (NAM), Rapid Refresh (RAP), High Resolution Rapid Refresh +The UPP is currently used in operations with the Global Forecast System (:term:`GFS`), GFS Ensemble Forecast +System (GEFS), North American Mesoscale (:term:`NAM`), Rapid Refresh (:term:`RAP`), High Resolution Rapid Refresh (HRRR), Short Range Ensemble Forecast (SREF), and Hurricane WRF (HWRF) applications. It is also used -in the Unified Forecast System (UFS), including the Rapid Refresh Forecast System (RRFS), Hurricane -Analysis and Forecast System (HAFS), and the Medium-Range Weather (MRW) and Short-Range Weather (SRW) +in the Unified Forecast System (:term:`UFS`), including the Rapid Refresh Forecast System (:term:`RRFS`), Hurricane +Analysis and Forecast System (HAFS), and the Medium-Range Weather (:term:`MRW`) and Short-Range Weather (:term:`SRW`) Applications. -This software package can be run inline---built as a library to be used by the model---and offline--- -built stand-alone and run separate from the model. This documentation largely details the offline +This software package can be run inline---built as a library to be used by the model---and offline---built +stand-alone and run separately from the model. This documentation largely details the offline procedures. ===================== diff --git a/docs/Running.rst b/docs/Running.rst index cc4153fae..c8c9b54a3 100644 --- a/docs/Running.rst +++ b/docs/Running.rst @@ -7,7 +7,8 @@ Running UPP Stand-Alone *********************** -A script for running the UPP package is included in the **/scripts** directory: +A script for running the UPP package is included in the :bolditalic:`/scripts` directory: + - :bolditalic:`run_upp` :underline:`Before running the script, perform the following instructions:` @@ -46,21 +47,23 @@ A script for running the UPP package is included in the **/scripts** directory: 6. Copy the :bolditalic:`/scripts/run_upp` script to the **/postprd** directory. -7. Edit the run script as outlined in the "Run Script Overview" section. Once these directories are set +7. Edit the run script as outlined in the :ref:`"Run Script Overview" ` section below. Once these directories are set up and the edits outlined below are complete, the script can be run interactively from the **/postprd** directory by simply typing the script name on the command line. +.. _run-script-overview: + =================== Run Script Overview =================== .. note:: It is recommended that the user refer to the :bolditalic:`run_upp` script while reading this - overview. All user modified variables are contained at the top of the :bolditalic:`run_upp` script + overview. All user-modified variables are contained at the top of the :bolditalic:`run_upp` script in the user-edit section, along with a brief description. Descriptions below follow the :bolditalic:`run_upp` script. -1. Set up basic path variables +1. Set up basic path variables: | **TOP_DIR**: Top level directory for building and running UPP | **DOMAINPATH**: Working directory for this run @@ -73,19 +76,19 @@ Run Script Overview .. note:: For FV3, the scripts are configured such that UPP expects the flat text file to be in **/parm**, and the postprocessor working directory to be called **/postprd**, all under **DOMAINPATH**. - This setup is for user convenience to have a script ready to run, paths may be modified but be + This setup is for user convenience to have a script ready to run; paths may be modified, but be sure to check the run script to make sure settings are correct. -2. Specify dynamic core being run +2. Specify dynamical core being run: - | **model**: What model is used ("GFS" or "LAM" - Limited Area Model) + | **model**: What model is used ("GFS" or "LAM" - Limited Area Model)? -3. Specify the format for the input model files and output UPP files +3. Specify the format for the input model files and output UPP files: | **inFormat**: Format of the model data ("netcdfpara") | **outFormat**: Format of output from UPP ("grib2") -4. Specify the forecast cycles to be post-processed +4. Specify the forecast cycles to be post-processed: | **startdate**: Forecast start date (YYYYMMDDHH) | **fhr**: First forecast hour to be post-processed @@ -93,7 +96,7 @@ Run Script Overview | **incrementhr**: Increment (in hours) between forecast files | *Do not set to 0 or the script will loop continuously* -5. Set/uncomment the run command for your system. (i.e. mpirun, etc). +5. Set/uncomment the run command for your system (e.g., mpirun). | **RUN_COMMAND**: System run commands diff --git a/docs/index.rst b/docs/index.rst index c9146cc86..cfb655ab0 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -12,4 +12,5 @@ Welcome to the UPP User's Guide Running Regridding AddNewVariable + Glossary Acknowledgments From 058885919be8b253228b981652d5e65c950586f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 30 May 2023 10:07:29 -0400 Subject: [PATCH 07/44] edit comment --- scripts/run_upp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_upp b/scripts/run_upp index 3748f0e32..0bfb15853 100755 --- a/scripts/run_upp +++ b/scripts/run_upp @@ -104,7 +104,7 @@ export RUN_COMMAND="mpirun -np 1 ${POSTEXEC}/upp.x " export numx=2 # Shouldn't need to edit these. -# tmmark is an variable used as the file extention of the output +# tmmark is a variable used as the file extension of the output # filename .GrbF is used if this variable is not set # COMSP is a variable used as the initial string of the output filename export tmmark=tm00 From a4ddb6000fc0b6675d6cb7d7292ede2eccdc90a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 30 May 2023 15:41:40 -0400 Subject: [PATCH 08/44] minor edits/formatting --- docs/AddNewVariable.rst | 136 ++++++++++++++++++++-------------------- docs/Regridding.rst | 34 +++++----- docs/Running.rst | 21 ++++--- 3 files changed, 99 insertions(+), 92 deletions(-) diff --git a/docs/AddNewVariable.rst b/docs/AddNewVariable.rst index 73ba79931..08214161b 100644 --- a/docs/AddNewVariable.rst +++ b/docs/AddNewVariable.rst @@ -2,122 +2,124 @@ Adding a New Variable ********************* -This document provides general procedures and an example of how to add a new variable to the UPP code. -Please keep in mind it may not be an exhaustive step-by-step depending on your particular situation. +This chapter provides general procedures and an example of how to add a new variable to the UPP code. +Please keep in mind that it may not be an exhaustive step-by-step process depending on your particular situation. While we can provide general assistance for adding a new variable, users should be aware that this -requires good knowledge of Fortran and thorough understanding of the code. +requires good knowledge of Fortran and a thorough understanding of the code. -NOAA UPP developers who wish to add new variables to the UPP, please follow the following procedures: +NOAA UPP developers who wish to add new variables to the UPP should follow the following procedures: 1. Read and follow procedures on the `UPP wiki page `_ - on how to contribute your code changes to the UPP main development. Doing so will ensure your changes are merged - to the UPP development quickly. + on how to contribute your code changes to the UPP main development branch. Doing so will ensure your changes are merged + to the UPP development branch quickly. 2. Submit your pull request with small incremental changes. Advantages of doing this include avoiding - conflicts with other UPP developers in terms of using the UPP internal Index and variables. + conflicts with other UPP developers in terms of using the UPP internal index and variables. 3. Please do not modify existing algorithms without coordinating with UPP code managers (Wen Meng and - Hui-Ya Chuang). UPP supports many NOAA operational models and we can not change operational products - without coordination and advanced notices. + Hui-Ya Chuang). UPP supports many NOAA operational models, and we can not change operational products + without coordination and advanced notice. -We encourage non NOAA UPP developers to contact EPIC via +We encourage non-NOAA UPP developers to contact EPIC via `GitHub Discussions `_ to make them aware of modifications you are making. In some cases, if they determine the changes you are making may be relevant for operational and/or community purposes, they will be interested in incorporating your changes into the code base for support and future release. We would then work with you to make this possible. -The following outlines a brief description of the steps to be taken and are described in more detail +The following outlines a brief description of the steps to be taken; they are described in more detail with examples in the sections below. -1. Check whether your new variable has been defined in the file parm/post_avblflds.xml in your UPP working - version. This file defines all available GRIB2 fields in UPP. +.. COMMENT: Edit^^ Is it a brief description or details?! - A. If no (not available in post_avblflds.xml) +#. Check whether your new variable has been defined in the file ``parm/post_avblflds.xml`` in your UPP working + directory. This file defines all available GRIB2 fields in the UPP. - i. Check whether your new variable has been defined in the - `NCEP Grib2 Table `_ - (Product Discipline and Parameter Category). + A. If NO (not available in ``post_avblflds.xml``), check whether your new variable has been defined in the + `NCEP Grib2 Table `__ + (Product Discipline and Parameter Category). - 1. If no (not available in the NCEP Grib2 Table) + \i. If NO (not available in the NCEP Grib2 Table): - a. NOAA users can email Andrew.Benjamin@noaa.gov with the following information for your new - variable: variable definition, unit, and what Grib2 discipline and category you think this - variable should belong to. Andrew will define your new variable in the `NCEP Grib2 Table - `_ and - inform you of the Grib2 discipline and category numbers you should use. + a. NOAA users can email Andrew.Benjamin@noaa.gov with the following information for your new + variable: variable definition, unit, and what Grib2 discipline and category you think this + variable should belong to. Andrew will define your new variable in the `NCEP Grib2 Table + `_ and + inform you of the Grib2 discipline and category numbers you should use. - b. Contact with Andrew to update parm/params_grib2_tbl_new.text with your new variable and - generate a params_grib2_tbl_new which lists in alphabetical order to improve post - processing efficiency. + b. Contact Andrew to update ``parm/params_grib2_tbl_new.text`` with your new variable and + generate a ``params_grib2_tbl_new`` that lists variables in alphabetical order to improve post-processing + efficiency. - c. Save new params_grib2_tbl_new.text and params_grib2_tbl_new under parm/ of your UPP - working version. + c. Save new ``params_grib2_tbl_new.text`` and ``params_grib2_tbl_new`` under ``parm/`` of your UPP + working directory. - d. Other users please coordinate through EPIC for the above three steps. + d. Non-NOAA users should coordinate through EPIC for the above three steps. Users may post a + `GitHub Discussions `__ + topic and tag @FernandoAndrade-NOAA and @gspetro-NOAA for directions in steps a-c. - e. Add a new entry in post_avblflds.xml with your new variable, then follow step B), then step 2) - and beyond. You should assign a new UPP ID for your new variable. + e. Add a new entry in ``post_avblflds.xml`` with your new variable; then follow step B), then step 2) + and beyond. You should assign a new UPP ID for your new variable. - 2. If yes (available in the NCEP Grib2 Table) + \ii. If YES (variable is available in the NCEP Grib2 Table): - a. Add a new entry in post_avblflds.xml with your new variable, then follow step B), then step 2) - and beyond. You should assign a new UPP ID for your new variable. + a. Add a new entry in ``post_avblflds.xml`` with your new variable, then follow step B), then step 2) + and beyond. You should assign a new UPP ID for your new variable. - B. If yes (available in post_avblflds.xml), then your new variable is already available in UPP. Follow the - following two steps i) and ii), make a test UPP run, and then look for your new variable in your output. - You can skip the remaining steps about modifying the source codes. + B. If YES (variable is in ``post_avblflds.xml``), then your new variable is already available in the UPP. + Follow steps i) and ii), make a test UPP run, and then look for your new variable in your output. + You can skip the remaining steps about modifying the source code. - i. Add a new entry in your application’s control xml file (e.g. fv3lam.xml for FV3LAM application, - postcntrl_gfs.xml for FV3GFS application). This file lets users control which variables to output - from UPP for Grib2. + \i. Add a new entry in your application’s control xml file (e.g., ``fv3lam.xml`` for the FV3LAM application, ``postcntrl_gfs.xml`` for the FV3GFS application). This file lets users control which variables to output from UPP for Grib2. - ii. Generate your_user_defined_flat file (e.g. postxconfig-NT-fv3lam.txt for FV3LAM application) by - executing: + \ii. Generate ``your_user_defined_flat`` file (e.g., ``postxconfig-NT-fv3lam.txt`` for FV3LAM application) by executing: + + .. code-block:: console /usr/bin/perl PostXMLPreprocessor.pl your_user_defined_xml post_avblflds.xml your_user_defined_flat - This flat file (instead of the xml file) is read in by UPP as it was much faster to read a text file - than an xml file. + This flat file (instead of the xml file) is read in by the UPP because it is much faster to read a text file + than an xml file. -2. Allocate and initialize the field: ALLOCATE.f +#. Allocate and initialize the field in ``sorc/ncep_post.fd/ALLOCATE_ALL.f``. - This file is the instantiation or allocation of the variable. Note that the variables are defined - based on the parallel processing capability of UPP - use an example from the file. + This file contains the instantiation or allocation of each variable. Note that the variables are defined + based on the parallel processing capability of UPP. Use an example from the file. -3. Deallocate the field: DEALLOCATE.f +#. Deallocate the field in ``sorc/ncep_post.fd/DEALLOCATE.f``. - All good programmers give back their resources when they are done. Please update this routine to - return your resource to the system. + All good programmers give back their resources when they are done. Please update this routine to + return your resource to the system. -4. Declare the new variable: VRBLS2D_mod.f, VRBLS3D_mod.f, or VRBLS4D_mod.f +#. Declare the new variable in ``VRBLS2D_mod.f``, ``VRBLS3D_mod.f``, or ``VRBLS4D_mod.f``. - The variable is declared in one of these modules defining files depending on its dimension. + The variable is declared in one of these module-defining files depending on its dimension. -5. Read model output if necessary: INITPOST_NETCDF.f +#. Read model output if necessary using ``INITPOST_NETCDF.f``. - Check first to see if all variables needed to derive your new variable are already available in UPP. If not, - you will need to use one of these files for reading the model output files. The appropriate one will need to - be chosen based on the model and model output format. + Check first to see if all variables needed to derive your new variable are already available in the UPP. If not, + you will need to use this file (or another appropriate ``INITPOST_*.f`` file) for reading the model output files. + The appropriate one should be chosen based on the model and the model output format. -6. Add to appropriate routine for filling the new variable: e.g. SURFCE.f, MDLFLD.f, MDL2P.f, etc +#. Add to appropriate routine(s) for filling the new variable (e.g., ``SURFCE.f``, ``MDLFLD.f``, ``MDL2P.f``). - This is the place where you will derive your new variable and then fill the Grib2 array with the data to be - written out later on. + This is the place where you will derive your new variable and then fill the Grib2 array with the data to be + written out later on. -7. Build or rebuild the code for changes to take effect before running your UPP run script. +#. Build or rebuild the code for changes to take effect before running your UPP run script. +.. COMMENT: I feel like steps 5-7 could be clearer... **Example Procedure: Steps for adding a new variable ‘TG3’** +- TG3 is the averaged climatology of surface temperature, which the land surface models (LSMs) use to specify + bottom soil T, where the depth of the bottom is LSM dependent. For this example, a depth of 500cm is used. - This example illustrates adding a new variable from GFS output that will be read into UPP - and directly output into the Grib2 output files (i.e. in this case no additional computations/calculations + and directly output into the Grib2 output files (i.e., no additional computations/calculations are needed for the field). - Additions to each of the routines are highlighted. -- Locations of routines are in UPP/sorc/ncep_post.fd unless specified otherwise. -- The new variable, TG3, added in this example is found in the gfs.t00z.sfcf006.nc; however, both the - gfs.t00z.sfcf006.nc and gfs.t00z.atmf006.nc output files are required to run UPP for GFS. -- TG3 is the averaged climatology of surface temperature, which the LSMs use to specify bottom soil T, - where the depth of the bottom is LSM dependent. For this example, a depth of 500cm is used. +- Locations of routines are in ``UPP/sorc/ncep_post.fd`` unless specified otherwise. +- The new variable, TG3, added in this example is found in the ``gfs.t00z.sfcf006.nc`` file; however, both the + ``gfs.t00z.sfcf006.nc`` and ``gfs.t00z.atmf006.nc`` output files are required to run UPP for GFS. New variable to add:: @@ -133,7 +135,7 @@ with examples in the sections below. A. This variable is not available in parm/post_avblflds.xml. - i. Check whether your new variable has been defined in the NCEP Grib2 Table. + \i. Check whether your new variable has been defined in the NCEP Grib2 Table. 1) This variable is not defined in the NCEP Grib2 Table. diff --git a/docs/Regridding.rst b/docs/Regridding.rst index 0d528aab5..44a0c1328 100644 --- a/docs/Regridding.rst +++ b/docs/Regridding.rst @@ -2,15 +2,13 @@ Regridding ********** -Users that wish to interpolate their unipost output to a different grid may do so with the *wgrib2* +Users who wish to interpolate their UPP output to a different grid may do so with the *wgrib2* utility. The general format for re-gridding to various common projections are outlined in the following examples. *Wgrib2* is a versatile program that has the ability to convert grib2 files from one grid to another -for various user-defined grids as well as pre-defined NCEP grids. Complete documentation with examples -of re-gridding for all available grid definitions can be found at: - -http://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/new_grid.html +for various user-defined grids as well as pre-defined :term:`NCEP` grids. Complete documentation with examples +of re-gridding for all available grid definitions can be found at: http://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/new_grid.html .. _Examples-of-wgrib2: @@ -20,7 +18,7 @@ Examples of wgrib2 **Example 1: Latitude-Longitude Grid** -*-new_grid latlon lon0:nlon:dlon lat0:nlat:dlat outfile* +``-new_grid latlon lon0:nlon:dlon lat0:nlat:dlat outfile`` +----------+------------------------------------------+ | Variable | Description | @@ -40,12 +38,12 @@ Examples of wgrib2 **Example 2: Lambert Conic Conformal Grid** -*-new_grid lambert:lov:latin1:latin2 lon0:nx:dx lat0:ny:dy outfile* +``-new_grid lambert:lov:latin1:latin2 lon0:nx:dx lat0:ny:dy outfile`` +----------+-----------------------------------------------------------------+ | Variable | Description | +==========+=================================================================+ -| lov | Longitude where y axis is parallel to meridian in degrees | +| lov | Longitude where y-axis is parallel to meridian in degrees | +----------+-----------------------------------------------------------------+ | latin1 | First latitude from pole which cuts the secant cone in degrees | +----------+-----------------------------------------------------------------+ @@ -66,14 +64,16 @@ Examples of wgrib2 **Example 3: Polar Stereographic Grid** -*-new_grid nps(or SPS):lov:lad lon0:nx:dx lat0:ny:dy outfile* +``-new_grid nps:lov:lad lon0:nx:dx lat0:ny:dy outfile`` +OR +``-new_grid sps:lov:lad lon0:nx:dx lat0:ny:dy outfile`` +----------+-----------------------------------------------------------+ | Variable | Description | +==========+===========================================================+ | nps/sps | North/south polar stereographic | +----------+-----------------------------------------------------------+ -| lov | Longitude where y axis is parallel to meridian in degrees | +| lov | Longitude where y-axis is parallel to meridian in degrees | +----------+-----------------------------------------------------------+ | lad | Latitude where dx and dy are specified | +----------+-----------------------------------------------------------+ @@ -92,7 +92,7 @@ Examples of wgrib2 **Winds** -*-new_grid_winds grid(or earth)* +``-new_grid_winds grid`` OR ``-new_grid_winds earth`` +----------+----------------------------------------------+ | Variable | Description | @@ -104,9 +104,9 @@ Examples of wgrib2 **Interpolation** -The default interpolation type is bilinear, but it can be set to another type (e.g. neighbor, budget). +The default interpolation type is bilinear, but it can be set to another type (e.g., neighbor, budget). -*-new_grid_interpolation type* +``-new_grid_interpolation type`` **Operational Example** @@ -120,8 +120,10 @@ the variable. -if ":(CRAIN|CICEP|CFRZR|CSNOW|ICSEV):" -new_grid_interpolation neighbor -fi | -set_bitmap 1 -set_grib_max_bits 16 | -if ":(APCP|ACPCP|PRATE|CPRAT):" -set_grib_max_bits 25 -fi | - -if ":(APCP|ACPCP|PRATE|CPRAT|DZDT):" -new_grid_interpolation budget -if | + -if ":(APCP|ACPCP|PRATE|CPRAT|DZDT):" -new_grid_interpolation budget -fi | -new_grid "latlon 0:1440:0.25 90:721:-0.25" outfile -**Note:** *wgrib2 is not distributed within the UFS weather application. Users may download and install -from http://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/.* +.. note:: + *wgrib2* is not distributed as part of the :term:`UFS`, but it can be installed via + :term:`HPC-Stack` or :term:`spack-stack` along with other UFS prerequisite software. + Users may also download and install it directly from http://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/. diff --git a/docs/Running.rst b/docs/Running.rst index c8c9b54a3..a0fa902b9 100644 --- a/docs/Running.rst +++ b/docs/Running.rst @@ -69,7 +69,7 @@ Run Script Overview | **DOMAINPATH**: Working directory for this run | **UPP_HOME**: Location of the **UPP** directory | **POSTEXEC**: Location of the **UPP** executable - | **modelDataPath**: Location of the model output data files to be processed + | **modelDataPath**: Location of the model output data files to be processed by the UPP | **txtCntrlFile**: Name and location of the flat text file that lists desired fields for output. @@ -81,7 +81,7 @@ Run Script Overview 2. Specify dynamical core being run: - | **model**: What model is used ("GFS" or "LAM" - Limited Area Model)? + | **model**: Which model is used? ("GFS" or "LAM" - Limited Area Model) 3. Specify the format for the input model files and output UPP files: @@ -94,7 +94,10 @@ Run Script Overview | **fhr**: First forecast hour to be post-processed | **lastfhr**: Last forecast hour to be post-processed | **incrementhr**: Increment (in hours) between forecast files - | *Do not set to 0 or the script will loop continuously* + + .. attention:: + + Do not set :bolditalic:`incrementhr` to 0 or the script will loop continuously! 5. Set/uncomment the run command for your system (e.g., mpirun). @@ -110,7 +113,7 @@ Run Script Overview | >> IBM: ``mpirun.lsf upp.x < itag > outpost`` | >> SGI MPT: ``mpiexec_mpt upp.x < itag > outpost`` -6. Set the value for numx. +6. Set the value for :bolditalic:`numx`. | **numx**: The number of subdomains in the x-direction used for decomposition. @@ -118,11 +121,11 @@ Run Script Overview | - For 2D decomposition, set numx>1 7. Set naming convention for prefix and extension of output file name - - **comsp** is the initial string of the output file name. By default it is not set and the prefix - of the output file will be the string set in the XML file DATSET parameter. If set it will - concatenate the setting to the front of the string specified in the XML file DATSET parameter. - - **tmmark** is used for the file extension (in :bolditalic:`run_upp`, *tmmark=tm00*; if not set, - it is set to .GrbF) + - **comsp** is the initial string of the output file name. By default, it is not set, and the prefix + of the output file will be the string set in the :bolditalic:`postcntrl.xml` file :bolditalic:`DATSET` parameter. If set, it will + concatenate the setting to the front of the string specified in the XML file :bolditalic:`DATSET` parameter. + - **tmmark** is used for the file extension (in :bolditalic:`run_upp`, ``tmmark=tm00``; if not set, + it is set to ``.GrbF``) Upon a successful run, UPP will generate output files for each forecast hour in the **/postprd** directory. From 14cecae848ec98595f649eecdb1bf34c2a4d4235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 30 May 2023 16:11:20 -0400 Subject: [PATCH 09/44] minor edits to New Var ch --- docs/AddNewVariable.rst | 70 ++++++++++++++++++++--------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/docs/AddNewVariable.rst b/docs/AddNewVariable.rst index 08214161b..ce994da3f 100644 --- a/docs/AddNewVariable.rst +++ b/docs/AddNewVariable.rst @@ -130,24 +130,24 @@ with examples in the sections below. tg3:cell_methods = "time: point" ; tg3:output_file = "sfc" ; -1. Check whether your new variable has been defined in the file parm/post_avblflds.xml in your UPP working +1. Check whether your new variable has been defined in the file ``parm/post_avblflds.xml`` in your UPP working version. - A. This variable is not available in parm/post_avblflds.xml. + A. This variable is not available in ``parm/post_avblflds.xml``. \i. Check whether your new variable has been defined in the NCEP Grib2 Table. 1) This variable is not defined in the NCEP Grib2 Table. a)-d) For the purpose of this example alone, steps a) - d) are not executed as instructed. - Instead, manual instructions are provided here for adding to the params_grib2_table_new in order + Instead, manual instructions are provided here for adding to the ``params_grib2_table_new`` in order to create a working example. - For this example, the variable will be added to parm/params_grib2_tbl_new manually. You would only - do this if you had no plans to contribute your addition to UPP develop, otherwise, follow the + For this example, the variable will be added to ``parm/params_grib2_tbl_new`` manually. You would only + do this if you had no plans to contribute your addition to the UPP ``develop`` branch; otherwise, follow the instructions as a NOAA or Other user in steps a) - d). - For all current UPP output fields, the params_grib2_table_new lists, in order, the: + For all current UPP output fields, the ``params_grib2_table_new`` lists, in order, the following attributes: - Discipline (https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table0-0.shtml) - Category (https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-1.shtml) - Parameter Number (https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-2.shtml) @@ -160,28 +160,28 @@ with examples in the sections below. - TG3 is a vegetation/biomass product (category=0) - Pick an unused parameter number from the table defined by discipline=2 and category=0 (Table 4.2-0-0: https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-2-2-0.shtml). - The parameter number should not be in use in table 4.2 or the current params_grib2_tbl_new. - In this case, the unused parameter number 231 was chosen. + The parameter number should not be in use in Table 4.2 or the current ``params_grib2_tbl_new``. + In this case, the unused parameter number 251 was chosen. - Add using the NCEP local table (table=1) - - Choose an abbreviated parameter name to describe your field (e.g. TG3) - - Add alphabetically to the table as: + - Choose an abbreviated parameter name to describe your field (e.g., TG3) + - Add alphabetically (by variable name) to the table as: :: - 2 0 231 1 TG3 + 2 0 251 1 TG3 - e) **Add the new variable to the UPP/parm/post_avblflds.xml, which lists all fields available + e) **Add the new variable to** ``UPP/parm/post_avblflds.xml``, **which lists all fields available for output in GRIB2 format.** This file is generally not modified unless adding a new field or - modifying an existing one. + modifying an existing one. Users should indicate the following variable attributes in the XML file: - - Post_avblfldidx: the unique array index number used to store this variable. The number chosen here - is just an example and it is important to pick one that is not yet in use. - - Shortname: name describing the variable and level type - - Pname: the abbreviation for your variable (should match what is used in params_grib2_tbl_new) - - Table info: table used if not standard WMO - - Fixed_sfc1_type: level type - - Level: Generally only used here if it's a fixed level specific to the variable (e.g. T2m, TSOIL5m) - - Scale: precision of data written out to Grib2 file + - ``post_avblfldidx``: the unique array index number used to store this variable. The number chosen here + is just an example, and it is important to pick one that is not yet in use. + - ``shortname``: name describing the variable and level type + - ``pname``: the abbreviation for your variable (should match what is used in ``params_grib2_tbl_new``) + - ``table info``: table used if not standard WMO + - ``fixed_sfc1_type``: level type + - ``level``: generally only used here if it is a fixed level specific to the variable (e.g., T2m, TSOIL5m) + - ``scale``: precision of data written out to Grib2 file User procedure - Add as: @@ -189,7 +189,7 @@ with examples in the sections below. :: - 1003 + 1063 DEEP_TSOIL_ON_DEPTH_BEL_LAND_SFC TG3 depth_bel_land_sfc @@ -198,11 +198,11 @@ with examples in the sections below. 3.0 - B. Add the variable to the user defined control file. + B. Add the variable to the user-defined control file. - i. Add a new entry in your application’s control xml file (e.g. fv3lam.xml for FV3LAM application, - postcntrl_gfs.xml for FV3GFS application). This file lets users control which variables to output - from UPP for Grib2. + i. Add a new entry in your application’s control XML file (e.g., ``fv3lam.xml`` for the FV3LAM application, + ``postcntrl_gfs.xml`` for the ``FV3GFS`` application). This file lets users control which variables to output + from the UPP for Grib2. User procedure - Add as: @@ -214,22 +214,22 @@ with examples in the sections below. 4.0 - ii. Generate your_user_defined_flat file (e.g. postxconfig-NT-fv3lam.txt for FV3LAM application) by + ii. Generate your_user_defined_flat file (e.g., ``postxconfig-NT-fv3lam.txt`` for the FV3LAM application) by executing: :: >> /usr/bin/perl PostXMLPreprocessor.pl your_user_defined_xml post_avblflds.xml your_user_defined_flat - This flat file (instead of the xml file) is read in by UPP as it was much faster to read a text file - than an xml file. + This flat file (instead of the XML file) is read in by the UPP as it was much faster to read a text file + than an XML file. -2. Allocate and initialize the new variable in ALLOCATE_ALL.f +2. Allocate and initialize the new variable in ``ALLOCATE_ALL.f`` This file is the instantiation or allocation of the variable. Note that the variables are defined - based on the parallel processing capability of UPP - use an example from the file. + based on the parallel processing capability of UPP. Use an example from the file. User Procedure - - Allocate in VRBLS2D GFS section as: + - Allocate in ``VRBLS2D`` GFS section as: :: @@ -241,12 +241,12 @@ with examples in the sections below. tg3(i,j)=spval -3. De-allocate the variable to give the resources back in DEALLOCATE.f +3. De-allocate the variable to give the resources back in ``DEALLOCATE.f``. All good programmers give back their resources when they are done. Please update this routine to return your resources to the system. User procedure - - Add in VRBLS2D GFS section as: + - Add in ``VRBLS2D`` GFS section as: :: @@ -346,7 +346,7 @@ with examples in the sections below. wgrib2 -V GFSPRS.006 - 716:37731711:vt=2019061506:500 m underground:6 hour fcst:var discipline=2 center=7 local_table=1 parmcat=0 parm=231: + 716:37731711:vt=2019061506:500 m underground:6 hour fcst:var discipline=2 center=7 local_table=1 parmcat=0 parm=251: ndata=73728:undef=0:mean=278.383:min=215.47:max=302.4 grid_template=40:winds(N/S): Gaussian grid: (384 x 192) units 1e-06 input WE:NS output WE:SN From c680762f05a9c1288cdf2cf2afa5dd4a59728da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 30 May 2023 20:35:06 -0400 Subject: [PATCH 10/44] minor edits --- docs/Acknowledgments.rst | 10 ++-- docs/AddNewVariable.rst | 102 +++++++++++++++++++++------------------ 2 files changed, 60 insertions(+), 52 deletions(-) diff --git a/docs/Acknowledgments.rst b/docs/Acknowledgments.rst index f5aa9c98d..5fa482965 100644 --- a/docs/Acknowledgments.rst +++ b/docs/Acknowledgments.rst @@ -6,16 +6,16 @@ The adaptation of the original WRF Post Processor package and Users Guide (by Mi NSSL/CIMMS and Hui-Ya Chuang of NCEP/EMC) was done by Lígia Bernardet (NOAA/ESRL/DTC) in collaboration with Dusan Jovic (NCEP/EMC), Robert Rozumalski (COMET), Wesley Ebisuzaki (NWS/HQTR), and Louisa Nance (NCAR/RAL/DTC). Upgrades to WRF Post Processor versions 2.2 and higher were performed by Hui-Ya Chuang, -Dusan Jovic and Mathew Pyle (NCEP/EMC). Transitioning of the documentation from the WRF Post Processor -to the Unified Post Processor was performed by Nicole McKee (NCEP/EMC), Hui-ya Chuang (NCEP/EMC), and +Dusan Jovic, and Mathew Pyle (NCEP/EMC). Transitioning of the documentation from the WRF Post Processor +to the Unified Post Processor was performed by Nicole McKee (NCEP/EMC), Hui-Ya Chuang (NCEP/EMC), and Jamie Wolff (NCAR/RAL/DTC). Implementation of the Community Unified Post Processor was performed by Tricia Slovacek, Kate Fossell, and Tracy Hertneky (NCAR/RAL/DTC). -Acknowledgement +**Acknowledging the UPP Team:** If significant help was provided via the UPP helpdesk for work resulting in a publication, please -acknowledge the Developmental Testbed Center UPP Team. +acknowledge the Earth Prediction Innovation Center UPP Team. For referencing this document please use: -UPP Users Guide V10.1.0, 24 pp. +UPP Users Guide V11.0.0, 24 pp. diff --git a/docs/AddNewVariable.rst b/docs/AddNewVariable.rst index ce994da3f..a0eed4da1 100644 --- a/docs/AddNewVariable.rst +++ b/docs/AddNewVariable.rst @@ -26,10 +26,14 @@ are making. In some cases, if they determine the changes you are making may be r and/or community purposes, they will be interested in incorporating your changes into the code base for support and future release. We would then work with you to make this possible. -The following outlines a brief description of the steps to be taken; they are described in more detail -with examples in the sections below. +.. _add-var-process: -.. COMMENT: Edit^^ Is it a brief description or details?! +========================================= +Process Overview: Adding a New Variable +========================================= + +The following steps outline the process for adding a new variable. This description is followed by a detailed +example in :numref:`Section %s ` below. #. Check whether your new variable has been defined in the file ``parm/post_avblflds.xml`` in your UPP working directory. This file defines all available GRIB2 fields in the UPP. @@ -107,12 +111,16 @@ with examples in the sections below. #. Build or rebuild the code for changes to take effect before running your UPP run script. -.. COMMENT: I feel like steps 5-7 could be clearer... +.. _add-var-example: + +=========================================================== +Example Procedure: Steps for adding a new variable ‘TG3’ +=========================================================== -**Example Procedure: Steps for adding a new variable ‘TG3’** +This example adds TG3 to the UPP. TG3 is the averaged climatology of surface temperature, +which the land surface models (LSMs) use to specify bottom soil temperature, where the +depth of the bottom is LSM dependent. For this example, a depth of 500cm is used. -- TG3 is the averaged climatology of surface temperature, which the land surface models (LSMs) use to specify - bottom soil T, where the depth of the bottom is LSM dependent. For this example, a depth of 500cm is used. - This example illustrates adding a new variable from GFS output that will be read into UPP and directly output into the Grib2 output files (i.e., no additional computations/calculations are needed for the field). @@ -200,7 +208,7 @@ with examples in the sections below. B. Add the variable to the user-defined control file. - i. Add a new entry in your application’s control XML file (e.g., ``fv3lam.xml`` for the FV3LAM application, + i. Add a new entry in your application's control XML file (e.g., ``fv3lam.xml`` for the FV3LAM application, ``postcntrl_gfs.xml`` for the ``FV3GFS`` application). This file lets users control which variables to output from the UPP for Grib2. @@ -214,67 +222,64 @@ with examples in the sections below. 4.0 - ii. Generate your_user_defined_flat file (e.g., ``postxconfig-NT-fv3lam.txt`` for the FV3LAM application) by + ii. Generate ``your_user_defined_flat`` file (e.g., ``postxconfig-NT-fv3lam.txt`` for the FV3LAM application) by executing: :: >> /usr/bin/perl PostXMLPreprocessor.pl your_user_defined_xml post_avblflds.xml your_user_defined_flat - This flat file (instead of the XML file) is read in by the UPP as it was much faster to read a text file - than an XML file. + This flat file (instead of the XML file) is read in by the UPP. -2. Allocate and initialize the new variable in ``ALLOCATE_ALL.f`` - This file is the instantiation or allocation of the variable. Note that the variables are defined - based on the parallel processing capability of UPP. Use an example from the file. +2. Allocate and initialize the new variable in ``ALLOCATE_ALL.f`` using an example from the file. + Note that the variables are defined based on the parallel processing capability of the UPP. User Procedure - - Allocate in ``VRBLS2D`` GFS section as: + - Allocate in the *VRBLS2D* GFS section of ``ALLOCATE_ALL.f`` as: :: allocate(tg3(ista_2l:iend_2u,jsta_2l:jend_2u)) - - Initialize in the initialization section that comes after the allocations section you added to. + - Initialize TG3 in the initialization section that comes after the allocation section you added to. :: tg3(i,j)=spval 3. De-allocate the variable to give the resources back in ``DEALLOCATE.f``. - All good programmers give back their resources when they are done. Please update this - routine to return your resources to the system. + Updating this routine returns your resources to the system. User procedure - - Add in ``VRBLS2D`` GFS section as: + - Add in *VRBLS2D* GFS section of ``DEALLOCATE.f`` as: :: deallocate(tg3) -4. Declare the new variable in the appropriate file depending on its dimensions; - VRBLS2D_mod.f, VRBLS3D_mod.f or VRBLS4D_mod.f +4. Declare the new variable in the appropriate file (e.g., ``VRBLS2D_mod.f``, + ``VRBLS3D_mod.f``, or ``VRBLS4D_mod.f``) depending on its dimensions. User procedure - - tg3 is a 2-dimensional field, so declare it in VRBLS2D_mod.f - - Add to the GFS section for adding new fields as: + - TG3 is a 2-dimensional field, so declare it in ``VRBLS2D_mod.f``. + - Add to the GFS section as: :: tg3(:,:) -5. Read the field from the GFS model output file by adding the new variable into INITPOST_NETCDF.f. - This file is used for reading the GFS model FV3 output files in parallel netcdf format. +5. Read the field from the GFS model output file by adding the new variable into ``INITPOST_NETCDF.f``. + This file is used for reading the GFS model FV3 output files in parallel netCDF format. User procedure - - Add to top section of the routine in ‘use vrbls2d’ to initiate the new variable as: + - Add to top section of the routine in the ‘use vrbls2d’ section to initiate the new variable as: :: tg3 - - Read in the new variable in the section for reading the 2D netcdf file using another 2D variable - as an example, such as 'hpbl'. Add as: + - Read in the new variable in the section for reading the 2D netCDF file using another 2D variable + as an example, such as ``hpbl``. Add as: :: @@ -283,19 +288,21 @@ with examples in the sections below. call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,VarName,tg3) -6. Determine the appropriate routine to add the new variable to (e.g. SURFCE.f, MDLFLD.f, - MDL2P.f, etc). This is the place that you will fill the Grib2 array with the data to be written out later on. - The appropriate routine will depend on what your field is. For example, if you have a new diagnostic called foo, - and you want it interpolated to pressure levels, you would need to add it to MDL2P.f. If foo was only a - surface variable, you would add it to SURFCE.f. If you wanted foo on native model levels, you - would add it to MDLFLD.f. If you’re not sure which routine to add the new variable to, choose a - similar variable as a template. +6. Determine the appropriate routine to add the new variable to (e.g., ``SURFCE.f``, ``MDLFLD.f``, + ``MDL2P.f``). The appropriate routine will depend on what your field is. + For example, if you have a new diagnostic called *foo*, + and you want it interpolated to pressure levels, you would need to add it to ``MDL2P.f``. If *foo* were only a + surface variable, you would add it to ``SURFCE.f``. If you wanted *foo* on native model levels, you + would add it to ``MDLFLD.f``. If you are not sure which routine to add the new variable to, choose a + similar variable as a template, and add it in the same places. - Note: This is also where you would add any calculations needed for your new variable, should it - be required. + .. note:: + + This is also where you would add any calculations needed for your new variable, should they + be required. User procedure - - Treat tg3 like a surface field (SURFCE.f), similar to the other soil fields. + - Treat TG3 like a surface field, similar to the other soil fields, and add it to ``SURFCE.f``. - Use another 2D variable, such as 'SNOW WATER EQUIVALENT' as a template. This variable is also being read through and output, similar to what we want. - Add to top section in ‘use vrbls2d, only’ to initiate the new variable as: @@ -309,11 +316,11 @@ with examples in the sections below. :: ! DEEP SOIL TEMPERATURE - IF ( IGET(1003).GT.0 ) THEN + IF ( IGET(1063).GT.0 ) THEN ID(1:25) = 0 If(grib=='grib2') then cfld=cfld+1 - fld_info(cfld)%ifld=IAVBLFLD(IGET(1003)) + fld_info(cfld)%ifld=IAVBLFLD(IGET(1063)) !$omp parallel do private(i,j,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -322,25 +329,22 @@ with examples in the sections below. datapd(i,j,cfld) = TG3(ii,jj) enddo enddo - endiF + endif ENDIF 7. Build or rebuild the code for changes to take effect before running your UPP run script. - User procedure for building on pre-configured machines. Otherwise, see the User's Guide for instructions on building. + User procedure for building on pre-configured machines: :: >> cd UPP/tests >> ./compile_upp.sh - Assuming the modified code built successfully and you were able to produce Grib2 output, you can check the Grib2 + Assuming the modified code built successfully, and you were able to produce Grib2 output, you can check the Grib2 file for your new variable. - GRIB2 output of the new variable from this example procedure (using the wgrib2 utility if available on your system). - - For this example, since the new variable was not added to the NCEP Grib2 table, it will not be defined by the - variable name. Instead it will be defined using the Grib2 parameter information entered into params_grib2_tbl_new - from step 1 of this procedure. + **GRIB2 output of the new variable from this example procedure (using the wgrib2 utility if available on your system):** :: @@ -353,3 +357,7 @@ with examples in the sections below. number of latitudes between pole-equator=96 #points=73728 lat 89.284225 to -89.284225 lon 0.000000 to 359.062500 by 0.937500 + + - For this example, since the new variable was not added to the NCEP Grib2 table, it will not be defined by the + variable name. Instead it will be defined using the Grib2 parameter information entered into ``params_grib2_tbl_new`` + from step 1 of this procedure. \ No newline at end of file From 5089a6eb6fadda26db59b71715e8cb0991200ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 31 May 2023 19:51:27 -0400 Subject: [PATCH 11/44] updated table draft --- docs/UPP_GRIB2_Table.csv | 1354 ++++++++++++++++++++++++-------------- docs/UPP_GRIB2_Table.rst | 2 +- 2 files changed, 876 insertions(+), 480 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index 4d1fa31d4..c2f50fcb5 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -1,479 +1,875 @@ -Field Description,Name in Grib2 Control File,Grib2 pname,Vertical Level,UPP ID -Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,109,250 -Pressure on model surface,PRES_ON_HYBRID_LVL,PRES,109,1 -Height on model surface,HGT_ON_HYBRID_LVL,HGT,109,77 -Temperature on model surface,TMP_ON_HYBRID_LVL,TMP,109,2 -Potential temperature on model surface,POT_ON_HYBRID_LVL,POT,109,3 -Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,109,4 -Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,109,5 -Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,109,6 -Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,109,83 -U component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,109,7 -V component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,109,8 -Cloud water on model surface,CLWMR_ON_HYBRID_LVL,CLWMR,109,124 -Cloud ice on model surface,CICE_ON_HYBRID_LVL,CICE,109,125 -Rain on model surface,RWMR_ON_HYBRID_LVL,RWMR,109,181 -Snow on model surface,SNMR_ON_HYBRID_LVL,SNMR,109,182 -Cloud fraction on model surface,TCDC_ON_HYBRID_LVL,TCDC,109,145 -Omega on model surface,VVEL_ON_HYBRID_LVL,VVEL,109,9 -Absolute vorticity on model surface,ABSV_ON_HYBRID_LVL,ABSV,109,10 -Geostrophic streamfunction on model surface,STRM_ON_HYBRID_LVL,STRM,109,84 -Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,109,11 -Richardson number on model surface,RI_ON_HYBRID_LVL,RI,109,111 -Master length scale on model surface,BMIXL_ON_HYBRID_LVL,BMIXL,109,146 -Asymptotic length scale on model surface,AMIXL_ON_HYBRID_LVL,AMIXL,109,147 -Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,100,251 -Height on pressure surface,HGT_ON_ISOBARIC_SFC,HGT,100,12 -Temperature on pressure surface,TMP_ON_ISOBARIC_SFC,TMP,100,13 -Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,100,14 -Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,100,15 -Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,100,16 -Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,100,17 -Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,100,85 -U component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,100,18 -V component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,100,19 -Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,100,20 -Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,100,21 -Geostrophic streamfunction on pressure surface,STRM_ON_ISOBARIC_SFC,STRM,100,86 -Turbulent kinetic energy on pressure surface,TKE_ON_ISOBARIC_SFC,TKE,100,22 -Cloud water on pressure surface,CLWMR_ON_ISOBARIC_SFC,CLWMR,100,153 -Cloud ice on pressure surface,CICE_ON_ISOBARIC_SFC,CICE,100,166 -Rain on pressure surface,RWMR_ON_ISOBARIC_SFC,RWMR,100,183 -Snow water on pressure surface,SNMR_ON_ISOBARIC_SFC,SNMR,100,184 -Total condensate on pressure surface,TCOND_ON_ISOBARIC_SFC,TCOND,100,198 -Mesinger (Membrane) sea level pressure,MSLET_ON_MEAN_SEA_LVL,MSLET,102,23 -Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,102,105 -2 M pressure,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,PRES,105,138 -2 M temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMP,105,106 -2 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,SPFH,105,112 -2 M mixing ratio,Not currently available for grib2,NA,105,414 -2 M dew point temperature,DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DPT,105,113 -2 M RH,RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,RH,105,114 -10 M u component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,105,64 -10 M v component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,105,65 -10 M potential temperature,POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,POT,105,158 -10 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,SPFH,105,159 -Surface pressure,PRES_ON_SURFACE,PRES,1,24 -Terrain height,HGT_ON_SURFACE,HGT,1,25 -Skin potential temperature,POT_ON_SURFACE,POT,1,27 -Skin specific humidity,SPFH_ON_SURFACE,SPFH,1,28 -Skin dew point temperature,DPT_ON_SURFACE,DPT,1,29 -Skin Relative humidity,RH_ON_SURFACE,RH,1,76 -Skin temperature,TMP_ON_SURFACE,TMP,1,26 -Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,111,115/571 -Soil temperature in between each of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC,TSOIL,112,116 -Soil moisture in between each of soil layers,SOILW_ON_DEPTH_BEL_LAND_SFC,SOILW,112,117 -Snow water equivalent,WEASD_ON_SURFACE,WEASD,1,119 -Snow cover in percentage,SNOWC_ON_SURFACE,SNOWC,1,120 -Heat exchange coeff at surface,SFEXC_ON_SURFACE,SFEXC,1,169 -Vegetation cover,VEG_ON_SURFACE,VEG,1,170 -Soil moisture availability,MSTAV_ON_DEPTH_BEL_LAND_SFC,MSTAV,112,171 -Ground heat flux - instantaneous,INST_GFLUX_ON_SURFACE,GFLUX,1,152 -Lifted index—surface based,LFTX_ON_ISOBARIC_SFC_500-1000hpa,LFTX,101,30 -Lifted index—best,4LFTX_ON_SPEC_PRES_ABOVE_GRND,4LFTX,116,31 -Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,116,75 -Surface CAPE,CAPE_ON_SURFACE,CAPE,1,32 -Surface CIN,CIN_ON_SURFACE,CIN,1,107 -Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,200,80 -Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200,200 -Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,200,201 -Column integrated rain,TCOLR_ON_ENTIRE_ATMOS,TCOLR,200,202 -Column integrated snow,TCOLS_ON_ENTIRE_ATMOS,TCOLS,200,203 -Column integrated total condensate,TCOLC_ON_ENTIRE_ATMOS,TCOLC,200,204 -Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,200,575 -Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,106,162 -U component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,106,163 -V component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,106,164 -Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,1,87 -Accumulated convective precipitation,ACM_ACPCP_ON_SURFACE,ACPCP,1,33 -Accumulated grid-scale precipitation,ACM_NCPCP_ON_SURFACE,NCPCP,1,34 -Accumulated snowfall,ACM_WEASD_ON_SURFACE,WEASD,1,35 -Accumulated large scale snow,Not currently available for grib2,NA,1,244 -Accumulated total snow melt,ACM_SNOM_ON_SURFACE,SNOM,1,121 -Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,1,160 -Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,1,167 -Composite radar reflectivity,REFC_ON_ENTIRE_ATMOS,REFC,200,252 -Low level cloud fraction,LCDC_ON_LOW_CLOUD_LYR,LCDC,214,37 -Mid level cloud fraction,MCDC_ON_MID_CLOUD_LYR,MCDC,224,38 -High level cloud fraction,HCDC_ON_HIGH_CLOUD_LYR,HCDC,234,39 -Total cloud fraction,INST_TCDC_ON_ENTIRE_ATMOS,TCDC,200,161 -Time-averaged total cloud fraction,AVE_TCDC_ON_ENTIRE_ATMOS,TCDC,200,144 -Time-averaged stratospheric cloud fraction,AVE_CDLYR_ON_ENTIRE_ATMOS,CDLYR,200,139 -Time-averaged convective cloud fraction,AVE_CDCON_ON_ENTIRE_ATMOS,CDCON,200,143 -Cloud bottom pressure,PRES_ON_CLOUD_BASE,PRES,2,148 -Cloud top pressure,PRES_ON_CLOUD_TOP,PRES,3,149 -Cloud bottom height (above MSL),HGT_ON_CLOUD_BASE,HGT,2,178 -Cloud top height (above MSL),HGT_ON_CLOUD_TOP,HGT,3,179 -Convective cloud bottom pressure,PRES_ON_CONVECTIVE_CLOUD_BOT_LVL,PRES,242,188 -Convective cloud top pressure,PRES_ON_CONVECTIVE_CLOUD_TOP_LVL,PRES,243,189 -Shallow convective cloud bottom pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL,PRES,248,190 -Shallow convective cloud top pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL,PRES,249,191 -Deep convective cloud bottom pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL,PRES,251,192 -Deep convective cloud top pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL,PRES,252,193 -Grid scale cloud bottom pressure,PRES_ON_GRID_SCALE_CLOUD_BOT_LVL,PRES,206,194 -Grid scale cloud top pressure,PRES_ON_GRID_SCALE_CLOUD_TOP_LVL,PRES,207,195 -Convective cloud fraction,CDCON_ON_ENTIRE_ATMOS,CDCON,200,196 -Convective cloud efficiency,CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR,CUEFI,200,197 -Above-ground height of LCL,HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC,HGT,5,109 -Pressure of LCL,PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC,PRES,5,110 -Cloud top temperature,TMP_ON_CLOUD_TOP,TMP,3,168 -Temperature tendency from radiative fluxes,TTRAD_ON_HYBRID_LVL,TTRAD,109,140 -Temperature tendency from shortwave radiative flux,SWHR_ON_HYBRID_LVL,SWHR,109,40 -Temperature tendency from longwave radiative flux,LWHR_ON_HYBRID_LVL,LWHR,109,41 -Outgoing surface shortwave radiation - instantaneous,INST_USWRF_ON_SURFACE,USWRF,1,141 -Outgoing surface longwave radiation - instantaneous,INST_ULWRF_ON_SURFACE,ULWRF,1,142 -Incoming surface shortwave radiation - time-averaged,AVE_DSWRF_ON_SURFACE,DSWRF,1,126 -Incoming surface longwave radiation - time-averaged,AVE_DLWRF_ON_SURFACE,DLWRF,1,127 -Outgoing surface shortwave radiation - time-averaged,AVE_USWRF_ON_SURFACE,USWRF,1,128 -Outgoing surface longwave radiation - time-averaged,AVE_ULWRF_ON_SURFACE,ULWRF,1,129 -Outgoing model top shortwave radiation - time-averaged,AVE_USWRF_ON_TOP_OF_ATMOS,USWRF,8,130 -Outgoing model top longwave radiation - time-averaged,AVE_ULWRF_ON_TOP_OF_ATMOS,ULWRF,8,131 -Incoming surface shortwave radiation - instantaneous,INST_DSWRF_ON_SURFACE,DSWRF,1,156 -Incoming surface longwave radiation - instantaneous,INST_DLWRF_ON_SURFACE,DLWRF,1,157 -Roughness length,SFCR_ON_SURFACE,SFCR,1,44 -Friction velocity,FRICV_ON_SURFACE,FRICV,1,45 -Surface drag coefficient,CD_ON_SURFACE,CD,1,132 -Surface u wind stress,UFLX_ON_SURFACE,UFLX,1,133 -Surface v wind stress,VFLX_ON_SURFACE,VFLX,1,134 -Surface sensible heat flux - time-averaged,AVE_SHTFL_ON_SURFACE,SHTFL,1,43 -Ground heat flux - time-averaged,AVE_GFLUX_ON_SURFACE,GFLUX,1,135 -Surface latent heat flux - time-averaged,AVE_LHTFL_ON_SURFACE,LHTFL,1,42 -Surface momentum flux - time-averaged,AVE_MFLX_ON_SURFACE,MFLX,1,46 -Accumulated surface evaporation,ACM_EVP_ON_SURFACE,EVP,1,47 -Surface sensible heat flux – instantaneous,INST_SHTFL_ON_SURFACE,SHTFL,1,154 -Surface latent heat flux - instantaneous,INST_LHTFL_ON_SURFACE,LHTFL,1,155 -Latitude,NLAT_ON_SURFACE,NLAT,1,48 -Longitude,ELON_ON_SURFACE,ELON,1,49 -Land sea mask (land=1 sea=0),LAND_ON_SURFACE,LAND,1,50 -Sea ice mask,ICEC_ON_SURFACE,ICEC,1,51 -Surface midday albedo,ALBDO_ON_SURFACE,ALBDO,1,150 -Sea surface temperature,WTMP_ON_SURFACE,WTMP,1,151 -Press at tropopause,PRES_ON_TROPOPAUSE,PRES,7,54 -Temperature at tropopause,TMP_ON_TROPOPAUSE,TMP,7,55 -Potential temperature at tropopause,POT_ON_TROPOPAUSE,POT,7,108 -U wind at tropopause,UGRD_ON_TROPOPAUSE,UGRD,7,56 -V wind at tropopause,VGRD_ON_TROPOPAUSE,VGRD,7,57 -Wind shear at tropopause,VWSH_ON_TROPOPAUSE,VWSH,7,58 -Height at tropopause,HGT_ON_TROPOPAUSE,HGT,7,177 -Temperature at flight levels,TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,TMP,103,59 -U wind at flight levels,UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,UGRD,103,60 -V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,103,61 -Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,4,62 -Freezing level RH,RH_ON_0C_ISOTHERM,RH,4,63 -Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,204,165 -Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,116,67 -Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,116,68 -Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,116,69 -Dew point temperature in boundary layer (30 mb mean),DPT_ON_SPEC_PRES_ABOVE_GRND,DPT,116,70 -Specific humidity in boundary layer (30 mb mean),SPFH_ON_SPEC_PRES_ABOVE_GRND,SPFH,116,71 -RH in boundary layer (30 mb mean),RH_ON_SPEC_PRES_ABOVE_GRND,RH,116,72 -Moisture convergence in boundary layer (30 mb mean),MCONV_ON_SPEC_PRES_ABOVE_GRND,MCONV,116,88 -Precipitable water in boundary layer (30 mb mean),PWAT_ON_SPEC_PRES_ABOVE_GRND,PWAT,116,89 -U wind in boundary layer (30 mb mean),UGRD_ON_SPEC_PRES_ABOVE_GRND,UGRD,116,73 -V wind in boundary layer (30 mb mean),VGRD_ON_SPEC_PRES_ABOVE_GRND,VGRD,116,74 -Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,116,90 -Visibility,VIS_ON_SURFACE,VIS,1,180 -Vegetation type,VGTYP_ON_SURFACE,VGTYP,1,218 -Soil type,SOTYP_ON_SURFACE,SOTYP,1,219 -Canopy conductance,CCOND_ON_SURFACE,CCOND,1,220 -PBL height,HPBL_ON_SURFACE,HPBL,1,221 -Slope type,SLTYP_ON_SURFACE,SLTYP,1,223 -Snow depth,SNOD_ON_SURFACE,SNOD,1,224 -Liquid soil moisture,SOILL_ON_DEPTH_BEL_LAND_SFC,SOILL,112,225 -Snow free albedo,SNFALB_ON_SURFACE,SNFALB,1,226 -Maximum snow albedo,MXSALB_ON_SURFACE,MXSALB,1,227 -Canopy water evaporation,EVCW_ON_SURFACE,EVCW,1,228 -Direct soil evaporation,EVBS_ON_SURFACE,EVBS,1,229 -Plant transpiration,TRANS_ON_SURFACE,TRANS,1,230 -Snow sublimation,SBSNO_ON_SURFACE,SBSNO,1,231 -Air dry soil moisture,SMDRY_ON_SURFACE,SMDRY,1,232 -Soil moist porosity,POROS_ON_SURFACE,POROS,1,233 -Minimum stomatal resistance,RSMIN_ON_SURFACE,RSMIN,1,234 -Number of root layers,RLYRS_ON_SURFACE,RLYRS,1,235 -Soil moist wilting point,WILT_ON_SURFACE,WILT,1,236 -Soil moist reference,SMREF_ON_SURFACE,SMREF,1,237 -Canopy conductance - solar component,RCS_ON_SURFACE,RCS,1,238 -Canopy conductance - temperature component,RCT_ON_SURFACE,RCT,1,239 -Canopy conductance - humidity component,RCQ_ON_SURFACE,RCQ,1,240 -Canopy conductance - soil component,RCSOL_ON_SURFACE,RCSOL,1,241 -Potential evaporation,PEVPR_ON_SURFACE,PEVPR,1,242 -Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,107,243 -Surface wind gust,GUST_ON_SURFACE,GUST,1,245 -Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,1,249 -Radar reflectivity at certain above ground heights,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,105,253 -MAPS Sea Level Pressure,MAPS_PRMSL_ON_MEAN_SEA_LVL,PRMSL,102,445 -Total soil moisture,SOILM_ON_DEPTH_BEL_LAND_SFC,SOILM,112,36 -Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,1,118 -Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,1,122 -Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,1,123 -Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,1,172 -GSD Cloud Base pressure,Not currently available for grib2,NA,2,787 -GSD Cloud Top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,3,406 -Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,109,78 -Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,109,79 -Average snow phase change heat flux,AVE_SNOHF_ON_SURFACE,SNOHF,1,136 -Accumulated potential evaporation,ACM_PEVAP_ON_SURFACE,PEVAP,1,137 -Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,204,350 -Maximum wind pressure level,PRES_ON_MAX_WIND,PRES,6,173 -Maximum wind height,HGT_ON_MAX_WIND,HGT,6,174 -U-component of maximum wind,UGRD_ON_MAX_WIND,UGRD,6,175 -V-component of maximum wind,VGRD_ON_MAX_WIND,VGRD,6,176 -GSD cloud base height,GSD_HGT_ON_CLOUD_BASE,HGT,2,408 -GSD cloud top height,GSD_HGT_ON_CLOUD_TOP,HGT,3,409 -GSD visibility,GSD_VIS_ON_CLOUD_TOP,VIS,3,410 -Wind energy potential,WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND,WMIXE,105,411 -U wind at 80 m above ground,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,UGRD,105,412 -V wind at 80 m above ground,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,VGRD,105,413 -Graupel on model surface,GRMR_ON_HYBRID_LVL,GRMR,109,415 -Graupel on pressure surface,GRMR_ON_ISOBARIC_SFC,GRMR,100,416 -Maximum updraft helicity,MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,106,420 -Maximum 1km reflectivity,MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,MAXREF,105,421 -Maximum wind speed at 10m,MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,105,422 -Maximum updraft vertical velocity,MAX_MAXUVV_ON_ISOBARIC_SFC_40-100hpa,MAXUVV,106,423 -Maximum downdraft vertical velocity,MAX_MAXDVV_ON_ISOBARIC_SFC_40-100hpa,MAXDVV,106,424 -Mean vertical velocity,AVE_DZDT_ON_SIGMA_LVL_0.5-0.8,DZDT,108,425 -Radar echo top in KDT,HGT_ON_SPEC_HGT_LVL_ABOVE_GRND,HGT,105,426 -Updraft helicity,UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,106,427 -Column integrated graupel,GRMR_ON_ENTIRE_ATMOS_SINGLE_LYR,GRMR,200,428 -Column integrated maximum graupel,MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR,TCOLG,200,429 -U-component of 0-1km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VUCSH,106,430 -V-component of 0-1km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VVCSH,106,431 -U-component of 0-6km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VUCSH,106,432 -V-component of 0-6km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VVCSH,106,433 -Total precipitation accumulated over user-specified bucket,BUCKET_APCP_ON_SURFACE,APCP,1,434 -Convective precipitation accumulated over user-specified bucket,BUCKET_ACPCP_ON_SURFACE,ACPCP,1,435 -Grid-scale precipitation accumulated over user-specified bucket,BUCKET_NCPCP_ON_SURFACE,NCPCP,1,436 -Snow accumulated over user-specified bucket,BUCKET_WEASD_ON_SURFACE,WEASD,1,437 -Model level fraction of rain for Ferrier scheme,FRAIN_ON_HYBRID_LVL,FRAIN,109,185 -Model level fraction of ice for Ferrier scheme,FICE_ON_HYBRID_LVL,FICE,109,186 -Model level riming factor for Ferrier scheme,RIME_ON_HYBRID_LVL,RIME,109,187 -Model level total condensate for Ferrier scheme,TCOND_ON_HYBRID_LVL,TCOND,109,199 -Height of sigma surface,HGT_ON_SIGMA_LVLS,HGT,107,205 -Temperature on sigma surface,TMP_ON_SIGMA_LVLS,TMP,107,206 -Specific humidity on sigma surface,SPFH_ON_SIGMA_LVLS,SPFH,107,207 -U-wind on sigma surface,UGRD_ON_SIGMA_LVLS,UGRD,107,208 -V-wind on sigma surface,VGRD_ON_SIGMA_LVLS,VGRD,107,209 -Omega on sigma surface,VVEL_ON_SIGMA_LVLS,VVEL,107,210 -Cloud water on sigma surface,CLWMR_ON_SIGMA_LVLS,CLWMR,107,211 -Cloud ice on sigma surface,CICE_ON_SIGMA_LVLS,CICE,107,212 -Rain on sigma surface,RWMR_ON_SIGMA_LVLS,RWMR,107,213 -Snow on sigma surface,SNMR_ON_SIGMA_LVLS,SNMR,107,214 -Condensate on sigma surface,TCOND_ON_SIGMA_LVLS,TCOND,107,215 -Pressure on sigma surface,PRES_ON_SIGMA_LVLS,PRES,107,216 -Turbulent kinetic energy on sigma surface,TKE_ON_SIGMA_LVLS,TKE,107,217 -Cloud fraction on sigma surface,TCDC_ON_SIGMA_LVLS,TCDC,107,222 -Graupel on sigma surface,GRLE_ON_SIGMA_LVLS,GRLE,107,255 -LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,116,246 -LOWEST WET BULB ZERO HEIGHT,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,245,247 -Leaf area index,LAI_ON_SURFACE,LAI,1,254 -Accumulated land surface model precipitation,ACM_LSPA_ON_SURFACE,LSPA,1,256 -In-flight icing,TIPD_ON_ISOBARIC_SFC,TIPD,100,257 -Clear air turbulence,TPFI_ON_ISOBARIC_SFC,TPFI,100,258 -Wind shear between shelter level and 2000 FT,VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND,VWSH,106,259 -Ceiling,HGT_ON_CLOUD_CEILING,HGT,215,260 -Flight restriction,VIS_ON_CLOUD_BASE,VIS,2,261 -Instantaneous clear sky incoming surface shortwave,INST_CSDSF_ON_SURFACE,CSDSF,1,262 -Pressure level riming factor for Ferrier scheme,RIME_ON_ISOBARIC_SFC,RIME,100,263 -Model level vertical velocity,DZDT_ON_HYBRID_LVL,DZDT,109,264 -Brightness temperature,SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD,SBT122,8,265 -Average albedo,AVE_ALBDO_ON_SURFACE,ALBDO,1,266 -Ozone on model surface,O3MR_ON_HYBRID_LVL,O3MR,109,267 -Ozone on pressure surface,O3MR_ON_ISOBARIC_SFC,O3MR,100,268 -Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,1,269 -Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,1,270 -Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,1,271 -Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,1,272 -Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,8,274 -Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,8,275 -Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,8,282 -Composite rain radar reflectivity,REFZR_ON_ENTIRE_ATMOS,REFZR,200,276 -Composite ice radar reflectivity,REFZI_ON_ENTIRE_ATMOS,REFZI,200,277 -Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,200,278 -Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,105,279 -Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,105,280 -Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,105,281 -Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,100,284 -Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,200,285 -Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,200,286 -Height of lowest level super cool liquid water,HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,253,287 -Height of highest level super cool liquid water,HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,254,288 -Richardson number planetary boundary layer height,HGT_ON_PLANETARY_BOUND_LYR,HGT,220,289 -Total column shortwave temperature tendency,SWHR_ON_ENTIRE_ATMOS,SWHR,200,290 -Total column longwave temperature tendency,LWHR_ON_ENTIRE_ATMOS,LWHR,200,291 -Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,200,292 -Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,200,293 -Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,100,294 -Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,200,295 -Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,1,297 -Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,1,298 -Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,200,299 -Average low cloud fraction,AVE_TCDC_ON_LOW_CLOUD_LYR,TCDC,214,300 -Average mid cloud fraction,AVE_TCDC_ON_MID_CLOUD_LYR,TCDC,224,301 -Average high cloud fraction,AVE_TCDC_ON_HIGH_CLOUD_LYR,TCDC,234,302 -Average low cloud bottom pressure,AVE_PRES_ON_LOW_CLOUD_BOT_LVL,PRES,212,303 -Average low cloud top pressure,AVE_PRES_ON_LOW_CLOUD_TOP_LVL,PRES,213,304 -Average low cloud top temperature,AVE_TMP_ON_LOW_CLOUD_TOP_LVL,TMP,213,305 -Average mid cloud bottom pressure,AVE_PRES_ON_MID_CLOUD_BOT_LVL,PRES,222,306 -Average mid cloud top pressure,AVE_PRES_ON_MID_CLOUD_TOP_LVL,PRES,223,307 -Average mid cloud top temperature,AVE_TMP_ON_MID_CLOUD_TOP_LVL,TMP,223,308 -Average high cloud bottom pressure,AVE_PRES_ON_HIGH_CLOUD_BOT_LVL,PRES,232,309 -Average high cloud top pressure,AVE_PRES_ON_HIGH_CLOUD_TOP_LVL,PRES,233,310 -Average high cloud top temperature,AVE_TMP_ON_HIGH_CLOUD_TOP_LVL,TMP,233,311 -Total column relative humidity,RH_ON_ENTIRE_ATMOS_SINGLE_LYR,RH,200,312 -Cloud work function,AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR,CWORK,200,313 -Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,6,314 -Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,1,315 -Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,1,316 -Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,1,317 -Simulated GOES 12 channel 2 brightness temperature,SBT122_ON_TOP_OF_ATMOS,SBT122,8,327 -Simulated GOES 12 channel 3 brightness temperature,SBT123_ON_TOP_OF_ATMOS,SBT123,8,328 -Simulated GOES 12 channel 4 brightness temperature,SBT124_ON_TOP_OF_ATMOS,SBT124,8,329 -Simulated GOES 12 channel 5 brightness temperature,SBT126_ON_TOP_OF_ATMOS,SBT126,8,330 -Cloud fraction on pressure surface,TCDC_ON_ISOBARIC_SFC,TCDC,100,331 -U-wind on theta surface,UGRD_ON_ISENTROPIC_LVL,UGRD,113,332 -V-wind on theta surface,VGRD_ON_ISENTROPIC_LVL,VGRD,113,333 -Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,113,334 -Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,113,335 -Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,113,353 -Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,113,352 -U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,117,336 -V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,117,337 -Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,117,338 -Height on constant PV surface,HGT_ON_POT_VORT_SFC,HGT,117,339 -Pressure on constant PV surface,PRES_ON_POT_VORT_SFC,PRES,117,340 -Wind shear on constant PV surface,VWSH_ON_POT_VORT_SFC,VWSH,117,341 -Planetary boundary layer cloud fraction,AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR,TCDC,211,342 -Average water runoff,ACM_WATR_ON_SURFACE,WATR,1,343 -Planetary boundary layer regime,PBLREG_ON_SURFACE,PBLREG,1,344 -Maximum 2m temperature,MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMAX,105,345 -Minimum 2m temperature,MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMIN,105,346 -Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,105,347 -Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,105,348 -Ice thickness,ICETK_ON_SURFACE,ICETK,1,349 -Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,100,354 -Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,100,355 -Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,100,357 -Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,100,358 -Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,100,359 -Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,100,361 -Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,100,362 -Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,100,366 -Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,100,367 -Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,8,376 -Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,8,377 -Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,113,378 -Mixing height,MIXHT_ON_SURFACE,MIXHT,1,381 -Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,1,382 -Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,1,383 -Average clear-sky outgoing longwave at surface,AVE_CSULF_ON_SURFACE,CSULF,1,384 -Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATMOS,CSULF,8,385 -Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,1,386 -Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,8,387 -Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,8,388 -Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,220,389 -Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,220,390 -Sunshine duration,SUNSD_ON_SURFACE,SUNSD,1,396 -Field capacity,FLDCP_ON_SURFACE,FLDCP,1,397 -ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,6,398 -ICAO height at tropopause,ICAHT_ON_TROPOPAUSE,ICAHT,7,399 -Radar echo top,RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR,RETOP,200,400 -Time averaged surface Visible beam downward solar flux,AVE_VBDSF_ON_SURFACE,VBDSF,1,401 -Time averaged surface Visible diffuse downward solar flux,AVE_VDDSF_ON_SURFACE,VDDSF,1,402 -Time averaged surface Near IR beam downward solar flux,AVE_NBDSF_ON_SURFACE,NBDSF,1,403 -Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,NDDSF,1,404 -Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,1,405 -Dust 1 on pressure surface,DUST1_ON_ISOBARIC_LVL,MASSMR,100,438 -Dust 2 on pressure surface,DUST2_ON_ISOBARIC_LVL,MASSMR,100,439 -Dust 3 on pressure surface,DUST3_ON_ISOBARIC_LVL,MASSMR,100,440 -Dust 4 on pressure surface,DUST4_ON_ISOBARIC_LVL,MASSMR,100,441 -Dust 5 on pressure surface,DUST5_ON_ISOBARIC_LVL,MASSMR,100,442 -Equilibrium level height,HGT_ON_EQUIL_LVL,HGT,247,443 -Lightning,LTNG_ON_SURFACE,LTNG,1,444 -Goes west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,8,446 -Goes west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,8,447 -Goes west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,8,448 -Goes west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,8,449 -In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,100,450 -Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,103,451 -Virtual temperature based convective available potential energy,VTCAPE_ON_SURFACE,CAPE,1,452 -Virtual temperature based convective inhibition,VTCIN_ON_SURFACE,CIN,1,453 -Virtual temperature on model surfaces,Not currently available for grib2,NA,109,909 -Virtual temperature on pressure surfaces,Not currently available for grib2,NA,100,910 -Virtual temperature on flight levels,Not currently available for grib2,NA,103,911 -Ventilation rate,VRATE_ON_PLANETARY_BOUND_LYR,VRATE,220,454 -Haines index,HINDEX_ON_SURFACE,HINDEX,1,455 -Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,103,482 -Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,1,500 -Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,1,501 -Time-averaged 10m temperature,AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,105,502 -Time-averaged mass exchange coefficient,AVE_AKHS_ON_SURFACE,AKHS,1,503 -Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,1,504 -Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,105,505 -Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,105,506 -Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,105,507 -Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,8,456 -Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,8,457 -Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,8,458 -Simulated GOES 12 channel 5 brightness temperature with satellite angle correction,NON_NADIR_SBT126_ON_TOP_OF_ATMOS,SBT126,8,459 -Simulated GOES 11 channel 2 brightness temperature with satellite angle correction,SBT112_ON_TOP_OF_ATMOS,SBT112,8,460 -Simulated GOES 11 channel 3 brightness temperature with satellite angle correction,SBT113_ON_TOP_OF_ATMOS,SBT113,8,461 -Simulated GOES 11 channel 4 brightness temperature with satellite angle correction,SBT114_ON_TOP_OF_ATMOS,SBT114,8,462 -Simulated GOES 11 channel 5 brightness temperature with satellite angle correction,SBT115_ON_TOP_OF_ATMOS,SBT115,8,463 -Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,109,872 -Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,109,868 -Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,8,483 -Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,8,484 -Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,8,485 -Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,8,486 -SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,800 -SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,806 -SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,812 -SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,818 -SSMIS F17 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,825 -SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,832 -SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,839 -SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,846 -MTSAT-1r imager channels 1-4 (backup for mtsat2),Not currently available for grib2,NA,109,864 -MTSAT2 imager channels 1-4,Not currently available for grib2,NA,109,860 -Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,109,876 -Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,109,865 -Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,109,927 -Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,109,928 -Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,109,929 -Simulated GOES 16 band 10 brightness temperature,SBTA1610_ON_TOP_OF_ATMOS,SBTA1610,109,930 -Simulated GOES 16 band 11 brightness temperature,SBTA1611_ON_TOP_OF_ATMOS,SBTA1611,109,931 -Simulated GOES 16 band 12 brightness temperature,SBTA1612_ON_TOP_OF_ATMOS,SBTA1612,109,932 -Simulated GOES 16 band 13 brightness temperature,SBTA1613_ON_TOP_OF_ATMOS,SBTA1613,109,933 -Simulated GOES 16 band 14 brightness temperature,SBTA1614_ON_TOP_OF_ATMOS,SBTA1614,109,934 -Simulated GOES 16 band 15 brightness temperature,SBTA1615_ON_TOP_OF_ATMOS,SBTA1615,109,935 -Simulated GOES 16 band 16 brightness temperature,SBTA1616_ON_TOP_OF_ATMOS,SBTA1616,109,936 -Simulated GOES 17 band 7 brightness temperature,SBTA177_ON_TOP_OF_ATMOS,SBTA177,109,937 -Simulated GOES 17 band 8 brightness temperature,SBTA178_ON_TOP_OF_ATMOS,SBTA178,109,938 -Simulated GOES 17 band 9 brightness temperature,SBTA179_ON_TOP_OF_ATMOS,SBTA179,109,939 -Simulated GOES 17 band 10 brightness temperature,SBTA1710_ON_TOP_OF_ATMOS,SBTA1710,109,940 -Simulated GOES 17 band 11 brightness temperature,SBTA1711_ON_TOP_OF_ATMOS,SBTA1711,109,941 -Simulated GOES 17 band 12 brightness temperature,SBTA1712_ON_TOP_OF_ATMOS,SBTA1712,109,942 -Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA1713,109,943 -Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,109,944 -Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,109,945 -Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,109,946 -Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,109,958 -Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,109,959 -Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,109,960 -Simulated GOES R band 10 brightness temperature,SBTAGR10_ON_TOP_OF_ATMOS,SBTAGR10,109,961 -Simulated GOES R band 11 brightness temperature,SBTAGR11_ON_TOP_OF_ATMOS,SBTAGR11,109,962 -Simulated GOES R band 12 brightness temperature,SBTAGR12_ON_TOP_OF_ATMOS,SBTAGR12,109,963 -Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR13,109,964 -Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,109,965 -Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,109,966 -Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,109,967 -Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,109,969 -Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,109,970 -Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,109,971 -Simulated Himawari-8 band 10 brightness temperature,SBTAHI10_ON_TOP_OF_ATMOS,SBTAHI10,109,972 -Simulated Himawari-8 band 11 brightness temperature,SBTAHI11_ON_TOP_OF_ATMOS,SBTAHI11,109,973 -Simulated Himawari-8 band 12 brightness temperature,SBTAHI12_ON_TOP_OF_ATMOS,SBTAHI12,109,974 -Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBTAHI13,109,975 -Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,109,976 -Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,109,977 -Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,109,978 +Field Description,Name in Grib2 Control File,Grib2 pname,UPP ID +Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,250 +Pressure on model surface,PRES_ON_HYBRID_LVL,PRES,1 +Height on model surface,HGT_ON_HYBRID_LVL,HGT,77 +Temperature on model surface,TMP_ON_HYBRID_LVL,TMP,2 +Potential temperature on model surface,POT_ON_HYBRID_LVL,POT,3 +Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,4 +Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,5 +Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,6 +Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,83 +U component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,7 +V component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,8 +Cloud water on model surface,CLMR_ON_HYBRID_LVL,CLMR,124 +Cloud ice on model surface,ICMR_ON_HYBRID_LVL,ICMR,125 +Rain on model surface,RWMR_ON_HYBRID_LVL,RWMR,181 +Snow on model surface,SNMR_ON_HYBRID_LVL,SNMR,182 +Cloud fraction on model surface,TCDC_ON_HYBRID_LVL,TCDC,145 +Omega on model surface,VVEL_ON_HYBRID_LVL,VVEL,9 +Absolute vorticity on model surface,ABSV_ON_HYBRID_LVL,ABSV,10 +Geostrophic streamfunction on model surface,STRM_ON_HYBRID_LVL,STRM,84 +Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,11 +Richardson number on model surface,RI_ON_HYBRID_LVL,RI,111 +Master length scale on model surface,BMIXL_ON_HYBRID_LVL,BMIXL,146 +Asymptotic length scale on model surface,AMIXL_ON_HYBRID_LVL,AMIXL,147 +Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,251 +Height on pressure surface,HGT_ON_ISOBARIC_SFC,HGT,12 +Temperature on pressure surface,TMP_ON_ISOBARIC_SFC,TMP,13 +Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,14 +Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,15 +Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,16 +Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,17 +Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,85 +U component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,18 +V component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,19 +Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,20 +Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,21 +Geostrophic streamfunction on pressure surface,STRM_ON_ISOBARIC_SFC,STRM,86 +Turbulent kinetic energy on pressure surface,TKE_ON_ISOBARIC_SFC,TKE,22 +Cloud water on pressure surface,CLMR_ON_ISOBARIC_SFC,CLMR,153 +Cloud ice on pressure surface,ICMR_ON_ISOBARIC_SFC,ICMR,166 +Rain on pressure surface,RWMR_ON_ISOBARIC_SFC,RWMR,183 +Snow water on pressure surface,SNMR_ON_ISOBARIC_SFC,SNMR,184 +Total condensate on pressure surface,TCOND_ON_ISOBARIC_SFC,TCOND,198 +Mesinger (Membrane) sea level pressure,MSLET_ON_MEAN_SEA_LVL,MSLET,23 +Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,105 +2 M pressure,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,PRES,138 +2 M temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMP,106 +2 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,SPFH,112 +2 M mixing ratio,Not currently available for grib2,NA,414 +2 M dew point temperature,DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DPT,113 +2 M RH,RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,RH,114 +10 M u component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 +10 M v component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 +10 M potential temperature,POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,POT,158 +10 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,SPFH,159 +Surface pressure,PRES_ON_SURFACE,PRES,24 +Terrain height,HGT_ON_SURFACE,HGT,25 +Skin potential temperature,POT_ON_SURFACE,POT,27 +Skin specific humidity,SPFH_ON_SURFACE,SPFH,28 +Skin dew point temperature,DPT_ON_SURFACE,DPT,29 +Skin Relative humidity,RH_ON_SURFACE,RH,76 +Skin temperature,TMP_ON_SURFACE,TMP,26 +Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,115 +GFS Soil temperature at the bottom of soil layers,GFS_TMP_ON_DEPTH_BEL_LAND_SFC_3m,TMP,571 +**GFS lifted index on surface**,GFS_LFTX_ON_SURFACE,LFTX,572 +**GFS lifted index on surface - best**,GFS_4LFTX_ON_SURFACE,4LFTX,573 +**Soil temperature in between each of soil layers**,GFS_TMP_ON_DEPTH_BEL_LAND_SFC,TMP,574 +Soil temperature in between each of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC,TSOIL,116 +Soil moisture in between each of soil layers,SOILW_ON_DEPTH_BEL_LAND_SFC,SOILW,117 +Snow water equivalent,WEASD_ON_SURFACE,WEASD,119 +Snow cover in percentage,SNOWC_ON_SURFACE,SNOWC,120 +Heat exchange coeff at surface,SFEXC_ON_SURFACE,SFEXC,169 +Vegetation cover,VEG_ON_SURFACE,VEG,170 +Soil moisture availability,MSTAV_ON_DEPTH_BEL_LAND_SFC,MSTAV,171 +Ground heat flux - instantaneous,INST_GFLUX_ON_SURFACE,GFLUX,152 +Lifted index—surface based,LFTX_ON_ISOBARIC_SFC_500-1000hpa,LFTX,30 +Lifted index—best,4LFTX_ON_SPEC_PRES_ABOVE_GRND,4LFTX,31 +Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,75 +Surface CAPE,CAPE_ON_SURFACE,CAPE,32 +Surface CIN,CIN_ON_SURFACE,CIN,107 +Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,80 +**Relative humidity on sigma levels 0.66-1.0**,RH_ON_SIGMA_LVL_0.66-1.0,RH,81 +**Relative humidity on sigma levels 0.33-0.66**,RH_ON_SIGMA_LVL_0.33-0.66,RH,82 +Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200 +Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,201 +Column integrated rain,TCOLR_ON_ENTIRE_ATMOS,TCOLR,202 +Column integrated snow,TCOLS_ON_ENTIRE_ATMOS,TCOLS,203 +Column integrated total condensate,TCOLC_ON_ENTIRE_ATMOS,TCOLC,204 +Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 +Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,162 +U component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,163 +V component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,164 +Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,87 +Accumulated convective precipitation,ACM_ACPCP_ON_SURFACE,ACPCP,33 +Accumulated grid-scale precipitation,ACM_NCPCP_ON_SURFACE,NCPCP,34 +Accumulated snowfall,ACM_WEASD_ON_SURFACE,WEASD,35 +Accumulated large scale snow,Not currently available for grib2,NA,244 +Accumulated total snow melt,ACM_SNOM_ON_SURFACE,SNOM,121 +Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,160 +Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,167 +Composite radar reflectivity,REFC_ON_ENTIRE_ATMOS,REFC,252 +Low level cloud fraction,LCDC_ON_LOW_CLOUD_LYR,LCDC,37 +Mid level cloud fraction,MCDC_ON_MID_CLOUD_LYR,MCDC,38 +High level cloud fraction,HCDC_ON_HIGH_CLOUD_LYR,HCDC,39 +Total cloud fraction,INST_TCDC_ON_ENTIRE_ATMOS,TCDC,161 +Time-averaged total cloud fraction,AVE_TCDC_ON_ENTIRE_ATMOS,TCDC,144 +Time-averaged stratospheric cloud fraction,AVE_CDLYR_ON_ENTIRE_ATMOS,CDLYR,139 +Time-averaged convective cloud fraction,AVE_CDCON_ON_ENTIRE_ATMOS,CDCON,143 +Cloud bottom pressure,PRES_ON_CLOUD_BASE,PRES,148 +Cloud top pressure,PRES_ON_CLOUD_TOP,PRES,149 +Cloud bottom height (above MSL),HGT_ON_CLOUD_BASE,HGT,178 +Cloud top height (above MSL),HGT_ON_CLOUD_TOP,HGT,179 +Convective cloud bottom pressure,PRES_ON_CONVECTIVE_CLOUD_BOT_LVL,PRES,188 +Convective cloud top pressure,PRES_ON_CONVECTIVE_CLOUD_TOP_LVL,PRES,189 +Shallow convective cloud bottom pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL,PRES,190 +Shallow convective cloud top pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL,PRES,191 +Deep convective cloud bottom pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL,PRES,192 +Deep convective cloud top pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL,PRES,193 +Grid scale cloud bottom pressure,PRES_ON_GRID_SCALE_CLOUD_BOT_LVL,PRES,194 +Grid scale cloud top pressure,PRES_ON_GRID_SCALE_CLOUD_TOP_LVL,PRES,195 +Convective cloud fraction,CDCON_ON_ENTIRE_ATMOS,CDCON,196 +Convective cloud efficiency,CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR,CUEFI,197 +Above-ground height of LCL,HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC,HGT,109 +Pressure of LCL,PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC,PRES,110 +Cloud top temperature,TMP_ON_CLOUD_TOP,TMP,168 +Temperature tendency from radiative fluxes,TTRAD_ON_HYBRID_LVL,TTRAD,140 +Temperature tendency from shortwave radiative flux,SWHR_ON_HYBRID_LVL,SWHR,40 +Temperature tendency from longwave radiative flux,LWHR_ON_HYBRID_LVL,LWHR,41 +Outgoing surface shortwave radiation - instantaneous,INST_USWRF_ON_SURFACE,USWRF,141 +Outgoing surface longwave radiation - instantaneous,INST_ULWRF_ON_SURFACE,ULWRF,142 +Incoming surface shortwave radiation - time-averaged,AVE_DSWRF_ON_SURFACE,DSWRF,126 +Incoming surface longwave radiation - time-averaged,AVE_DLWRF_ON_SURFACE,DLWRF,127 +Outgoing surface shortwave radiation - time-averaged,AVE_USWRF_ON_SURFACE,USWRF,128 +Outgoing surface longwave radiation - time-averaged,AVE_ULWRF_ON_SURFACE,ULWRF,129 +Outgoing model top shortwave radiation - time-averaged,AVE_USWRF_ON_TOP_OF_ATMOS,USWRF,130 +Outgoing model top longwave radiation - time-averaged,AVE_ULWRF_ON_TOP_OF_ATMOS,ULWRF,131 +Incoming surface shortwave radiation - instantaneous,INST_DSWRF_ON_SURFACE,DSWRF,156 +Incoming surface longwave radiation - instantaneous,INST_DLWRF_ON_SURFACE,DLWRF,157 +Roughness length,SFCR_ON_SURFACE,SFCR,44 +Friction velocity,FRICV_ON_SURFACE,FRICV,45 +Surface drag coefficient,CD_ON_SURFACE,CD,132 +Surface u wind stress,UFLX_ON_SURFACE,UFLX,133 +Surface v wind stress,VFLX_ON_SURFACE,VFLX,134 +Surface sensible heat flux - time-averaged,AVE_SHTFL_ON_SURFACE,SHTFL,43 +Ground heat flux - time-averaged,AVE_GFLUX_ON_SURFACE,GFLUX,135 +Surface latent heat flux - time-averaged,AVE_LHTFL_ON_SURFACE,LHTFL,42 +Surface momentum flux - time-averaged,AVE_MFLX_ON_SURFACE,MFLX,46 +Accumulated surface evaporation,ACM_EVP_ON_SURFACE,EVP,47 +Surface sensible heat flux – instantaneous,INST_SHTFL_ON_SURFACE,SHTFL,154 +Surface latent heat flux - instantaneous,INST_LHTFL_ON_SURFACE,LHTFL,155 +Latitude,NLAT_ON_SURFACE,NLAT,48 +Longitude,ELON_ON_SURFACE,ELON,49 +Land sea mask (land=1 sea=0),LAND_ON_SURFACE,LAND,50 +Sea ice mask,ICEC_ON_SURFACE,ICEC,51 +Surface midday albedo,ALBDO_ON_SURFACE,ALBDO,150 +Sea surface temperature,WTMP_ON_SURFACE,WTMP,151 +Press at tropopause,PRES_ON_TROPOPAUSE,PRES,54 +Temperature at tropopause,TMP_ON_TROPOPAUSE,TMP,55 +Potential temperature at tropopause,POT_ON_TROPOPAUSE,POT,108 +U wind at tropopause,UGRD_ON_TROPOPAUSE,UGRD,56 +V wind at tropopause,VGRD_ON_TROPOPAUSE,VGRD,57 +Wind shear at tropopause,VWSH_ON_TROPOPAUSE,VWSH,58 +Height at tropopause,HGT_ON_TROPOPAUSE,HGT,177 +Temperature at flight levels,TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,TMP,59 +U wind at flight levels,UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,UGRD,60 +V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,61 +Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,62 +Freezing level RH,RH_ON_0C_ISOTHERM,RH,63 +Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,165 +**Relative humidity on sigma levels 0.33-1.0**,RH_ON_SIGMA_LVL_0.33-1.0,RH,66 +Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,67 +Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,68 +Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,69 +Dew point temperature in boundary layer (30 mb mean),DPT_ON_SPEC_PRES_ABOVE_GRND,DPT,70 +Specific humidity in boundary layer (30 mb mean),SPFH_ON_SPEC_PRES_ABOVE_GRND,SPFH,71 +RH in boundary layer (30 mb mean),RH_ON_SPEC_PRES_ABOVE_GRND,RH,72 +Moisture convergence in boundary layer (30 mb mean),MCONV_ON_SPEC_PRES_ABOVE_GRND,MCONV,88 +Precipitable water in boundary layer (30 mb mean),PWAT_ON_SPEC_PRES_ABOVE_GRND,PWAT,89 +U wind in boundary layer (30 mb mean),UGRD_ON_SPEC_PRES_ABOVE_GRND,UGRD,73 +V wind in boundary layer (30 mb mean),VGRD_ON_SPEC_PRES_ABOVE_GRND,VGRD,74 +Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,90 +**Pressure on sigma level 0.98230**,PRES_ON_SIGMA_LVL_0.98230,PRES,91 +**Temperature on sigma level 0.98230**,TMP_ON_SIGMA_LVL_0.98230,TMP,92 +**Specific humidity on sigma level 0.98230**,SPFH_ON_SIGMA_LVL_0.98230,SPFH,93 +**Relative humidity on sigma level 0.98230**,RH_ON_SIGMA_LVL_0.98230,RH,94 +**U-wind on sigma level 0.98230**,UGRD_ON_SIGMA_LVL_0.98230,UGRD,95 +**V-wind on sigma level 0.98230**,VGRD_ON_SIGMA_LVL_0.98230,VGRD,96 +**Temperature on sigma level 0.89671**,TMP_ON_SIGMA_LVL_0.89671,TMP,97 +**Temperature on sigma level 0.78483**,TMP_ON_SIGMA_LVL_0.78483,TMP,98 +**Relative humidity on sigma level 0.47_1.0**,RH_ON_SIGMA_LVL_0.47_1.0,RH,99 +**Relative humidity on sigma level 0.47_0.96**,RH_ON_SIGMA_LVL_0.47_0.96,RH,100 +**Relative humidity on sigma level 0.18_0.47**,RH_ON_SIGMA_LVL_0.18_0.47,RH,101 +**Relative humidity on sigma level 0.84_0.98**,RH_ON_SIGMA_LVL_0.84_0.98,RH,102 +**Moisture convergence on sigma level 0.85_1.0**,MCONV_ON_SIGMA_LVL_0.85_1.0,MCONV,103 +**Precipitable water on sigma level 0.33_1.0**,PWAT_ON_SIGMA_LVL_0.33_1.0,PWAT,104 +Visibility,VIS_ON_SURFACE,VIS,180 +Vegetation type,VGTYP_ON_SURFACE,VGTYP,218 +Soil type,SOTYP_ON_SURFACE,SOTYP,219 +Canopy conductance,CCOND_ON_SURFACE,CCOND,220 +PBL height,HPBL_ON_SURFACE,HPBL,221 +Slope type,SLTYP_ON_SURFACE,SLTYP,223 +Snow depth,SNOD_ON_SURFACE,SNOD,224 +Liquid soil moisture,SOILL_ON_DEPTH_BEL_LAND_SFC,SOILL,225 +Snow free albedo,SNFALB_ON_SURFACE,SNFALB,226 +Maximum snow albedo,MXSALB_ON_SURFACE,MXSALB,227 +Canopy water evaporation,EVCW_ON_SURFACE,EVCW,228 +Direct soil evaporation,EVBS_ON_SURFACE,EVBS,229 +Plant transpiration,TRANS_ON_SURFACE,TRANS,230 +Snow sublimation,SBSNO_ON_SURFACE,SBSNO,231 +Air dry soil moisture,SMDRY_ON_SURFACE,SMDRY,232 +Soil moist porosity,POROS_ON_SURFACE,POROS,233 +Minimum stomatal resistance,RSMIN_ON_SURFACE,RSMIN,234 +Number of root layers,RLYRS_ON_SURFACE,RLYRS,235 +Soil moist wilting point,WILT_ON_SURFACE,WILT,236 +Soil moist reference,SMREF_ON_SURFACE,SMREF,237 +Canopy conductance - solar component,RCS_ON_SURFACE,RCS,238 +Canopy conductance - temperature component,RCT_ON_SURFACE,RCT,239 +Canopy conductance - humidity component,RCQ_ON_SURFACE,RCQ,240 +Canopy conductance - soil component,RCSOL_ON_SURFACE,RCSOL,241 +Potential evaporation,PEVPR_ON_SURFACE,PEVPR,242 +Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,243 +Surface wind gust,GUST_ON_SURFACE,GUST,245 +Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,249 +Radar reflectivity at certain above ground heights,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,253 +MAPS Sea Level Pressure,MAPS_PRMSL_ON_MEAN_SEA_LVL,PRMSL,445 +Total soil moisture,SOILM_ON_DEPTH_BEL_LAND_SFC,SOILM,36 +Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,118 +Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,122 +Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,123 +Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,172 +GSD Cloud Base pressure,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 +GSD Cloud Top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 +Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 +Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,79 +Average snow phase change heat flux,AVE_SNOHF_ON_SURFACE,SNOHF,136 +Accumulated potential evaporation,ACM_PEVAP_ON_SURFACE,PEVAP,137 +Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,350 +Maximum wind pressure level,PRES_ON_MAX_WIND,PRES,173 +Maximum wind height,HGT_ON_MAX_WIND,HGT,174 +U-component of maximum wind,UGRD_ON_MAX_WIND,UGRD,175 +V-component of maximum wind,VGRD_ON_MAX_WIND,VGRD,176 +**GSD cloud ceiling height**,GSD_HGT_ON_CLOUD_CEILING,HGT,408 +GSD cloud top height,GSD_HGT_ON_CLOUD_TOP,HGT,409 +**GSD visibility**,GSD_VIS_ON_SURFACE,VIS,410 +Wind energy potential,WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND,WMIXE,411 +U wind at 80 m above ground,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,UGRD,412 +V wind at 80 m above ground,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,VGRD,413 +Graupel on model surface,GRLE_ON_HYBRID_LVL,GRLE,415 +Graupel on pressure surface,GRLE_ON_ISOBARIC_SFC,GRLE,416 +**Continuous accumulated total precipitation**,CACM_APCP_ON_SURFACE,APCP,417 +**Continuous accumulated convective precipitation**,CACM_ACPCP_ON_SURFACE,ACPCP,418 +**Continuous accumulated grid-scale precipitation**,CACM_NCPCP_ON_SURFACE,NCPCP,419 +Maximum updraft helicity,MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,420 +Maximum 1km reflectivity,MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,MAXREF,421 +Maximum wind speed at 10m,MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,422 +Maximum updraft vertical velocity,MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa,MAXUVV,423 +Maximum downdraft vertical velocity,MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa,MAXDVV,424 +Mean vertical velocity,AVE_DZDT_ON_SIGMA_LVL_0.5-0.8,DZDT,425 +Radar echo top in KDT,HGT_ON_SPEC_HGT_LVL_ABOVE_GRND,HGT,426 +Updraft helicity,UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,427 +**Total column graupel**,TCOLG_ON_ENTIRE_ATMOS,TCOLG,428 +Column integrated maximum graupel,MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR,TCOLG,429 +U-component of 0-1km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VUCSH,430 +V-component of 0-1km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VVCSH,431 +U-component of 0-6km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VUCSH,432 +V-component of 0-6km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VVCSH,433 +Total precipitation accumulated over user-specified bucket,BUCKET_APCP_ON_SURFACE,APCP,434 +Convective precipitation accumulated over user-specified bucket,BUCKET_ACPCP_ON_SURFACE,ACPCP,435 +Grid-scale precipitation accumulated over user-specified bucket,BUCKET_NCPCP_ON_SURFACE,NCPCP,436 +Snow accumulated over user-specified bucket,BUCKET_WEASD_ON_SURFACE,WEASD,437 +Model level fraction of rain for Ferrier scheme,FRAIN_ON_HYBRID_LVL,FRAIN,185 +Model level fraction of ice for Ferrier scheme,FICE_ON_HYBRID_LVL,FICE,186 +Model level riming factor for Ferrier scheme,RIME_ON_HYBRID_LVL,RIME,187 +Model level total condensate for Ferrier scheme,TCOND_ON_HYBRID_LVL,TCOND,199 +Height of sigma surface,HGT_ON_SIGMA_LVLS,HGT,205 +Temperature on sigma surface,TMP_ON_SIGMA_LVLS,TMP,206 +Specific humidity on sigma surface,SPFH_ON_SIGMA_LVLS,SPFH,207 +U-wind on sigma surface,UGRD_ON_SIGMA_LVLS,UGRD,208 +V-wind on sigma surface,VGRD_ON_SIGMA_LVLS,VGRD,209 +Omega on sigma surface,VVEL_ON_SIGMA_LVLS,VVEL,210 +Cloud water on sigma surface,CLMR_ON_SIGMA_LVLS,CLMR,211 +Cloud ice on sigma surface,ICMR_ON_SIGMA_LVLS,ICMR,212 +Rain on sigma surface,RWMR_ON_SIGMA_LVLS,RWMR,213 +Snow on sigma surface,SNMR_ON_SIGMA_LVLS,SNMR,214 +Condensate on sigma surface,TCOND_ON_SIGMA_LVLS,TCOND,215 +Pressure on sigma surface,PRES_ON_SIGMA_LVLS,PRES,216 +Turbulent kinetic energy on sigma surface,TKE_ON_SIGMA_LVLS,TKE,217 +Cloud fraction on sigma surface,TCDC_ON_SIGMA_LVLS,TCDC,222 +Graupel on sigma surface,GRLE_ON_SIGMA_LVLS,GRLE,255 +LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,246 +LOWEST WET BULB ZERO HEIGHT,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,247 +Leaf area index,LAI_ON_SURFACE,LAI,254 +Accumulated land surface model precipitation,ACM_LSPA_ON_SURFACE,LSPA,256 +In-flight icing,TIPD_ON_ISOBARIC_SFC,TIPD,257 +Clear air turbulence,TPFI_ON_ISOBARIC_SFC,TPFI,258 +Wind shear between shelter level and 2000 FT,VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND,VWSH,259 +Ceiling,HGT_ON_CLOUD_CEILING,HGT,260 +Flight restriction,VIS_ON_CLOUD_BASE,VIS,261 +Instantaneous clear sky incoming surface shortwave,INST_CSDSF_ON_SURFACE,CSDSF,262 +Pressure level riming factor for Ferrier scheme,RIME_ON_ISOBARIC_SFC,RIME,263 +Model level vertical velocity,DZDT_ON_HYBRID_LVL,DZDT,264 +Brightness temperature,SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD,SBT122,265 +Average albedo,AVE_ALBDO_ON_SURFACE,ALBDO,266 +Ozone on model surface,O3MR_ON_HYBRID_LVL,O3MR,267 +Ozone on pressure surface,O3MR_ON_ISOBARIC_SFC,O3MR,268 +Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,269 +Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,270 +Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,271 +Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,272 +**Pressure on ???**,PRES_ON_HYBRID_LVL_LLM,PRES,273 +Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,274 +Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,275 +Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,282 +Composite rain radar reflectivity,REFZR_ON_ENTIRE_ATMOS,REFZR,276 +Composite ice radar reflectivity,REFZI_ON_ENTIRE_ATMOS,REFZI,277 +Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,278 +Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,279 +Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,280 +Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,281 +**Pressure on ???**,PRES_ON_HYBRID_LVL_1L,PRES,283 +Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,284 +Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,285 +Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,286 +Height of lowest level super cool liquid water,HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,287 +Height of highest level super cool liquid water,HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,288 +Richardson number planetary boundary layer height,HGT_ON_PLANETARY_BOUND_LYR,HGT,289 +Total column shortwave temperature tendency,SWHR_ON_ENTIRE_ATMOS,SWHR,290 +Total column longwave temperature tendency,LWHR_ON_ENTIRE_ATMOS,LWHR,291 +Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,292 +Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,293 +Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,294 +Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,295 +**Temperature on ???**,TMP_ON_SIGMA_LVL_HPC,TMP,296 +Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,297 +Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,298 +Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,299 +Average low cloud fraction,AVE_TCDC_ON_LOW_CLOUD_LYR,TCDC,300 +Average mid cloud fraction,AVE_TCDC_ON_MID_CLOUD_LYR,TCDC,301 +Average high cloud fraction,AVE_TCDC_ON_HIGH_CLOUD_LYR,TCDC,302 +Average low cloud bottom pressure,AVE_PRES_ON_LOW_CLOUD_BOT_LVL,PRES,303 +Average low cloud top pressure,AVE_PRES_ON_LOW_CLOUD_TOP_LVL,PRES,304 +Average low cloud top temperature,AVE_TMP_ON_LOW_CLOUD_TOP_LVL,TMP,305 +Average mid cloud bottom pressure,AVE_PRES_ON_MID_CLOUD_BOT_LVL,PRES,306 +Average mid cloud top pressure,AVE_PRES_ON_MID_CLOUD_TOP_LVL,PRES,307 +Average mid cloud top temperature,AVE_TMP_ON_MID_CLOUD_TOP_LVL,TMP,308 +Average high cloud bottom pressure,AVE_PRES_ON_HIGH_CLOUD_BOT_LVL,PRES,309 +Average high cloud top pressure,AVE_PRES_ON_HIGH_CLOUD_TOP_LVL,PRES,310 +Average high cloud top temperature,AVE_TMP_ON_HIGH_CLOUD_TOP_LVL,TMP,311 +Total column relative humidity,RH_ON_ENTIRE_ATMOS_SINGLE_LYR,RH,312 +Cloud work function,AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR,CWORK,313 +Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,314 +Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,315 +Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,316 +Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,317 +**Relative humidity on sigma level 0.44-1.0**,RH_ON_SIGMA_LVL_0.44-1.0,RH,318 +**Relative humidity on sigma level 0.72-0.94**,RH_ON_SIGMA_LVL_0.72-0.94,RH,319 +**Relative humidity on sigma level 0.44-0.72**,RH_ON_SIGMA_LVL_0.44-0.72,RH,320 +**Temperature on sigma level 0.9950**,TMP_ON_SIGMA_LVL_0.9950,TMP,321 +**Potential temperature on sigma level 0.9950**,POT_ON_SIGMA_LVL_0.9950,POT,322 +**Relative humidity on sigma level 0.9950**,RH_ON_SIGMA_LVL_0.9950,RH,323 +**U-wind at sigma level 0.9950**,UGRD_ON_SIGMA_LVL_0.9950,UGRD,324 +**V-wind at sigma level 0.9950**,VGRD_ON_SIGMA_LVL_0.9950,VGRD,325 +**Omega at sigma level 0.9950**,VVEL_ON_SIGMA_LVL_0.9950,VVEL,326 +Simulated GOES 12 channel 2 brightness temperature,SBT122_ON_TOP_OF_ATMOS,SBT122,327 +Simulated GOES 12 channel 3 brightness temperature,SBT123_ON_TOP_OF_ATMOS,SBT123,328 +Simulated GOES 12 channel 4 brightness temperature,SBT124_ON_TOP_OF_ATMOS,SBT124,329 +Simulated GOES 12 channel 5 brightness temperature,SBT126_ON_TOP_OF_ATMOS,SBT126,330 +Cloud fraction on pressure surface,TCDC_ON_ISOBARIC_SFC,TCDC,331 +U-wind on theta surface,UGRD_ON_ISENTROPIC_LVL,UGRD,332 +V-wind on theta surface,VGRD_ON_ISENTROPIC_LVL,VGRD,333 +Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,334 +Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,335 +Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 +Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 +**???**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 +U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,336 +V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,337 +Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,338 +Height on constant PV surface,HGT_ON_POT_VORT_SFC,HGT,339 +Pressure on constant PV surface,PRES_ON_POT_VORT_SFC,PRES,340 +Wind shear on constant PV surface,VWSH_ON_POT_VORT_SFC,VWSH,341 +Planetary boundary layer cloud fraction,AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR,TCDC,342 +Average water runoff,ACM_WATR_ON_SURFACE,WATR,343 +Planetary boundary layer regime,PBLREG_ON_SURFACE,PBLREG,344 +Maximum 2m temperature,MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMAX,345 +Minimum 2m temperature,MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMIN,346 +Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,347 +Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 +Ice thickness,ICETK_ON_SURFACE,ICETK,349 +Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 +Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 +**???**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 +Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 +Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 +Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 +**???**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 +Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 +Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 +**???**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 +**???**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 +**???**,POZ_ON_ISOBARIC_SFC,POZ,365 +Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 +Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 +**???**,SNOT_ON_ISOBARIC_SFC,SNOT,368 +**???**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 +**???**,GWDU_ON_ISOBARIC_SFC,GWDU,370 +**???**,CNVU_ON_ISOBARIC_SFC,CNVU,371 +**???**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 +**???**,GWDV_ON_ISOBARIC_SFC,GWDV,373 +**???**,CNVV_ON_ISOBARIC_SFC,CNVV,374 +**???**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 +Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 +Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 +**???**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 +**???**,VEDH_ON_HYBRID_LVL,VEDH,380 +Mixing height,MIXHT_ON_SURFACE,MIXHT,381 +Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,382 +Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,383 +Average clear-sky outgoing longwave at surface,AVE_CSULF_ON_SURFACE,CSULF,384 +Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATMOS,CSULF,385 +Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,386 +Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,387 +Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 +Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 +Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 +**???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 +**???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 +**???**,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 +**???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +**???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 +Field capacity,FLDCP_ON_SURFACE,FLDCP,397 +ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 +ICAO height at tropopause,ICAHT_ON_TROPOPAUSE,ICAHT,399 +Radar echo top,RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR,RETOP,400 +Time averaged surface Visible beam downward solar flux,AVE_VBDSF_ON_SURFACE,VBDSF,401 +Time averaged surface Visible diffuse downward solar flux,AVE_VDDSF_ON_SURFACE,VDDSF,402 +Time averaged surface Near IR beam downward solar flux,AVE_NBDSF_ON_SURFACE,NBDSF,403 +Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,NDDSF,404 +Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,405 +**???**,GSD_INST_CRAIN_ON_SURFACE,CRAIN,407 +Dust 1 on pressure surface,DUST1_ON_ISOBARIC_LVL,MASSMR,438 +Dust 2 on pressure surface,DUST2_ON_ISOBARIC_LVL,MASSMR,439 +Dust 3 on pressure surface,DUST3_ON_ISOBARIC_LVL,MASSMR,440 +Dust 4 on pressure surface,DUST4_ON_ISOBARIC_LVL,MASSMR,441 +Dust 5 on pressure surface,DUST5_ON_ISOBARIC_LVL,MASSMR,442 +Equilibrium level height,HGT_ON_EQUIL_LVL,HGT,443 +Lightning,LTNG_ON_SURFACE,LTNG,444 +Goes west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,446 +Goes west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,447 +Goes west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,448 +Goes west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,449 +In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,450 +Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,451 +Virtual temperature based convective available potential energy,VTCAPE_ON_SURFACE,CAPE,452 +Virtual temperature based convective inhibition,VTCIN_ON_SURFACE,CIN,453 +Virtual temperature on model surfaces,Not currently available for grib2,NA,909 +Virtual temperature on pressure surfaces,Not currently available for grib2,NA,910 +Virtual temperature on flight levels,Not currently available for grib2,NA,911 +Ventilation rate,VRATE_ON_PLANETARY_BOUND_LYR,VRATE,454 +Haines index,HINDEX_ON_SURFACE,HINDEX,455 +**???**,EDPARM_ON_ISOBARIC_SFC,EDPARM,464 +**???**,CAT_ON_ISOBARIC_SFC,CATEDR,465 +**???**,MWTURB_ON_ISOBARIC_SFC,MWTURB,466 +**???**,EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,EDPARM,467 +**???**,CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,CATEDR,468 +**???**,MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,MWTURB,469 +**???**,EDPARM_ON_HYBRID_LVL,EDPARM,470 +**???**,CAT_ON_HYBRID_LVL,CATEDR,471 +**???**,MWTURB_ON_HYBRID_LVL,MWTURB,472 +**???**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +**???**,ICAHT_ON_CB_BASE,ICAHT,474 +**???**,ICAHT_ON_CB_TOP,ICAHT,475 +**???**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 +**???**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 +**???**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 +**Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 +**???**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 +**???** Total Icing Potential Diagnostic on standard atmospheric isobaric sfc?,ICIP_ON_ICAO_STD_SFC,ICIP,481 +Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,482 +Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,500 +Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,501 +Time-averaged 10m temperature,AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,502 +Time-averaged mass exchange coefficient,AVE_AKHS_ON_SURFACE,AKHS,503 +Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,504 +Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,505 +Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,506 +Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,507 +**???** Maximum Precipitation Rate on surface?,MAX_PRATE_ON_SURFACE,PRATE,508 +**???**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 +**???**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 +**???**,ACOND_ON_SURFACE,ACOND,512 +**???**,AVE_EVCW_ON_SURFACE,EVCW,513 +**???**,AVE_EVBS_ON_SURFACE,EVBS,514 +**???**,AVE_TRANS_ON_SURFACE,TRANS,515 +**???**,AVE_SBSNO_ON_SURFACE,SBSNO,516 +**???**,AVE_PEVPR_ON_SURFACE,PEVPR,517 +**???**,HGT_ON_ICAO_STD_SFC,HGT,518 +**???**,TMP_ON_ICAO_STD_SFC,TMP,519 +**???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 +**???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 +**Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 +**Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 +**Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 +**Bucket snow precipitation on surface**,BUCKET1_WEASD_ON_SURFACE,WEASD,529 +**Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 +**???**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 +**???**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 +**???**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 +**???**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 +**???**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 +**???**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 +**???**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 +**???**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 +**???**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 +**???**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 +**???**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 +**???**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 +**???**,GSD_EPOT_ON_SURFACE,EPOT,548 +**???**,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 +**Categorical snow on surface**,CSNOW_ON_SURFACE,CSNOW,551 +**Categorical ice pellets on surface**,CICEP_ON_SURFACE,CICEP,552 +**Categorical freezing rain on surface**,CFRZR_ON_SURFACE,CFRZR,553 +**average Categorical snow on surface**,AVE_CSNOW_ON_SURFACE,CSNOW,555 +**average Categorical ice pellets on surface**,AVE_CICEP_ON_SURFACE,CICEP,556 +**average Categorical freezing rain on surface**,AVE_CFRZR_ON_SURFACE,CFRZR,557 +**GSD_Categorical snow on surface**,GSD_CSNOW_ON_SURFACE,CSNOW,559 +**GSD_Categorical ice pellets on surface**,GSD_CICEP_ON_SURFACE,CICEP,560 +**GSD_Categorical freezing rain on surface**,GSD_CFRZR_ON_SURFACE,CFRZR,561 +**GSD_average Categorical snow on surface**,GSD_AVE_CSNOW_ON_SURFACE,CSNOW,563 +**GSD_average Categorical ice pellets on surface**,GSD_AVE_CICEP_ON_SURFACE,CICEP,564 +**GSD_average Categorical freezing rain on surface**,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 +**???**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 +**???**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 +**???**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 +**???**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 +**???**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 +Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,456 +Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,457 +Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,458 +Simulated GOES 12 channel 5 brightness temperature with satellite angle correction,NON_NADIR_SBT126_ON_TOP_OF_ATMOS,SBT126,459 +Simulated GOES 11 channel 2 brightness temperature with satellite angle correction,SBT112_ON_TOP_OF_ATMOS,SBT112,460 +Simulated GOES 11 channel 3 brightness temperature with satellite angle correction,SBT113_ON_TOP_OF_ATMOS,SBT113,461 +Simulated GOES 11 channel 4 brightness temperature with satellite angle correction,SBT114_ON_TOP_OF_ATMOS,SBT114,462 +Simulated GOES 11 channel 5 brightness temperature with satellite angle correction,SBT115_ON_TOP_OF_ATMOS,SBT115,463 +Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,872 +Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,868 +Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,483 +Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,484 +Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,485 +Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,486 +**???**,GSD_EXP_CEILING,CEIL,487 +**Simulated Brightness Temperature for TMI TRMM channel 6 on top of atmosphere**,TMITB6_ON_TOP_OF_ATMOS,AMSRE9,488 +**Simulated Brightness Temperature for TMI TRMM channel 7 on top of atmosphere**,TMITB7_ON_TOP_OF_ATMOS,AMSRE10,489 +**Simulated Brightness Temperature for TMI TRMM channel 8 on top of atmosphere**,TMITB8_ON_TOP_OF_ATMOS,AMSRE11,490 +**Simulated Brightness Temperature for TMI TRMM channel 9 on top of atmosphere**,TMITB9_ON_TOP_OF_ATMOS,AMSRE12,491 +**Simulated Brightness Temperature for SSMI TB channel 4 on top of atmosphere**,SSMITB4_ON_TOP_OF_ATMOS,AMSRE9,492 +**Simulated Brightness Temperature for SSMI TB channel 5 on top of atmosphere**,SSMITB5_ON_TOP_OF_ATMOS,AMSRE10,493 +**Simulated Brightness Temperature for SSMI TB channel 6 on top of atmosphere**,SSMITB6_ON_TOP_OF_ATMOS,AMSRE11,494 +**Simulated Brightness Temperature for SSMI TB channel 7 on top of atmosphere**,SSMITB7_ON_TOP_OF_ATMOS,AMSRE12,495 +**Simulated Brightness Temperature for SSMIS TB channel 15 on top of atmosphere**,SSMISTB15_ON_TOP_OF_ATMOS,AMSRE9,496 +**Simulated Brightness Temperature for SSMIS TB channel 16 on top of atmosphere**,SSMISTB16_ON_TOP_OF_ATMOS,AMSRE10,497 +**Simulated Brightness Temperature for SSMIS TB channel 17 on top of atmosphere**,SSMISTB17_ON_TOP_OF_ATMOS,AMSRE11,498 +**Simulated Brightness Temperature for SSMIS TB channel 18 on top of atmosphere**,SSMISTB18_ON_TOP_OF_ATMOS,AMSRE12,499 +**???**,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 +**???**,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 +**???**,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 +**???**,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 +**???**,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 +**Entire Atmosphere Vertically Integrated Liquid (kg/m-2)**,VIL_ON_ENTIRE_ATMOS,VIL,581 +**???**,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 +**???**,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 +**???**,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 +**???**,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 +**???**,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 +**???**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 +**???**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 +**???**,AER_OPT_GFS_at550,AOTK,600 +**???**,DUST_AER_OPT_GFS_at550,AOTK,601 +**???**,SEASALT_AER_OPT_GFS_at550,AOTK,602 +**???**,SULFATE_AER_OPT_GFS_at550,AOTK,603 +**???**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 +**???**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 +**???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 +**???**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 +**???**,SSALBK_ON_HYBRID_LVL,SSALBK,608 +**???**,AER_OPT_DEP_at550,AOTK,609 +**???**,DUST_AER_OPT_DEP_at550,AOTK,610 +**???**,SEASALT_AER_OPT_DEP_at550,AOTK,611 +**???**,SULFATE_AER_OPT_DEP_at550,AOTK,612 +**???**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 +**???**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 +**???**,NITRATE_AER_OPT_DEP_at550,AOTK,615 +**???**,BC_COL_MASS_DEN,COLMD,616 +**???**,OC_COL_MASS_DEN,COLMD,617 +**???**,SULF_COL_MASS_DEN,COLMD,618 +**???**,PM10_SFC_MASS_CON,PMTC,619 +**???**,PM25_SFC_MASS_CON,PMTF,620 +**???**,PM10_COL_MASS_DEN,COLMD,621 +**???**,PM25_COL_MASS_DEN,COLMD,622 +**???**,AER_OPT_DEP_at340,AOTK,623 +**???**,AER_OPT_DEP_at440,AOTK,624 +**???**,AER_OPT_DEP_at660,AOTK,625 +**???**,AER_OPT_DEP_at860,AOTK,626 +**???**,AER_OPT_DEP_at1630,AOTK,627 +**???**,AER_OPT_DEP_at11100,AOTK,628 +**???**,DUST1_ON_HYBRID_LVL,PMTF,629 +**???**,DUST2_ON_HYBRID_LVL,PMTF,630 +**???**,DUST3_ON_HYBRID_LVL,PMTC,631 +**???**,DUST4_ON_HYBRID_LVL,PMTC,632 +**???**,DUST5_ON_HYBRID_LVL,PMTC,633 +**???**,SEASALT1_ON_HYBRID_LVL,PMTF,634 +**???**,SEASALT2_ON_HYBRID_LVL,PMTF,635 +**???**,SEASALT3_ON_HYBRID_LVL,PMTC,636 +**???**,SEASALT4_ON_HYBRID_LVL,PMTC,637 +**???**,SEASALT5_ON_HYBRID_LVL,PMTC,638 +**???**,SO4_ON_HYBRID_LVL,PMTF,639 +**???**,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 +**???**,OCPHILIC_ON_HYBRID_LVL,PMTF,641 +**???**,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 +**???**,BCPHILIC_ON_HYBRID_LVL,PMTF,643 +**???**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 +**???**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 +**???**,DUST_COL_MASS_DEN,COLMD,646 +**???**,SEAS_COL_MASS_DEN,COLMD,647 +**???**,SINGLE_SCAT_ALBD_at340,SSALBK,648 +**???**,AER_ASYM_FACTOR_at340,ASYSFK,649 +**???**,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 +**???**,DUST_AER_SCAT_OPT_DEP_at550,SCTAOTK,651 +**???**,SEASALT_AER_SCAT_OPT_DEP_at550,SCTAOTK,652 +**???**,SULFATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,653 +**???**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 +**???**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 +**???**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 +**???**,NO3_COL_MASS_DEN,COLMD,657 +**???**,NH4_COL_MASS_DEN,COLMD,658 +**???**,DUST_EMISSION_FLUX,AEMFLX,659 +**???**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 +**???**,DUST DRY DEPOSITION,DDMFLX,661 +**???**,DUST WET DEPOSITION,WLSMFLX,662 +**???**,SEASALT_EMISSION_FLUX,AEMFLX,663 +**???**,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 +**???**,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 +**???**,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 +**???**,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 +**???**,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 +**???**,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 +**???**,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 +**???**,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 +**???**,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 +**???**,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 +**???**,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 +**???**,SULFATE_EMISSION_FLUX,AEMFLX,675 +**???**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 +**???**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 +**???**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 +**???**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 +**???**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 +**???**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 +**???**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 +**???**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 +**???**,SEAS25_SFC_MASS_CON,PMTF,684 +**???**,DUST10_SFC_MASS_CON,PMTC,685 +**???**,DUST25_SFC_MASS_CON,PMTF,686 +**???**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 +**???**,NO3_ON_HYBRID_LVL,PMTF,688 +**???**,NH4_ON_HYBRID_LVL,PMTF,689 +**???**,SU_AER_SFC_MASS_CON,MASSDEN,689 +**???**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 +**???**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 +**???**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 +**???**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 +**???**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 +**???**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 +**???**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 +**???**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 +**???**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 +**???**,MIE_OPT_DEP_at550,AOTK,699 +**???**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 +**???**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 +**???**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 +**???**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 +**???**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 +GSD_Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 +GSD_Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 +GSD_Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 +GSD_Convective Activity Vertical Hydrometeor Flux,GSD_NCA_WQ_ON_ENTIRE_ATMOS,NCAWQ,708 +GSD_Convective Initiation Reflectivity,GSD_NCI_REFL_ON_ENTIRE_ATMOS,TSEC,709 +GSD_Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 +**???**,GSD_EXP_CEILING_2,CEIL,711 +**???**,AER_OPT_AQM_at550,AOTK,712 +**???**,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 +**???**,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 +**???**,VEG_MIN_ON_SURFACE,VEGMIN,726 +**???**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 +**???**,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 +**???**,VEG_MAX_ON_SURFACE,VEGMAX,729 +**???**,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 +**???**,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 +**???**,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 +**???**,GSD_AVE_DSWRF_ON_SURFACE,DSWRF,733 +**???**,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 +**???**,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 +**???**,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 +**???**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 +**???**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 +**???**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 +**???**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 +**???**,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 +**???**,DUST_ON_HYBRID_LVL,MASSDEN,742 +**???**,DUST_ON_ISOBARIC_SFC,MASSDEN,743 +**???**,DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,744 +**???**,BIOMASS_BURNING_EMISSIONS,AEMFLX,745 +**???**,ACM_GRAUPEL_ON_SURFACE,FROZR,746 +Number concentration for cloud water drops on hybrid level,GSD_NCCD_ON_HYBRID_LVL,NCONCD,747 +**???**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,REFD,748 +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER,GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS,RH_PWAT,749 +**???**,GSD_WV_MIXR_ON_HYBRID_LVL,MIXR,750 +**???**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 +Number concentration for ice particles on hybrid level,GSD_NCIP_ON_HYBRID_LVL,NCIP,752 +GSD_pressure on Level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 +**???**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 +Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 +GSD_pressure on Highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 +**???**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 +**???**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 +**???**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 +**???**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 +**???**,GSD_MIXR_ON_SURFACE,MIXR,762 +**???**,GSD_MIXR_ON_LFC,MIXR,763 +**???**,CSDLF_ON_SURFACE,CSDLF,764 +**???**,CSULF_ON_SURFACE,CSULF,765 +**???**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 +**???**,GSD_NCIFA_ON_HYBRID_LVL,PMTC,767 +Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level),GSD_ECHOTOP_ON_CLOUD_TOP,RETOP,768 +**???**,GSD_VIL_ON_ENTIRE_ATMOS,VIL,769 +**???**,GSD_RADARVIL_ON_ENTIRE_ATMOS,RADARVIL,770 +**???**,INST_SWDDNI_ON_SURFACE,VBDSF,772 +**???**,INST_SWDDIF_ON_SURFACE,VDDSF,773 +**???**,FRACCC_ON_HYBRID_LVL,FRACCC,774 +bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 +height on highest tropospheric -10C level,HGT_ON_HGHST_TROP_-10C_LVL,HGT,776 +relative humidity on highest tropospheric -10C level,RH_ON_HGHST_TROP_-10C_LVL,RH,777 +pressure on highest tropospheric -10C level,PRES_ON_HGHST_TROP_-10C_LVL,PRES,778 +height on highest tropospheric -20C level,HGT_ON_HGHST_TROP_-20C_LVL,HGT,779 +relative humidity on highest tropospheric -20C level,RH_ON_HGHST_TROP_-20C_LVL,RH,780 +pressure on highest tropospheric -20C level,PRES_ON_HGHST_TROP_-20C_LVL,PRES,781 +**???**,ACM_FRAIN_ON_SURFACE,FRZR,782 +maximum u wind on 10 meter Above Ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 +maximum v wind on 10 meter Above Ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 +maximum reflectivity on -10C suface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 +**???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 +**???**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 +**???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 +**???**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 +**???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 +**???**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 +**???**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 +**???**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 +**???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 +**???**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 +**???**,TCDC_ON_BOUND_LYR,TCDC,799 +**???**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 +SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,800 +SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,806 +SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,812 +SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 +**??? SSMIS F17 (183H 19H 19V 37H 37V 85H 85V)**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 +**???**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 +**???**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 +**???**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 +SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 +SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,839 +SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 +MTSAT-1r imager channels 1-4 (backup for mtsat2),Not currently available for grib2,NA,864 +MTSAT2 imager channels 1-4,Not currently available for grib2,NA,860 +Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,876 +Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,865 +Hourly max relative vorticity on hybrid level 1,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1,RELV,890 +**???**,REFD_ON_ISOTHERMAL,REFD,912 +**???**,1H_FFG_EXCEEDANCE,FFLDRO,913 +**???**,ACM_FFG_EXCEEDANCE,FFLDRO,914 +**???**,1H_2YARI_EXCEEDANCE,GWLOWS,915 +**???**,ACM_2YARI_EXCEEDANCE,GWLOWS,916 +**???**,1H_5YARI_EXCEEDANCE,GWLOWS,917 +**???**,ACM_5YARI_EXCEEDANCE,GWLOWS,918 +**???**,1H_10YARI_EXCEEDANCE,GWLOWS,919 +**???**,ACM_10YARI_EXCEEDANCE,GWLOWS,920 +**???**,1H_100YARI_EXCEEDANCE,GWLOWS,921 +**???**,ACM_100YARI_EXCEEDANCE,GWLOWS,922 +Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,927 +Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,928 +Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,929 +Simulated GOES 16 band 10 brightness temperature,SBTA1610_ON_TOP_OF_ATMOS,SBTA1610,930 +Simulated GOES 16 band 11 brightness temperature,SBTA1611_ON_TOP_OF_ATMOS,SBTA1611,931 +Simulated GOES 16 band 12 brightness temperature,SBTA1612_ON_TOP_OF_ATMOS,SBTA1612,932 +Simulated GOES 16 band 13 brightness temperature,SBTA1613_ON_TOP_OF_ATMOS,SBTA1613,933 +Simulated GOES 16 band 14 brightness temperature,SBTA1614_ON_TOP_OF_ATMOS,SBTA1614,934 +Simulated GOES 16 band 15 brightness temperature,SBTA1615_ON_TOP_OF_ATMOS,SBTA1615,935 +Simulated GOES 16 band 16 brightness temperature,SBTA1616_ON_TOP_OF_ATMOS,SBTA1616,936 +Simulated GOES 17 band 7 brightness temperature,SBTA177_ON_TOP_OF_ATMOS,SBTA177,937 +Simulated GOES 17 band 8 brightness temperature,SBTA178_ON_TOP_OF_ATMOS,SBTA178,938 +Simulated GOES 17 band 9 brightness temperature,SBTA179_ON_TOP_OF_ATMOS,SBTA179,939 +Simulated GOES 17 band 10 brightness temperature,SBTA1710_ON_TOP_OF_ATMOS,SBTA1710,940 +Simulated GOES 17 band 11 brightness temperature,SBTA1711_ON_TOP_OF_ATMOS,SBTA1711,941 +Simulated GOES 17 band 12 brightness temperature,SBTA1712_ON_TOP_OF_ATMOS,SBTA1712,942 +Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA1713,943 +Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,944 +Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,945 +Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,946 +**???**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 +**???**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 +**???**,HGT_ON_LFC,HGT,952 +**???**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 +**???**,DOWNWARD_CAPE,DCAPE,954 +**???**,DENDRITIC_LAYER_DEPTH,LAYTH,955 +**???**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 +**???**,CRITICAL_ANGLE,DCAPE,957 +Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,958 +Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,959 +Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,960 +Simulated GOES R band 10 brightness temperature,SBTAGR10_ON_TOP_OF_ATMOS,SBTAGR10,961 +Simulated GOES R band 11 brightness temperature,SBTAGR11_ON_TOP_OF_ATMOS,SBTAGR11,962 +Simulated GOES R band 12 brightness temperature,SBTAGR12_ON_TOP_OF_ATMOS,SBTAGR12,963 +Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR13,964 +Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,965 +Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,966 +Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,967 +**???**,ICETMP_ON_SURFACE,ICETMP,968 +Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,969 +Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,970 +Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,971 +Simulated Himawari-8 band 10 brightness temperature,SBTAHI10_ON_TOP_OF_ATMOS,SBTAHI10,972 +Simulated Himawari-8 band 11 brightness temperature,SBTAHI11_ON_TOP_OF_ATMOS,SBTAHI11,973 +Simulated Himawari-8 band 12 brightness temperature,SBTAHI12_ON_TOP_OF_ATMOS,SBTAHI12,974 +Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBTAHI13,975 +Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,976 +Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,977 +Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,978 +**???**,EFSH_ON_EFBL,EFSH,979 +**???**,EFSH_ON_EFTL,EFSH,980 +**???**,ELMELT_ON_EFTL,ELMELT,982 +**???**,UESH_ON_EFL,UESH,983 +**???**,VESH_ON_EFL,VESH,984 +**???**,ESHR_ON_EFL,ESHR,985 +**???**,UEID_ON_EFL,UEID,986 +**???**,VEID_ON_EFL,VEID,987 +**???**,E3KH_ON_EFL,E3KH,988 +**???**,STPC_ON_EFL,STPC,989 +**???**,SIGT_ON_EFL,SIGT,990 +**???**,SCCP_ON_EFL,SCCP,991 +**???**,MLFC_ON_EFL,MLFC,992 +**???**,SIGH_ON_EFL,SIGH,993 +**???**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 +**???**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 +**???**,LAND_FRAC,LANDFRC,996 +**???**,INST_PREC_ADVEC_HEAT,PAHFLX,997 +**???**,WATER_AQUIFER,WATERSA,998 +**???**,ACM_EIWATER_ON_SURFACE,EIWATER,999 +**???**,ACM_PLANTTR_ON_SURFACE,PLANTTR,1000 +**???**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 +**???**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 +**???**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 +**???**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 +**???**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 +**???**,SDEN_ON_SURFACE,SDEN,1006 +**???**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 +**???**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 +**???**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 +**???**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 +**???**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 +**???**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 +**???**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 +**???**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 \ No newline at end of file diff --git a/docs/UPP_GRIB2_Table.rst b/docs/UPP_GRIB2_Table.rst index da7c73cf0..19aba54ea 100644 --- a/docs/UPP_GRIB2_Table.rst +++ b/docs/UPP_GRIB2_Table.rst @@ -12,5 +12,5 @@ uses to store the variable in parallel arrays (column 5). .. csv-table:: :file: UPP_GRIB2_Table.csv - :widths: 25, 30, 15, 15, 15 + :widths: 25, 30, 15, 15 :header-rows: 1 From 30d0b3c940a5df602fb70b0083c214dd8194ce4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 5 Jun 2023 19:25:49 -0400 Subject: [PATCH 12/44] Add/rm unified vars from PRs 534, 561, 582, 591, 593 --- docs/UFS_unified_variables_table.csv | 140 ++++++++++----------------- 1 file changed, 51 insertions(+), 89 deletions(-) diff --git a/docs/UFS_unified_variables_table.csv b/docs/UFS_unified_variables_table.csv index e863c9295..d8f871c81 100644 --- a/docs/UFS_unified_variables_table.csv +++ b/docs/UFS_unified_variables_table.csv @@ -23,6 +23,8 @@ Min hourly 0-3km updraft helicity,uhmin03,up_heli_min03,2d,dyn,regional FV3 Max 0-1km relative vorticity max,maxvort01,rel_vort_max01,2d,dyn,regional FV3 Max 0-2km relative vorticity max,maxvort02,rel_vort_max,2d,dyn,regional FV3 Max hybrid level 1 relative vorticity max,maxvorthy1,rel_vort_maxhy1,2d,dyn,regional FV3 +Biomass burning emissions,ebb_smoke_hr,ebb,2d,phy,regional FV3 +Hourly wildfire potential,hwp,hwp,2d,phy,regional FV3 Surface height,hgtsfc,"zint(:,:,LM+1)",2d,dyn, Reflectivity,refl_10cm,REF_10CM,3d,phy, Turbulence kinetic energy,qke,q2,3d,phy, @@ -67,14 +69,15 @@ Plant canopy sfc water in m,cnwat,cmc,2d,phy, Frozen precip fraction,cpofp,sr,2d,phy, Sea ice skin temperature,tisfc,ti,2d,phy, Vegetation fraction,veg,vegfrc,2d,phy, -Liquid volumetric soil moisture,soill1/soill2/soill3/soill4,sh2o,2d>3d,phy,all soil levels read into array -Volumetric soil moisture,soilw1/soilw2/soilw3/soilw4.....,smc,2d>3d,phy,"all soil levels read into array, L5-9 RUC only" -Soil temperature,soilt1/soilt2/soilt3/soilt4.....,stc,2d>3d,phy,"all soil levels read into array, L5-9 RUC only" +Liquid volumetric soil moisture,soill1/.../soill4,sh2o,2d,phy,all soil levels read into 3d array +Volumetric soil moisture,soilw1/.../soilw9,smc,2d,phy,"all soil levels read into 3d array, L5-9 RUC only" +Soil temperature,soilt1/.../soilt9,stc,2d,phy,"all soil levels read into 3d array, L5-9 RUC only" Time averaged incoming surface longwave,dlwrf_ave,alwin,2d,phy, Instantaneous incoming surface longwave,dlwrf,rlwin,2d,phy, Time averaged outgoing surface longwave,ulwrf_ave,alwout,2d,phy, Instataneous outgoing surface longwave,ulwrf,radot,2d,phy, Time average outgoing model top longwave,ulwrf_avetoa,alwtoa,2d,phy, +Instantaneous outgoing model top longwave,ulwrf_toa,rlwtoa,2d,phy, Time averaged incoming surface shortwave,dswrf_ave,aswin,2d,phy, Instantaneous incoming surface shortwave,dswrf,rswin,2d,phy, Time averaged incoming sfc uv-b,duvb_ave,auvbin,2d,phy, @@ -101,6 +104,7 @@ Instantaneous potential evaporation,pevpr,potevp,2d,phy, 10 m v-wind component,vgrd10m,v10,2d,phy, Vegetation type,vtype,ivgtyp,2d,phy, Soil type,sotyp,isltyp,2d,phy, +Soil moisture availability,wetness,smstav,2d,phy,not GFS**GFS does not have soil moisture availability???** Instantaneous convective cloud top pressure,prescnvclt,ptop,2d,phy, Instantaneous convective cloud bottom pressure,prescnvclb,pbot,2d,phy, Time averaged low cloud top pressure,pres_avelct,ptopl,2d,phy, @@ -148,97 +152,55 @@ Averaged precipitation advected heat flux,pah_ave,paha,2d,phy, Instantaneous precipitation advected heat flux,pahi,pahi,2d,phy, Plant transpiration,trans_ave,avgetrans,2d,phy, Snow sublimation,sbsno_ave,avgesnow,2d,phy, -Total soil moisture,soilm,smstot,2d,phy, +Total soil moisture,soilm,smstot,2d,phy,not GFS Snow phase change heat flux,snohf,snopcx,2d,phy, Precipitable water,pwat,pwat,2d,phy, -AQF chemical species,aalk1j,aalk1j,3d,dyn,aqfcmaq_on = True -,aalk2j,aalk2j,3d,dyn,aqfcmaq_on = True -,abnz1j,abnz1j,3d,dyn,aqfcmaq_on = True -,abnz2j,abnz2j,3d,dyn,aqfcmaq_on = True -,abnz3j,abnz3j,3d,dyn,aqfcmaq_on = True -,acaj,acaj,3d,dyn,aqfcmaq_on = True -,acet,acet,3d,dyn,aqfcmaq_on = True -,acli,acli,3d,dyn,aqfcmaq_on = True -,aclj,aclj,3d,dyn,aqfcmaq_on = True -,aclk,aclk,3d,dyn,aqfcmaq_on = True -,acors,acors,3d,dyn,aqfcmaq_on = True -,acro_primary,acro_primary,3d,dyn,aqfcmaq_on = True -,acrolein,acrolein,3d,dyn,aqfcmaq_on = True -,aeci,aeci,3d,dyn,aqfcmaq_on = True -,aecj,aecj,3d,dyn,aqfcmaq_on = True -,afej,afej,3d,dyn,aqfcmaq_on = True -,aglyj,aglyj,3d,dyn,aqfcmaq_on = True -,ah2oi,ah2oi,3d,dyn,aqfcmaq_on = True -,ah2oj,ah2oj,3d,dyn,aqfcmaq_on = True -,ah2ok,ah2ok,3d,dyn,aqfcmaq_on = True -,ah3opi,ah3opi,3d,dyn,aqfcmaq_on = True -,ah3opj,ah3opj,3d,dyn,aqfcmaq_on = True -,ah3opk,ah3opk,3d,dyn,aqfcmaq_on = True -,aiso1j,aiso1j,3d,dyn,aqfcmaq_on = True -,aiso2j,aiso2j,3d,dyn,aqfcmaq_on = True -,aiso3j,aiso3j,3d,dyn,aqfcmaq_on = True -,aivpo1j,aivpo1j,3d,dyn,aqfcmaq_on = True -,akj,akj,3d,dyn,aqfcmaq_on = True -,ald2,ald2,3d,dyn,aqfcmaq_on = True -,ald2_primary,ald2_primary,3d,dyn,aqfcmaq_on = True -,aldx,aldx,3d,dyn,aqfcmaq_on = True -,alvoo1i,alvoo1i,3d,dyn,aqfcmaq_on = True -,alvoo1j,alvoo1j,3d,dyn,aqfcmaq_on = True -,alvoo2i,alvoo2i,3d,dyn,aqfcmaq_on = True -,alvoo2j,alvoo2j,3d,dyn,aqfcmaq_on = True -,alvpo1i,alvpo1i,3d,dyn,aqfcmaq_on = True -,alvpo1j,alvpo1j,3d,dyn,aqfcmaq_on = True -,amgj,amgj,3d,dyn,aqfcmaq_on = True -,amnj,amnj,3d,dyn,aqfcmaq_on = True -,anai,anai,3d,dyn,aqfcmaq_on = True -,anaj,anaj,3d,dyn,aqfcmaq_on = True -,anh4i,anh4i,3d,dyn,aqfcmaq_on = True -,anh4j,anh4j,3d,dyn,aqfcmaq_on = True -,anh4k,anh4k,3d,dyn,aqfcmaq_on = True -,ano3i,ano3i,3d,dyn,aqfcmaq_on = True -,ano3j,ano3j,3d,dyn,aqfcmaq_on = True -,ano3k,ano3k,3d,dyn,aqfcmaq_on = True -,aolgaj,aolgaj,3d,dyn,aqfcmaq_on = True -,aolgbj,aolgbj,3d,dyn,aqfcmaq_on = True -,aorgcj,aorgcj,3d,dyn,aqfcmaq_on = True -,aothri,aothri,3d,dyn,aqfcmaq_on = True -,aothrj,aothrj,3d,dyn,aqfcmaq_on = True -,apah1j,apah1j,3d,dyn,aqfcmaq_on = True -,apah2j,apah2j,3d,dyn,aqfcmaq_on = True -,apah3j,apah3j,3d,dyn,aqfcmaq_on = True -,apcsoj,apcsoj,3d,dyn,aqfcmaq_on = True -,aseacat,aseacat,3d,dyn,aqfcmaq_on = True -,asij,asij,3d,dyn,aqfcmaq_on = True -,aso4i,aso4i,3d,dyn,aqfcmaq_on = True -,aso4j,aso4j,3d,dyn,aqfcmaq_on = True -,aso4k,aso4k,3d,dyn,aqfcmaq_on = True -,asoil,asoil,3d,dyn,aqfcmaq_on = True -,asqtj,asqtj,3d,dyn,aqfcmaq_on = True -,asvoo1i,asvoo1i,3d,dyn,aqfcmaq_on = True -,asvoo1j,asvoo1j,3d,dyn,aqfcmaq_on = True -,asvoo2i,asvoo2i,3d,dyn,aqfcmaq_on = True -,asvoo2j,asvoo2j,3d,dyn,aqfcmaq_on = True -,asvoo3j,asvoo3j,3d,dyn,aqfcmaq_on = True -,asvpo1i,asvpo1i,3d,dyn,aqfcmaq_on = True -,asvpo1j,asvpo1j,3d,dyn,aqfcmaq_on = True -,asvpo2i,asvpo2i,3d,dyn,aqfcmaq_on = True -,asvpo2j,asvpo2j,3d,dyn,aqfcmaq_on = True -,asvpo3j,asvpo3j,3d,dyn,aqfcmaq_on = True -,atij,atij,3d,dyn,aqfcmaq_on = True -,atol1j,atol1j,3d,dyn,aqfcmaq_on = True -,atol2j,atol2j,3d,dyn,aqfcmaq_on = True -,atol3j,atol3j,3d,dyn,aqfcmaq_on = True -,atrp1j,atrp1j,3d,dyn,aqfcmaq_on = True -,atrp2j,atrp2j,3d,dyn,aqfcmaq_on = True -,axyl1j,axyl1j,3d,dyn,aqfcmaq_on = True -,axyl2j,axyl2j,3d,dyn,aqfcmaq_on = True -,axyl3j,axyl3j,3d,dyn,aqfcmaq_on = True -,pm25ac,pm25ac,3d,dyn,aqfcmaq_on = True -,pm25at,pm25at,3d,dyn,aqfcmaq_on = True -,pm25co,pm25co,3d,dyn,aqfcmaq_on = True +Average ozone concentration,o3_ave,avgozcon,3d,dyn,aqf_on=True +Average particulate matter (fine),pm25_ave,avgpmtf,3d,dyn,aqf_on=True +Aerosol optical depth,aod,aqm_aod550,2d,phy,aqf_on=True Instantaneous aod550 optical depth,aod550,aod550,2d,phy,rdaod = True ,du_aod550,du_aod550,2d,phy,rdaod = True ,ss_aod550,ss_aod550,2d,phy,rdaod = True ,su_aod550,su_aod550,2d,phy,rdaod = True ,oc_aod550,oc_aod550,2d,phy,rdaod = True ,bc_aod550,bc_aod550,2d,phy,rdaod = True +Dust 1,dust1,dt1,3d,dyn,GOCART +Dust 2,dust2,dt2,3d,dyn,GOCART +Dust 3,dust3,dt3,3d,dyn,GOCART +Dust 4,dust4,dt4,3d,dyn,GOCART +Dust 5,dust5,dt5,3d,dyn,GOCART +Sea salt (1-5),seas1/.../seas5,salt,3d,dyn,GOCART - all requested read into 4d array +Black carbon,bc1/bc2,soot,3d,dyn,GOCART - all requested read into 4d array +Organic carbon,oc1/oc2,waso,3d,dyn,GOCART - all requested read into 4d array +Sulfate,sulf,suso,3d,dyn,gocart_on=True or gccpp_on=True +Sulfate,so4,suso,3d,dyn,nasa_on=True +Nitrate,no3an1/no3an2/no3an3,no3,3d,dyn,GOCART - all requested read into 4d array +NH4,nh4a,nh4,3d,dyn,GOCART +**Particulate matter (PP25) (???)**,pp25,pp25,3d,dyn,gocart_on=True +**Particulate matter (PM25) (???)**,pm25,pp25,3d,dyn,nasa_on=True +**Particulate matter (PP10) (???)**,pp10,pp10,3d,dyn,gocart_on=True +**Particulate matter (PM10) (???)**,pm10,pp10,3d,dyn,nasa_on=True +Dust emission fluxes (1-5),duem001/.../duem005,duem,2d,phy, all requested read into 3d array +Dust sedimentation fluxes (1-5),dust1sd/.../dust5sd, dusd,2d, phy, all requested read into 3d array +Dust dry deposition fluxes (1-5),dust1dp/.../dust5dp,dupd,2d,phy, all requested read into 3d array +Dust wet deposition fluxes (1-5),dust1wtl/.../dust5wtl,duwt,2d,phy, all requested read into 3d array +Dust scavenging fluxes (1-5),dust1wtc/.../dust5wtc,dusv,2d,phy, all requested read into 3d array +Seasalt emission fluxes (1-5),ssem001/.../ssem005,ssem,2d,phy, all requested read into 3d array +Seasalt emission fluxes (1-5) **Should these be Seasalt sedimentation fluxes???**,seas1sd/.../seas5sd,sssd,2d,phy, all requested read into 3d array +Seasalt dry deposition fluxes (1-5),seas1dp/.../seas5dp,ssdp,2d,phy,all requested read into 3d array +Seasalt wet deposition fluxes (1-5),seas1wtl/.../seas5wtl,sswt,2d,phy,all requested read into 3d array +Seasalt scavenging fluxes (1-5),seas1wtc,sssv,2d,phy,all requested read into 3d array +Black carbon emission fluxes,bceman,bcem,2d,phy,all requested read into 3d array +Black carbon emission fluxes,bcembb,bcem,2d,phy,all requested read into 3d array +Black carbon sedimentation fluxes,bc1sd/bc2sd,bcsd,2d,phy,all requested read into 3d array +Black carbon dry deposition fluxes,bc1dp/bc2dp,bcdp,2d,phy,all requested read into 3d array +Black carbon large wet deposition fluxes,bc1wtl/bc2wtl,bcwt,2d,phy,all requested read into 3d array +Black carbon convective wet deposition fluxes,bc1wtc/bc2wtc,bcsv,2d,phy,all requested read into 3d array +Organic carbon emission fluxes,oceman,ocem,2d,phy,all requested read into 3d array +Organic carbon emission fluxes,ocembb,ocem,2d,phy,all requested read into 3d array +Organic carbon sedimentation fluxes,oc1sd/oc2sd,ocsd,2d,phy,all requested read into 3d array +Organic carbon dry deposition fluxes,oc1dp/oc2dp,ocdp,2d,phy,all requested read into 3d array +Organic carbon large wet deposition fluxes,oc1wtl/oc2wtl,ocwt,2d,phy,all requested read into 3d array +Organic carbon convective wet deposition fluxes,oc1wtc/oc2wtc,ocsv,2d,phy,all requested read into 3d array +**MIE AOD ???**,maod,maod,2d,phy, + From 5a02e28ef31a07c380796443b765de9322523cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 5 Jun 2023 20:49:55 -0400 Subject: [PATCH 13/44] Add/rm unified vars from PRs 600,620,640,643,675,695 --- docs/UFS_unified_variables_table.csv | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/docs/UFS_unified_variables_table.csv b/docs/UFS_unified_variables_table.csv index d8f871c81..6214b8d7b 100644 --- a/docs/UFS_unified_variables_table.csv +++ b/docs/UFS_unified_variables_table.csv @@ -14,6 +14,10 @@ Snow mixing ratio,snmr,qqs,3d,dyn, Graupel mixing ratio,grle,qqg,3d,dyn, Instantaneous 3d cloud fraction,cld_amt,cfr,3d,dyn,imp_physics = 11 Instantaneous 3d cloud fraction,cldfra,cfr,3d,phy,imp_physics ≠ 11 +Instantaneous 3d cloud fraction,cldfra_bl,cfr,3d,phy,imp_physics ≠ 11 +Thompson scheme cloud ice effective radius,cieffr,effri,3d,phy +Thompson scheme cloud water effective radius,cleffr,effrl,3d,phy +Thompson scheme snow effective radius,cseffr,effrs,3d,phy Max hourly updraft velocity,upvvelmax,w_up_max,2d,dyn,regional FV3 Max hourly downdraft velocity,dnvvelmax,w_dn_max,2d,dyn,regional FV3 Max hourly updraft helicity,uhmax25,up_heli_max,2d,dyn,regional FV3 @@ -25,6 +29,10 @@ Max 0-2km relative vorticity max,maxvort02,rel_vort_max,2d,dyn,regional FV3 Max hybrid level 1 relative vorticity max,maxvorthy1,rel_vort_maxhy1,2d,dyn,regional FV3 Biomass burning emissions,ebb_smoke_hr,ebb,2d,phy,regional FV3 Hourly wildfire potential,hwp,hwp,2d,phy,regional FV3 +Lightning threat index 1,ltg1_max,ltg1_max,2d,phy,regional FV3 +Lightning threat index 2,ltg2_max,ltg2_max,2d,phy,regional FV3 +Lightning threat index 3,ltg3_max,ltg3_max,2d,phy,regional FV3 +Surface pressure,pressfc,"pint(:,:,LM+1)",2d,dyn,regional FV3 Surface height,hgtsfc,"zint(:,:,LM+1)",2d,dyn, Reflectivity,refl_10cm,REF_10CM,3d,phy, Turbulence kinetic energy,qke,q2,3d,phy, @@ -36,6 +44,14 @@ PBL height,hpbl,pblh,2d,phy, Frictional velocity,fricv,ustar,2d,phy, Roughness length,sfcr,z0,2d,phy, Surface exchange coefficient,sfexc,SFCEXC,2d,phy, +Accumulated snowfall,tsnowp,SNOW_ACM,2d,phy +Snowfall bucket,tsnowpb,SNOW_BKT,2d,phy +Accumulated graupel/sleet,frozr,acgraup,2d,phy, +Graupel/sleet bucket,frozrb,graup_bucket,2d,phy, +Accumulated freezing rain,frzr,acfrain,2d,phy, +Freezing rain bucket,frzrb,frzrn_bucket,2d,phy, +Time step snow (in m),snow,snownc,2d,phy, +Time step graupel (in m),graupel,graupelnc,2d,phy, Aerodynamic conductance,acond,acond,2d,phy, Mid day avg albedo,albdo_ave,avgalbedo,2d,phy, Surface potential temperature,tmpsfc,ths,2d,phy, @@ -104,7 +120,7 @@ Instantaneous potential evaporation,pevpr,potevp,2d,phy, 10 m v-wind component,vgrd10m,v10,2d,phy, Vegetation type,vtype,ivgtyp,2d,phy, Soil type,sotyp,isltyp,2d,phy, -Soil moisture availability,wetness,smstav,2d,phy,not GFS**GFS does not have soil moisture availability???** +Soil moisture availability,wetness,smstav,2d,phy,**not GFS** Instantaneous convective cloud top pressure,prescnvclt,ptop,2d,phy, Instantaneous convective cloud bottom pressure,prescnvclb,pbot,2d,phy, Time averaged low cloud top pressure,pres_avelct,ptopl,2d,phy, @@ -181,7 +197,7 @@ NH4,nh4a,nh4,3d,dyn,GOCART **Particulate matter (PP10) (???)**,pp10,pp10,3d,dyn,gocart_on=True **Particulate matter (PM10) (???)**,pm10,pp10,3d,dyn,nasa_on=True Dust emission fluxes (1-5),duem001/.../duem005,duem,2d,phy, all requested read into 3d array -Dust sedimentation fluxes (1-5),dust1sd/.../dust5sd, dusd,2d, phy, all requested read into 3d array +Dust sedimentation fluxes (1-5),dust1sd/.../dust5sd,dusd,2d, phy, all requested read into 3d array Dust dry deposition fluxes (1-5),dust1dp/.../dust5dp,dupd,2d,phy, all requested read into 3d array Dust wet deposition fluxes (1-5),dust1wtl/.../dust5wtl,duwt,2d,phy, all requested read into 3d array Dust scavenging fluxes (1-5),dust1wtc/.../dust5wtc,dusv,2d,phy, all requested read into 3d array @@ -203,4 +219,3 @@ Organic carbon dry deposition fluxes,oc1dp/oc2dp,ocdp,2d,phy,all requested read Organic carbon large wet deposition fluxes,oc1wtl/oc2wtl,ocwt,2d,phy,all requested read into 3d array Organic carbon convective wet deposition fluxes,oc1wtc/oc2wtc,ocsv,2d,phy,all requested read into 3d array **MIE AOD ???**,maod,maod,2d,phy, - From c5f5218e6e7fb0db1bd39172425442a8386d942a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 6 Jun 2023 14:00:46 -0400 Subject: [PATCH 14/44] Add/rm unified vars from PRs 601, 693 --- docs/UFS_unified_variables_table.csv | 31 +++++++++++++++------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/docs/UFS_unified_variables_table.csv b/docs/UFS_unified_variables_table.csv index 6214b8d7b..b46860443 100644 --- a/docs/UFS_unified_variables_table.csv +++ b/docs/UFS_unified_variables_table.csv @@ -14,7 +14,7 @@ Snow mixing ratio,snmr,qqs,3d,dyn, Graupel mixing ratio,grle,qqg,3d,dyn, Instantaneous 3d cloud fraction,cld_amt,cfr,3d,dyn,imp_physics = 11 Instantaneous 3d cloud fraction,cldfra,cfr,3d,phy,imp_physics ≠ 11 -Instantaneous 3d cloud fraction,cldfra_bl,cfr,3d,phy,imp_physics ≠ 11 +Instantaneous 3d cloud fraction from boundary layer scheme,cldfra_bl,cfr,3d,phy,imp_physics ≠ 11 Thompson scheme cloud ice effective radius,cieffr,effri,3d,phy Thompson scheme cloud water effective radius,cleffr,effrl,3d,phy Thompson scheme snow effective radius,cseffr,effrs,3d,phy @@ -33,7 +33,8 @@ Lightning threat index 1,ltg1_max,ltg1_max,2d,phy,regional FV3 Lightning threat index 2,ltg2_max,ltg2_max,2d,phy,regional FV3 Lightning threat index 3,ltg3_max,ltg3_max,2d,phy,regional FV3 Surface pressure,pressfc,"pint(:,:,LM+1)",2d,dyn,regional FV3 -Surface height,hgtsfc,"zint(:,:,LM+1)",2d,dyn, +Surface height,hgtsfc,"zint(:,:,LM+1)",2d,dyn,regional FV3 +Unified extinction ext550/Aerosol optical depth,recname(18),ext550,3d,phy,regional FV3 Reflectivity,refl_10cm,REF_10CM,3d,phy, Turbulence kinetic energy,qke,q2,3d,phy, Ice-friendly aerosol number concentration,nifa,qqnwfa,3d,phy, @@ -120,7 +121,9 @@ Instantaneous potential evaporation,pevpr,potevp,2d,phy, 10 m v-wind component,vgrd10m,v10,2d,phy, Vegetation type,vtype,ivgtyp,2d,phy, Soil type,sotyp,isltyp,2d,phy, -Soil moisture availability,wetness,smstav,2d,phy,**not GFS** +Soil moisture availability,wetness,smstav,2d,phy,not GFS +Accumulated snow depth over land,snacc_land,for computing *sndepac*,2d,phy, +Accumulated snow depth over ice,snacc_ice,for computing *sndepac*,2d,phy, Instantaneous convective cloud top pressure,prescnvclt,ptop,2d,phy, Instantaneous convective cloud bottom pressure,prescnvclb,pbot,2d,phy, Time averaged low cloud top pressure,pres_avelct,ptopl,2d,phy, @@ -175,11 +178,11 @@ Average ozone concentration,o3_ave,avgozcon,3d,dyn,aqf_on=True Average particulate matter (fine),pm25_ave,avgpmtf,3d,dyn,aqf_on=True Aerosol optical depth,aod,aqm_aod550,2d,phy,aqf_on=True Instantaneous aod550 optical depth,aod550,aod550,2d,phy,rdaod = True -,du_aod550,du_aod550,2d,phy,rdaod = True -,ss_aod550,ss_aod550,2d,phy,rdaod = True -,su_aod550,su_aod550,2d,phy,rdaod = True -,oc_aod550,oc_aod550,2d,phy,rdaod = True -,bc_aod550,bc_aod550,2d,phy,rdaod = True +Instantaneous aod550 optical depth (dust),du_aod550,du_aod550,2d,phy,rdaod = True +Instantaneous aod550 optical depth (seasalt),ss_aod550,ss_aod550,2d,phy,rdaod = True +Instantaneous aod550 optical depth (sulfates),su_aod550,su_aod550,2d,phy,rdaod = True +Instantaneous aod550 optical depth (organic carbon),oc_aod550,oc_aod550,2d,phy,rdaod = True +Instantaneous aod550 optical depth (black carbon),bc_aod550,bc_aod550,2d,phy,rdaod = True Dust 1,dust1,dt1,3d,dyn,GOCART Dust 2,dust2,dt2,3d,dyn,GOCART Dust 3,dust3,dt3,3d,dyn,GOCART @@ -192,17 +195,17 @@ Sulfate,sulf,suso,3d,dyn,gocart_on=True or gccpp_on=True Sulfate,so4,suso,3d,dyn,nasa_on=True Nitrate,no3an1/no3an2/no3an3,no3,3d,dyn,GOCART - all requested read into 4d array NH4,nh4a,nh4,3d,dyn,GOCART -**Particulate matter (PP25) (???)**,pp25,pp25,3d,dyn,gocart_on=True -**Particulate matter (PM25) (???)**,pm25,pp25,3d,dyn,nasa_on=True -**Particulate matter (PP10) (???)**,pp10,pp10,3d,dyn,gocart_on=True -**Particulate matter (PM10) (???)**,pm10,pp10,3d,dyn,nasa_on=True +Particulate matter (PP25),pp25,pp25,3d,dyn,gocart_on=True +Particulate matter (PM25),pm25,pp25,3d,dyn,nasa_on=True +Particulate matter (PP10),pp10,pp10,3d,dyn,gocart_on=True +Particulate matter (PM10),pm10,pp10,3d,dyn,nasa_on=True Dust emission fluxes (1-5),duem001/.../duem005,duem,2d,phy, all requested read into 3d array Dust sedimentation fluxes (1-5),dust1sd/.../dust5sd,dusd,2d, phy, all requested read into 3d array Dust dry deposition fluxes (1-5),dust1dp/.../dust5dp,dupd,2d,phy, all requested read into 3d array Dust wet deposition fluxes (1-5),dust1wtl/.../dust5wtl,duwt,2d,phy, all requested read into 3d array Dust scavenging fluxes (1-5),dust1wtc/.../dust5wtc,dusv,2d,phy, all requested read into 3d array Seasalt emission fluxes (1-5),ssem001/.../ssem005,ssem,2d,phy, all requested read into 3d array -Seasalt emission fluxes (1-5) **Should these be Seasalt sedimentation fluxes???**,seas1sd/.../seas5sd,sssd,2d,phy, all requested read into 3d array +Seasalt **emission/sedimentation** fluxes (1-5),seas1sd/.../seas5sd,sssd,2d,phy, all requested read into 3d array Seasalt dry deposition fluxes (1-5),seas1dp/.../seas5dp,ssdp,2d,phy,all requested read into 3d array Seasalt wet deposition fluxes (1-5),seas1wtl/.../seas5wtl,sswt,2d,phy,all requested read into 3d array Seasalt scavenging fluxes (1-5),seas1wtc,sssv,2d,phy,all requested read into 3d array @@ -218,4 +221,4 @@ Organic carbon sedimentation fluxes,oc1sd/oc2sd,ocsd,2d,phy,all requested read i Organic carbon dry deposition fluxes,oc1dp/oc2dp,ocdp,2d,phy,all requested read into 3d array Organic carbon large wet deposition fluxes,oc1wtl/oc2wtl,ocwt,2d,phy,all requested read into 3d array Organic carbon convective wet deposition fluxes,oc1wtc/oc2wtc,ocsv,2d,phy,all requested read into 3d array -**MIE AOD ???**,maod,maod,2d,phy, +Mie-based aerosol optical depth,maod,maod,2d,phy, From 5f1d00d07e844ba30f3655e3a0708526a0a34680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 7 Jun 2023 15:17:27 -0400 Subject: [PATCH 15/44] updates to table of Grib2 fields produced by UPP --- docs/UPP_GRIB2_Table.csv | 440 +++++++++++++++++++-------------------- docs/UPP_GRIB2_Table.rst | 5 +- 2 files changed, 222 insertions(+), 223 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index c2f50fcb5..d69985d6a 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -228,8 +228,8 @@ Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,118 Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,122 Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,123 Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,172 -GSD Cloud Base pressure,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 -GSD Cloud Top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 +Global Systems Division (GSD) cloud Base pressure,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 +GSD Cloud top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,79 Average snow phase change heat flux,AVE_SNOHF_ON_SURFACE,SNOHF,136 @@ -307,7 +307,7 @@ Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,269 Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,270 Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,271 Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,272 -**Pressure on ???**,PRES_ON_HYBRID_LVL_LLM,PRES,273 +**Sigma pressure thickness requested by CMAQ ???**,PRES_ON_HYBRID_LVL_LLM,PRES,273 Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,274 Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,275 Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,282 @@ -317,7 +317,7 @@ Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,278 Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,279 Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,280 Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,281 -**Pressure on ???**,PRES_ON_HYBRID_LVL_1L,PRES,283 +**Pressure thickness requested by CMAQ ???**,PRES_ON_HYBRID_LVL_1L,PRES,283 Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,284 Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,285 Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,286 @@ -330,7 +330,7 @@ Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,292 Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,293 Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,294 Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,295 -**Temperature on ???**,TMP_ON_SIGMA_LVL_HPC,TMP,296 +**Temperature on sigma levels ???**,TMP_ON_SIGMA_LVL_HPC,TMP,296 Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,297 Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,298 Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,299 @@ -372,7 +372,7 @@ Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,334 Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,335 Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 -**???**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 +**Lapse rate on theta surface ???**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,336 V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,337 Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,338 @@ -389,31 +389,31 @@ Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 Ice thickness,ICETK_ON_SURFACE,ICETK,349 Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 -**???**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 +**Vertical diffusion tendency on pressure surface???**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 -**???**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 +**Vertical diffusion moistening on pressure surface???**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 -**???**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 -**???**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 -**???**,POZ_ON_ISOBARIC_SFC,POZ,365 +**Large scale moistening on pressure surface???**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 +**Ozone vertical diffusion on pressure surface???**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 +**Ozone production on pressure surface???**,POZ_ON_ISOBARIC_SFC,POZ,365 Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 -**???**,SNOT_ON_ISOBARIC_SFC,SNOT,368 -**???**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 -**???**,GWDU_ON_ISOBARIC_SFC,GWDU,370 -**???**,CNVU_ON_ISOBARIC_SFC,CNVU,371 -**???**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 -**???**,GWDV_ON_ISOBARIC_SFC,GWDV,373 -**???**,CNVV_ON_ISOBARIC_SFC,CNVV,374 -**???**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +**Snow temperature on pressure surface???**,SNOT_ON_ISOBARIC_SFC,SNOT,368 +**Vertical diffusion zonal acceleration on pressure surface???**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 +**Gravity wave drag zonal acceleration on pressure surface???**,GWDU_ON_ISOBARIC_SFC,GWDU,370 +**Convective zonal momentum mixing acceleration on pressure surface???**,CNVU_ON_ISOBARIC_SFC,CNVU,371 +**Vertical diffusion meridional acceleration on pressure surface???**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 +**Gravity wave drag meridional acceleration on pressure surface???**,GWDV_ON_ISOBARIC_SFC,GWDV,373 +**Convective meridional momentum mixing acceleration on pressure surface???**,CNVV_ON_ISOBARIC_SFC,CNVV,374 +**Non-Convective Cloud Cover% on pressure surface???**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 -**???**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 -**???**,VEDH_ON_HYBRID_LVL,VEDH,380 +**Temperature tendency by all physics on pressure surface???**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 +**Vertical eddy diffusivity heat exchange on model surface???**,VEDH_ON_HYBRID_LVL,VEDH,380 Mixing height,MIXHT_ON_SURFACE,MIXHT,381 Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,382 Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,383 @@ -424,11 +424,11 @@ Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_AT Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 -**???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 -**???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 -**???**,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 -**???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 -**???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +**Convective updraft mass flux on pressure surface ???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 +**Convective downdraft mass flux on pressure surface ???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 +**Convective detrainment mass flux (kg m-2 s-1) on pressure surface ???**,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 +**Convective gravity grag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +**Convective gravity grag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 Field capacity,FLDCP_ON_SURFACE,FLDCP,397 ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 @@ -439,7 +439,7 @@ Time averaged surface Visible diffuse downward solar flux,AVE_VDDSF_ON_SURFACE,V Time averaged surface Near IR beam downward solar flux,AVE_NBDSF_ON_SURFACE,NBDSF,403 Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,NDDSF,404 Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,405 -**???**,GSD_INST_CRAIN_ON_SURFACE,CRAIN,407 +GSD Instant precipitation type on surface,GSD_INST_CRAIN_ON_SURFACE,CRAIN,407 Dust 1 on pressure surface,DUST1_ON_ISOBARIC_LVL,MASSMR,438 Dust 2 on pressure surface,DUST2_ON_ISOBARIC_LVL,MASSMR,439 Dust 3 on pressure surface,DUST3_ON_ISOBARIC_LVL,MASSMR,440 @@ -447,10 +447,10 @@ Dust 4 on pressure surface,DUST4_ON_ISOBARIC_LVL,MASSMR,441 Dust 5 on pressure surface,DUST5_ON_ISOBARIC_LVL,MASSMR,442 Equilibrium level height,HGT_ON_EQUIL_LVL,HGT,443 Lightning,LTNG_ON_SURFACE,LTNG,444 -Goes west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,446 -Goes west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,447 -Goes west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,448 -Goes west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,449 +GOES west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,446 +GOES west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,447 +GOES west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,448 +GOES west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,449 In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,450 Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,451 Virtual temperature based convective available potential energy,VTCAPE_ON_SURFACE,CAPE,452 @@ -460,24 +460,24 @@ Virtual temperature on pressure surfaces,Not currently available for grib2,NA,91 Virtual temperature on flight levels,Not currently available for grib2,NA,911 Ventilation rate,VRATE_ON_PLANETARY_BOUND_LYR,VRATE,454 Haines index,HINDEX_ON_SURFACE,HINDEX,455 -**???**,EDPARM_ON_ISOBARIC_SFC,EDPARM,464 -**???**,CAT_ON_ISOBARIC_SFC,CATEDR,465 -**???**,MWTURB_ON_ISOBARIC_SFC,MWTURB,466 -**???**,EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,EDPARM,467 -**???**,CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,CATEDR,468 -**???**,MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,MWTURB,469 -**???**,EDPARM_ON_HYBRID_LVL,EDPARM,470 -**???**,CAT_ON_HYBRID_LVL,CATEDR,471 -**???**,MWTURB_ON_HYBRID_LVL,MWTURB,472 -**???**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 -**???**,ICAHT_ON_CB_BASE,ICAHT,474 -**???**,ICAHT_ON_CB_TOP,ICAHT,475 -**???**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 -**???**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 -**???**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 +**GTG EDR turbulence on pressure surface**,EDPARM_ON_ISOBARIC_SFC,EDPARM,464 +**GTG CAT turbulence on pressure surface**,CAT_ON_ISOBARIC_SFC,CATEDR,465 +**GTG MWT turbulence on pressure surface**,MWTURB_ON_ISOBARIC_SFC,MWTURB,466 +**GTG EDR turbulence at specific altitude above mean sea level**,EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,EDPARM,467 +**GTG CAT turbulence at specific altitude above mean sea level**,CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,CATEDR,468 +**GTG MWT turbulence at specific altitude above mean sea level**,MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,MWTURB,469 +**GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 +**GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 +**GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 +**Horizontal extent of cumulonimbus (CB) % ???**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +**Height of base of cumulonimbus ???**,ICAHT_ON_CB_BASE,ICAHT,474 +**Height of top of cumulonimbus ???**,ICAHT_ON_CB_TOP,ICAHT,475 +**GTG EDR turbulence on standard atmospheric isobaric levels???**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 +**GTG CAT turbulence on standard atmospheric isobaric levels???**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 +**GTG MWT turbulence on standard atmospheric isobaric levels???**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 **Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 -**???**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 -**???** Total Icing Potential Diagnostic on standard atmospheric isobaric sfc?,ICIP_ON_ICAO_STD_SFC,ICIP,481 +**GFIP in-flight icing severity on pressure surface**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 +**Total icing potential diagnostic on standard atmospheric isobaric surface ???**,ICIP_ON_ICAO_STD_SFC,ICIP,481 Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,482 Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,500 Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,501 @@ -487,34 +487,34 @@ Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,504 Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,505 Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,506 Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,507 -**???** Maximum Precipitation Rate on surface?,MAX_PRATE_ON_SURFACE,PRATE,508 -**???**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 -**???**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 -**???**,ACOND_ON_SURFACE,ACOND,512 -**???**,AVE_EVCW_ON_SURFACE,EVCW,513 -**???**,AVE_EVBS_ON_SURFACE,EVBS,514 -**???**,AVE_TRANS_ON_SURFACE,TRANS,515 -**???**,AVE_SBSNO_ON_SURFACE,SBSNO,516 -**???**,AVE_PEVPR_ON_SURFACE,PEVPR,517 -**???**,HGT_ON_ICAO_STD_SFC,HGT,518 -**???**,TMP_ON_ICAO_STD_SFC,TMP,519 -**???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 -**???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 +**Maximum instantaneous precipitation rate on surface ???**,MAX_PRATE_ON_SURFACE,PRATE,508 +**Maximum specific humidity at 2m**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 +**Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 +** _____ ???**,ACOND_ON_SURFACE,ACOND,512 +** _____ ???**,AVE_EVCW_ON_SURFACE,EVCW,513 +** _____ ???**,AVE_EVBS_ON_SURFACE,EVBS,514 +** _____ ???**,AVE_TRANS_ON_SURFACE,TRANS,515 +**Sublimation on surface ???**,AVE_SBSNO_ON_SURFACE,SBSNO,516 +**Potential evaporation rate on surface ???**,AVE_PEVPR_ON_SURFACE,PEVPR,517 +**Height on standard atmospheric isobaric levels**,HGT_ON_ICAO_STD_SFC,HGT,518 +**Temperature on standard atmospheric isobaric levels**,TMP_ON_ICAO_STD_SFC,TMP,519 +** U-component wind on standard atmospheric isobaric levels???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 +** V-component wind on standard atmospheric isobaric levels???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 **Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 **Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 **Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 **Bucket snow precipitation on surface**,BUCKET1_WEASD_ON_SURFACE,WEASD,529 **Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 -**???**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 -**???**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 -**???**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 -**???**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 -**???**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 -**???**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 -**???**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 -**???**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 -**???**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 -**???**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 +**Simulated Brightness Temperature for ABI GOES-18, Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 +**Simulated Brightness Temperature for ABI GOES-18, Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 +**Simulated Brightness Temperature for ABI GOES-18, Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 +**Simulated Brightness Temperature for ABI GOES-18, Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 +**Simulated Brightness Temperature for ABI GOES-18, Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 +**Simulated Brightness Temperature for ABI GOES-18, Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 +**Simulated Brightness Temperature for ABI GOES-18, Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 +**Simulated Brightness Temperature for ABI GOES-18, Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 +**Simulated Brightness Temperature for ABI GOES-18, Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 +**Simulated Brightness Temperature for ABI GOES-18, Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 **???**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 **???**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 **???**,GSD_EPOT_ON_SURFACE,EPOT,548 @@ -531,11 +531,11 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **GSD_average Categorical snow on surface**,GSD_AVE_CSNOW_ON_SURFACE,CSNOW,563 **GSD_average Categorical ice pellets on surface**,GSD_AVE_CICEP_ON_SURFACE,CICEP,564 **GSD_average Categorical freezing rain on surface**,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 -**???**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 -**???**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 -**???**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 -**???**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 -**???**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 +**Best boundary layer CAPE**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 +**Best boundary layer CIN**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 +**GFS sea level pressure???**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 +**GFS average total cloud fraction???**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 +**GFS total cloud fraction???**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,456 Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,457 Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,458 @@ -550,7 +550,7 @@ Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9, Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,484 Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,485 Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,486 -**???**,GSD_EXP_CEILING,CEIL,487 +**GSD experimental ceiling diagnostic**,GSD_EXP_CEILING,CEIL,487 **Simulated Brightness Temperature for TMI TRMM channel 6 on top of atmosphere**,TMITB6_ON_TOP_OF_ATMOS,AMSRE9,488 **Simulated Brightness Temperature for TMI TRMM channel 7 on top of atmosphere**,TMITB7_ON_TOP_OF_ATMOS,AMSRE10,489 **Simulated Brightness Temperature for TMI TRMM channel 8 on top of atmosphere**,TMITB8_ON_TOP_OF_ATMOS,AMSRE11,490 @@ -563,16 +563,16 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Simulated Brightness Temperature for SSMIS TB channel 16 on top of atmosphere**,SSMISTB16_ON_TOP_OF_ATMOS,AMSRE10,497 **Simulated Brightness Temperature for SSMIS TB channel 17 on top of atmosphere**,SSMISTB17_ON_TOP_OF_ATMOS,AMSRE11,498 **Simulated Brightness Temperature for SSMIS TB channel 18 on top of atmosphere**,SSMISTB18_ON_TOP_OF_ATMOS,AMSRE12,499 -**???**,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 -**???**,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 +**Flight-level u-component wind**,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 +**Flight-level v-component wind**,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 **???**,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 **???**,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 **???**,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 **Entire Atmosphere Vertically Integrated Liquid (kg/m-2)**,VIL_ON_ENTIRE_ATMOS,VIL,581 -**???**,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 -**???**,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 -**???**,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 -**???**,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 +**Mixed-layer CAPE**,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 +**Mixed-layer CIN**,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 +**Most unstable CAPE**,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 +**Most unstable CIN**,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 **???**,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 **???**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 **???**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 @@ -582,16 +582,16 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **???**,SULFATE_AER_OPT_GFS_at550,AOTK,603 **???**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 **???**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 -**???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 -**???**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 -**???**,SSALBK_ON_HYBRID_LVL,SSALBK,608 -**???**,AER_OPT_DEP_at550,AOTK,609 -**???**,DUST_AER_OPT_DEP_at550,AOTK,610 -**???**,SEASALT_AER_OPT_DEP_at550,AOTK,611 -**???**,SULFATE_AER_OPT_DEP_at550,AOTK,612 -**???**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 -**???**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 -**???**,NITRATE_AER_OPT_DEP_at550,AOTK,615 +** _____ on model surface???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 +** _____ on model surface???**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 +** _____ on model surface???**,SSALBK_ON_HYBRID_LVL,SSALBK,608 +**Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 +**Dust aerosol optical depth at 550nm**,DUST_AER_OPT_DEP_at550,AOTK,610 +**Seasalt aerosol optical depth at 550nm**,SEASALT_AER_OPT_DEP_at550,AOTK,611 +**Sulfate aerosol optical depth at 550nm**,SULFATE_AER_OPT_DEP_at550,AOTK,612 +**Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 +**Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 +**Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 **???**,BC_COL_MASS_DEN,COLMD,616 **???**,OC_COL_MASS_DEN,COLMD,617 **???**,SULF_COL_MASS_DEN,COLMD,618 @@ -599,74 +599,74 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **???**,PM25_SFC_MASS_CON,PMTF,620 **???**,PM10_COL_MASS_DEN,COLMD,621 **???**,PM25_COL_MASS_DEN,COLMD,622 -**???**,AER_OPT_DEP_at340,AOTK,623 -**???**,AER_OPT_DEP_at440,AOTK,624 -**???**,AER_OPT_DEP_at660,AOTK,625 -**???**,AER_OPT_DEP_at860,AOTK,626 -**???**,AER_OPT_DEP_at1630,AOTK,627 -**???**,AER_OPT_DEP_at11100,AOTK,628 -**???**,DUST1_ON_HYBRID_LVL,PMTF,629 -**???**,DUST2_ON_HYBRID_LVL,PMTF,630 -**???**,DUST3_ON_HYBRID_LVL,PMTC,631 -**???**,DUST4_ON_HYBRID_LVL,PMTC,632 -**???**,DUST5_ON_HYBRID_LVL,PMTC,633 -**???**,SEASALT1_ON_HYBRID_LVL,PMTF,634 -**???**,SEASALT2_ON_HYBRID_LVL,PMTF,635 -**???**,SEASALT3_ON_HYBRID_LVL,PMTC,636 -**???**,SEASALT4_ON_HYBRID_LVL,PMTC,637 -**???**,SEASALT5_ON_HYBRID_LVL,PMTC,638 -**???**,SO4_ON_HYBRID_LVL,PMTF,639 -**???**,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 -**???**,OCPHILIC_ON_HYBRID_LVL,PMTF,641 -**???**,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 -**???**,BCPHILIC_ON_HYBRID_LVL,PMTF,643 -**???**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 -**???**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 -**???**,DUST_COL_MASS_DEN,COLMD,646 -**???**,SEAS_COL_MASS_DEN,COLMD,647 -**???**,SINGLE_SCAT_ALBD_at340,SSALBK,648 -**???**,AER_ASYM_FACTOR_at340,ASYSFK,649 -**???**,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 -**???**,DUST_AER_SCAT_OPT_DEP_at550,SCTAOTK,651 -**???**,SEASALT_AER_SCAT_OPT_DEP_at550,SCTAOTK,652 -**???**,SULFATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,653 -**???**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 -**???**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 -**???**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 -**???**,NO3_COL_MASS_DEN,COLMD,657 -**???**,NH4_COL_MASS_DEN,COLMD,658 -**???**,DUST_EMISSION_FLUX,AEMFLX,659 -**???**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 -**???**,DUST DRY DEPOSITION,DDMFLX,661 -**???**,DUST WET DEPOSITION,WLSMFLX,662 -**???**,SEASALT_EMISSION_FLUX,AEMFLX,663 -**???**,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 -**???**,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 -**???**,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 -**???**,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 -**???**,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 -**???**,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 -**???**,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 -**???**,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 -**???**,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 -**???**,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 -**???**,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 -**???**,SULFATE_EMISSION_FLUX,AEMFLX,675 -**???**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 -**???**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 -**???**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 -**???**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 -**???**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 -**???**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 -**???**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 -**???**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 -**???**,SEAS25_SFC_MASS_CON,PMTF,684 -**???**,DUST10_SFC_MASS_CON,PMTC,685 -**???**,DUST25_SFC_MASS_CON,PMTF,686 -**???**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 -**???**,NO3_ON_HYBRID_LVL,PMTF,688 -**???**,NH4_ON_HYBRID_LVL,PMTF,689 -**???**,SU_AER_SFC_MASS_CON,MASSDEN,689 +**Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 +**Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 +**Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 +**Aerosol optical depth at 860nm**,AER_OPT_DEP_at860,AOTK,626 +**Aerosol optical depth at 1630nm**,AER_OPT_DEP_at1630,AOTK,627 +**Aerosol optical depth at 11100nm**,AER_OPT_DEP_at11100,AOTK,628 +**Dust 1 on model surface**,DUST1_ON_HYBRID_LVL,PMTF,629 +**Dust 2 on model surface**,DUST2_ON_HYBRID_LVL,PMTF,630 +**Dust 3 on model surface**,DUST3_ON_HYBRID_LVL,PMTC,631 +**Dust 4 on model surface**,DUST4_ON_HYBRID_LVL,PMTC,632 +**Dust 5 on model surface**,DUST5_ON_HYBRID_LVL,PMTC,633 +**Seasalt 1 on model surface**,SEASALT1_ON_HYBRID_LVL,PMTF,634 +**Seasalt 2 on model surface**,SEASALT2_ON_HYBRID_LVL,PMTF,635 +**Seasalt 3 on model surface**,SEASALT3_ON_HYBRID_LVL,PMTC,636 +**Seasalt 4 on model surface**,SEASALT4_ON_HYBRID_LVL,PMTC,637 +**Seasalt 5 on model surface**,SEASALT5_ON_HYBRID_LVL,PMTC,638 +**SO4 on model surface**,SO4_ON_HYBRID_LVL,PMTF,639 +**Hydrophobic organic carbon on model surface**,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 +**Hydrophilic organic carbon on model surface**,OCPHILIC_ON_HYBRID_LVL,PMTF,641 +**Hydrophobic black carbon on model surface**,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 +**Hydrophilic black carbon on model surface,BCPHILIC_ON_HYBRID_LVL,PMTF,643 +**Air density on model surface**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 +**Layer thickness on model surface**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 +**Dust PM2.5 column mass density**,DUST_COL_MASS_DEN,COLMD,646 +**Sea salt PM2.5 column mass density**,SEAS_COL_MASS_DEN,COLMD,647 +**Aerosol single scattering albedo at 340 nm**,SINGLE_SCAT_ALBD_at340,SSALBK,648 +**Aersol asymmetry factor at 340nm**,AER_ASYM_FACTOR_at340,ASYSFK,649 +**Total aerosol scattering optical depth at 550nm**,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 +**Dust aerosol scattering optical depth at 550nm**,DUST_AER_SCAT_OPT_DEP_at550,SCTAOTK,651 +**Seasalt aerosol scattering optical depth at 550nm**,SEASALT_AER_SCAT_OPT_DEP_at550,SCTAOTK,652 +**Sulfate aerosol scattering optical depth at 550nm**,SULFATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,653 +**Organic carbon aerosol scattering optical depth at 550nm**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 +**Black carbon aerosol scattering optical depth at 550nm**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 +**Angstrom exponent**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 +**NO3 column mass density???**,NO3_COL_MASS_DEN,COLMD,657 +**NH4 column mass density???**,NH4_COL_MASS_DEN,COLMD,658 +**Dust emission flux**,DUST_EMISSION_FLUX,AEMFLX,659 +**Dust sedimentation flux**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 +**Dust dry deposition flux**,DUST DRY DEPOSITION,DDMFLX,661 +**Dust wet deposition flux**,DUST WET DEPOSITION,WLSMFLX,662 +**Seasalt emission flux**,SEASALT_EMISSION_FLUX,AEMFLX,663 +**Seasalt sedimentation flux**,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 +**Seasalt dry deposition flux**,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 +**Seasalt wet deposition flux**,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 +**Black carbon emission flux**,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 +**Black carbon sedimentation flux**,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 +**Black carbon dry deposition flux**,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 +**Black carbon wet deposition flux**,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 +**Organic carbon emission flux**,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 +**Organic carbon sedimentation flux**,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 +**Organic carbon dry deposition flux**,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 +**Organic carbon wet deposition flux**,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 +**Sulfate emission flux**,SULFATE_EMISSION_FLUX,AEMFLX,675 +**Sulfate sedimentation flux**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 +**Sulfate dry deposition flux**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 +**Sulfate wet deposition flux**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 +**Dust scavenging flux???**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 +**Seasalt scavenging flux???**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 +**Black carbon scavenging flux???**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 +**Organic carbon scavenging flux???**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 +**Seasalt coarse aersol mass density concentration on model surface???**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 +**Seasalt 25 mass density concentration on model surface???**,SEAS25_SFC_MASS_CON,PMTF,684 +**Dust 10 mass density concentration on model surface???**,DUST10_SFC_MASS_CON,PMTC,685 +**Dust 25 mass density concentration on model surface???**,DUST25_SFC_MASS_CON,PMTF,686 +**Nitrate aerosol scattering optimal depth at 550nm**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 +**NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 +**NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 +**Sulfate aerosol mass density concentration on model surface???**,SU_AER_SFC_MASS_CON,MASSDEN,689 **???**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 **???**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 **???**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 @@ -676,55 +676,55 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **???**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 **???**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 **???**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 -**???**,MIE_OPT_DEP_at550,AOTK,699 -**???**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 -**???**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 -**???**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 -**???**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 -**???**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 -GSD_Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 -GSD_Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 -GSD_Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 -GSD_Convective Activity Vertical Hydrometeor Flux,GSD_NCA_WQ_ON_ENTIRE_ATMOS,NCAWQ,708 -GSD_Convective Initiation Reflectivity,GSD_NCI_REFL_ON_ENTIRE_ATMOS,TSEC,709 -GSD_Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 -**???**,GSD_EXP_CEILING_2,CEIL,711 -**???**,AER_OPT_AQM_at550,AOTK,712 -**???**,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 +**Mie-based aerosol optical depth at 550nm**,MIE_OPT_DEP_at550,AOTK,699 +**GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 +**GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 +**GSD Max lightning threat 1???**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 +**GSD Max lightning threat 2???**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 +**GSD Max lightning threat 3???**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 +GSD Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 +GSD Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 +GSD Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 +GSD Convective Activity Vertical Hydrometeor Flux,GSD_NCA_WQ_ON_ENTIRE_ATMOS,NCAWQ,708 +GSD Convective Initiation Reflectivity,GSD_NCI_REFL_ON_ENTIRE_ATMOS,TSEC,709 +GSD Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 +**Experimental cloud base height**,GSD_EXP_CEILING_2,CEIL,711 +**AQM aerosol optical depth at 550 nm**,AER_OPT_AQM_at550,AOTK,712 +**Instantaneous all-sky outgoing shortwave flux at model top**,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 **???**,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 **???**,VEG_MIN_ON_SURFACE,VEGMIN,726 **???**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 **???**,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 **???**,VEG_MAX_ON_SURFACE,VEGMAX,729 -**???**,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 -**???**,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 -**???**,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 -**???**,GSD_AVE_DSWRF_ON_SURFACE,DSWRF,733 -**???**,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 -**???**,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 -**???**,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 -**???**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 -**???**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 -**???**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 -**???**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 -**???**,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 -**???**,DUST_ON_HYBRID_LVL,MASSDEN,742 -**???**,DUST_ON_ISOBARIC_SFC,MASSDEN,743 -**???**,DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,744 -**???**,BIOMASS_BURNING_EMISSIONS,AEMFLX,745 -**???**,ACM_GRAUPEL_ON_SURFACE,FROZR,746 +**Time-averaged 10 M wind speed**,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 +**Time-averaged 10 M u-component wind**,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 +**Time-averaged 10 M v-component wind**,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 +**Time-averaged downward short-wave radiation flux**,GSD_AVE_DSWRF_ON_SURFACE,DSWRF,733 +**Time-averaged visible beam downward solar flux**,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 +**Total column aerosol optical depth**,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 +**Total column fire smoke**,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 +**Smoke on model surface???**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 +**Smoke on pressure surface???**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 +**Smoke at 8m above ground???**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 +**Instantaneous mean fire radiative power (FRP)???**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 +**Total column dust**,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 +**Dust on model surface**,DUST_ON_HYBRID_LVL,MASSDEN,742 +**Dust on pressure surface**,DUST_ON_ISOBARIC_SFC,MASSDEN,743 +**Dust at 8m above ground**,DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,744 +**Biomass burning emissions**,BIOMASS_BURNING_EMISSIONS,AEMFLX,745 +**Accumulated graupel**,ACM_GRAUPEL_ON_SURFACE,FROZR,746 Number concentration for cloud water drops on hybrid level,GSD_NCCD_ON_HYBRID_LVL,NCONCD,747 -**???**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,REFD,748 +**Radar reflectivity at 1km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,REFD,748 RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER,GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS,RH_PWAT,749 -**???**,GSD_WV_MIXR_ON_HYBRID_LVL,MIXR,750 -**???**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 +**Water vapor mixing ratio on model surface**,GSD_WV_MIXR_ON_HYBRID_LVL,MIXR,750 +**Virtual potential temperature on model surface**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 Number concentration for ice particles on hybrid level,GSD_NCIP_ON_HYBRID_LVL,NCIP,752 -GSD_pressure on Level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 -**???**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 +GSD pressure on level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 +**Number concentration of rain drops on model surface???**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 -GSD_pressure on Highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 -**???**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 -**???**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 +GSD pressure on highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 +**GSD radar reflectivity at 4km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 +**GSD convective cloud top height???**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 **???**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 **???**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 **???**,GSD_MIXR_ON_SURFACE,MIXR,762 @@ -747,9 +747,9 @@ height on highest tropospheric -20C level,HGT_ON_HGHST_TROP_-20C_LVL,HGT,779 relative humidity on highest tropospheric -20C level,RH_ON_HGHST_TROP_-20C_LVL,RH,780 pressure on highest tropospheric -20C level,PRES_ON_HGHST_TROP_-20C_LVL,PRES,781 **???**,ACM_FRAIN_ON_SURFACE,FRZR,782 -maximum u wind on 10 meter Above Ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 -maximum v wind on 10 meter Above Ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 -maximum reflectivity on -10C suface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 +maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 +maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 +maximum reflectivity on -10C surface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 **???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 **???**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 **???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 @@ -759,17 +759,17 @@ maximum reflectivity on -10C suface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 **???**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 **???**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 **???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 -**???**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 +**Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 **???**,TCDC_ON_BOUND_LYR,TCDC,799 **???**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,800 SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,806 SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,812 SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 -**??? SSMIS F17 (183H 19H 19V 37H 37V 85H 85V)**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 -**???**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 -**???**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 -**???**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 +**Simulated Brightness Temperature for SSMIS-F17, Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 +**Simulated Brightness Temperature for SSMIS-F17, Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 +**Simulated Brightness Temperature for SSMIS-F17, Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 +**Simulated Brightness Temperature for SSMIS-F17, Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,839 SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 @@ -778,17 +778,17 @@ MTSAT2 imager channels 1-4,Not currently available for grib2,NA,860 Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,876 Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,865 Hourly max relative vorticity on hybrid level 1,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1,RELV,890 -**???**,REFD_ON_ISOTHERMAL,REFD,912 -**???**,1H_FFG_EXCEEDANCE,FFLDRO,913 -**???**,ACM_FFG_EXCEEDANCE,FFLDRO,914 -**???**,1H_2YARI_EXCEEDANCE,GWLOWS,915 -**???**,ACM_2YARI_EXCEEDANCE,GWLOWS,916 -**???**,1H_5YARI_EXCEEDANCE,GWLOWS,917 -**???**,ACM_5YARI_EXCEEDANCE,GWLOWS,918 -**???**,1H_10YARI_EXCEEDANCE,GWLOWS,919 -**???**,ACM_10YARI_EXCEEDANCE,GWLOWS,920 -**???**,1H_100YARI_EXCEEDANCE,GWLOWS,921 -**???**,ACM_100YARI_EXCEEDANCE,GWLOWS,922 +**Radar reflectivity at -10C**,REFD_ON_ISOTHERMAL,REFD,912 +**1h precipitation comparison to Flash Flood Guidance (FFG) thresholds**,1H_FFG_EXCEEDANCE,FFLDRO,913 +**Total accumulated precipitation comparison to FFG thresholds**,ACM_FFG_EXCEEDANCE,FFLDRO,914 +**1h precipitation comparison with 2-year Average Recurrence Interval (ARI) threshold**,1H_2YARI_EXCEEDANCE,GWLOWS,915 +**Total accumulated precipitation comparison with 2-year ARI threshold**,ACM_2YARI_EXCEEDANCE,GWLOWS,916 +**1h precipitation comparison with 5-year ARI threshold**,1H_5YARI_EXCEEDANCE,GWLOWS,917 +**Total accumulated precipitation comparison with 5-year ARI threshold**,ACM_5YARI_EXCEEDANCE,GWLOWS,918 +**1h precipitation comparison with 10-year ARI threshold**,1H_10YARI_EXCEEDANCE,GWLOWS,919 +**Total accumulated precipitation comparison with 10-year ARI threshold**,ACM_10YARI_EXCEEDANCE,GWLOWS,920 +**1h precipitation comparison with 100-year ARI threshold**,1H_100YARI_EXCEEDANCE,GWLOWS,921 +**Total accumulated precipitation comparison with 100-year ARI threshold**,ACM_100YARI_EXCEEDANCE,GWLOWS,922 Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,927 Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,928 Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,929 diff --git a/docs/UPP_GRIB2_Table.rst b/docs/UPP_GRIB2_Table.rst index 19aba54ea..d4514a673 100644 --- a/docs/UPP_GRIB2_Table.rst +++ b/docs/UPP_GRIB2_Table.rst @@ -6,9 +6,8 @@ GRIB2 Fields Produced by UPP GRIB2 fields produced by UPP (column 1), abbreviated names used in the *postcntrl.xml* file (column 2), corresponding standard -grib2 pname (column 3), corresponding grib identification number for the -vertical coordinate (column 4), and corresponding array location UPP -uses to store the variable in parallel arrays (column 5). +grib2 pname (column 3), and corresponding array location UPP +uses to store the variable in parallel arrays (column 4). .. csv-table:: :file: UPP_GRIB2_Table.csv From ddf402caedd70fb374fb72079b4576994805b190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 7 Jun 2023 17:21:40 -0400 Subject: [PATCH 16/44] updates to table of Grib2 fields produced by UPP --- docs/UPP_GRIB2_Table.csv | 190 +++++++++++++++++++-------------------- 1 file changed, 95 insertions(+), 95 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index d69985d6a..2b5a5bd99 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -228,7 +228,17 @@ Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,118 Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,122 Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,123 Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,172 -Global Systems Division (GSD) cloud Base pressure,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 +** Global Systems Division (GSD) Minimum updraft helicity 2-5km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 +** GSD Minimum updraft helicity 1-6 km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 +** GSD Maximum updraft helicity 0-2km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 +** GSD Minimum updraft helicity 0-2km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 +** GSD Maximum updraft helicity 0-3km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 +** GSD Minimum updraft helicity 0-3km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 +** GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 +** GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 +** GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 +** GSD Maximum hail diameter at k=1???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 +**Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 GSD Cloud top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,79 @@ -453,8 +463,8 @@ GOES west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,448 GOES west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,449 In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,450 Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,451 -Virtual temperature based convective available potential energy,VTCAPE_ON_SURFACE,CAPE,452 -Virtual temperature based convective inhibition,VTCIN_ON_SURFACE,CIN,453 +Virtual temperature based convective available potential energy (CAPE),VTCAPE_ON_SURFACE,CAPE,452 +Virtual temperature based convective inhibition (CIN),VTCIN_ON_SURFACE,CIN,453 Virtual temperature on model surfaces,Not currently available for grib2,NA,909 Virtual temperature on pressure surfaces,Not currently available for grib2,NA,910 Virtual temperature on flight levels,Not currently available for grib2,NA,911 @@ -515,10 +525,10 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **Simulated Brightness Temperature for ABI GOES-18, Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 **Simulated Brightness Temperature for ABI GOES-18, Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 **Simulated Brightness Temperature for ABI GOES-18, Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 -**???**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 -**???**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 -**???**,GSD_EPOT_ON_SURFACE,EPOT,548 -**???**,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 +**GSD shelter level potential temperature**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 +**GSD shelter level dewpoint depression**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 +**GSD shelter level surface equivalent potential temperature**,GSD_EPOT_ON_SURFACE,EPOT,548 +**Foundation temperature**,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 **Categorical snow on surface**,CSNOW_ON_SURFACE,CSNOW,551 **Categorical ice pellets on surface**,CICEP_ON_SURFACE,CICEP,552 **Categorical freezing rain on surface**,CFRZR_ON_SURFACE,CFRZR,553 @@ -565,26 +575,26 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Simulated Brightness Temperature for SSMIS TB channel 18 on top of atmosphere**,SSMISTB18_ON_TOP_OF_ATMOS,AMSRE12,499 **Flight-level u-component wind**,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 **Flight-level v-component wind**,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 -**???**,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 -**???**,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 -**???**,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 +**Flight level specific humidity**,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 +**Flight level pressure**,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 +**Flight level icing**,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 **Entire Atmosphere Vertically Integrated Liquid (kg/m-2)**,VIL_ON_ENTIRE_ATMOS,VIL,581 **Mixed-layer CAPE**,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 **Mixed-layer CIN**,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 **Most unstable CAPE**,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 **Most unstable CIN**,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 -**???**,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 -**???**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 -**???**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 -**???**,AER_OPT_GFS_at550,AOTK,600 -**???**,DUST_AER_OPT_GFS_at550,AOTK,601 -**???**,SEASALT_AER_OPT_GFS_at550,AOTK,602 -**???**,SULFATE_AER_OPT_GFS_at550,AOTK,603 -**???**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 -**???**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 -** _____ on model surface???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 -** _____ on model surface???**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 -** _____ on model surface???**,SSALBK_ON_HYBRID_LVL,SSALBK,608 +**Flight level temperature**,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 +**Flight level icing**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 +**Ice growth rate**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 +**GFS 2D aerosol optical depth at 550 nm**,AER_OPT_GFS_at550,AOTK,600 +**GFS 2D dust aerosol optical depth at 550 nm???**,DUST_AER_OPT_GFS_at550,AOTK,601 +**GFS 2D seasalt aerosol optical depth at 550 nm???**,SEASALT_AER_OPT_GFS_at550,AOTK,602 +**GFS 2D sulfate aerosol optical depth at 550 nm???**,SULFATE_AER_OPT_GFS_at550,AOTK,603 +**GFS 2D organic carbon aerosol optical depth at 550 nm???**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 +**GFS 2D black carbon aerosol optical depth at 550 nm???**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 +**Aerosol extinction coefficient on model surface???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 +**Asymmetry factor on model surface**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 +**Single scattering albedo on model surface**,SSALBK_ON_HYBRID_LVL,SSALBK,608 **Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 **Dust aerosol optical depth at 550nm**,DUST_AER_OPT_DEP_at550,AOTK,610 **Seasalt aerosol optical depth at 550nm**,SEASALT_AER_OPT_DEP_at550,AOTK,611 @@ -592,13 +602,13 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 **Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 **Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 -**???**,BC_COL_MASS_DEN,COLMD,616 -**???**,OC_COL_MASS_DEN,COLMD,617 -**???**,SULF_COL_MASS_DEN,COLMD,618 -**???**,PM10_SFC_MASS_CON,PMTC,619 -**???**,PM25_SFC_MASS_CON,PMTF,620 -**???**,PM10_COL_MASS_DEN,COLMD,621 -**???**,PM25_COL_MASS_DEN,COLMD,622 +**Black carbon column mass density???**,BC_COL_MASS_DEN,COLMD,616 +**Organic carbon column mass density???**,OC_COL_MASS_DEN,COLMD,617 +**Sulfate column mass density???**,SULF_COL_MASS_DEN,COLMD,618 +**Aerosol surface PM10 mass concentration (ug/m3)**,PM10_SFC_MASS_CON,PMTC,619 +**Aerosol surface PM2.5 mass concentration (ug/m3)**,PM25_SFC_MASS_CON,PMTF,620 +**Total aerosol PM10 column mass density???**,PM10_COL_MASS_DEN,COLMD,621 +**Total aerosol (PM2.5) column mass density???**,PM25_COL_MASS_DEN,COLMD,622 **Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 **Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 **Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 @@ -660,22 +670,22 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Black carbon scavenging flux???**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 **Organic carbon scavenging flux???**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 **Seasalt coarse aersol mass density concentration on model surface???**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 -**Seasalt 25 mass density concentration on model surface???**,SEAS25_SFC_MASS_CON,PMTF,684 +**Seasalt 2.5 mass density concentration on model surface???**,SEAS25_SFC_MASS_CON,PMTF,684 **Dust 10 mass density concentration on model surface???**,DUST10_SFC_MASS_CON,PMTC,685 -**Dust 25 mass density concentration on model surface???**,DUST25_SFC_MASS_CON,PMTF,686 +**Dust 2.5 mass density concentration on model surface???**,DUST25_SFC_MASS_CON,PMTF,686 **Nitrate aerosol scattering optimal depth at 550nm**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 **NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 **NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 -**Sulfate aerosol mass density concentration on model surface???**,SU_AER_SFC_MASS_CON,MASSDEN,689 -**???**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 -**???**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 -**???**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 -**???**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 -**???**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 -**???**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 -**???**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 -**???**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 -**???**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 +**Sulfate aerosol surface mass density concentration???**,SU_AER_SFC_MASS_CON,MASSDEN,689 +**Instantaneous sulfate aerosol surface mass concentration???**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 +**Instantaneous organic carbon aerosol surface mass concentration???**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 +**Instantaneous black carbon aerosol surface mass concentration???**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 +**Instantaneous coarse dust aerosol surface mass concentration???**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 +**Instantaneous fine dust aerosol surface mass concentration???**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 +**Instantaneous coarse seasalt aerosol surface mass concentration???**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 +**Instantaneous fine seasalt aerosol surface mass concentration???**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 +**Instantaneous coarse aerosol surface mass concentration???**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 +**Instantaneous fine aerosol surface mass concentration???**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 **Mie-based aerosol optical depth at 550nm**,MIE_OPT_DEP_at550,AOTK,699 **GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 **GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 @@ -691,11 +701,11 @@ GSD Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 **Experimental cloud base height**,GSD_EXP_CEILING_2,CEIL,711 **AQM aerosol optical depth at 550 nm**,AER_OPT_AQM_at550,AOTK,712 **Instantaneous all-sky outgoing shortwave flux at model top**,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 -**???**,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 -**???**,VEG_MIN_ON_SURFACE,VEGMIN,726 -**???**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 -**???**,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 -**???**,VEG_MAX_ON_SURFACE,VEGMAX,729 +**GSD accumulated depth of snowfall**,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 +**Minimum green vegetation fraction**,VEG_MIN_ON_SURFACE,VEGMIN,726 +**GSD updraft helicity**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 +**Max hail diameter at surface from WRF HAILCAST algorithm**,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 +**Maximum green vegetation fraction**,VEG_MAX_ON_SURFACE,VEGMAX,729 **Time-averaged 10 M wind speed**,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 **Time-averaged 10 M u-component wind**,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 **Time-averaged 10 M v-component wind**,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 @@ -703,10 +713,10 @@ GSD Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 **Time-averaged visible beam downward solar flux**,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 **Total column aerosol optical depth**,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 **Total column fire smoke**,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 -**Smoke on model surface???**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 -**Smoke on pressure surface???**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 -**Smoke at 8m above ground???**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 -**Instantaneous mean fire radiative power (FRP)???**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 +**Smoke on model surface**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 +**Smoke on pressure surface**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 +**Smoke at 8m above ground**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 +**Instantaneous mean fire radiative power (FRP)**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 **Total column dust**,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 **Dust on model surface**,DUST_ON_HYBRID_LVL,MASSDEN,742 **Dust on pressure surface**,DUST_ON_ISOBARIC_SFC,MASSDEN,743 @@ -725,43 +735,33 @@ Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 GSD pressure on highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 **GSD radar reflectivity at 4km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 **GSD convective cloud top height???**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 -**???**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 -**???**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 -**???**,GSD_MIXR_ON_SURFACE,MIXR,762 -**???**,GSD_MIXR_ON_LFC,MIXR,763 -**???**,CSDLF_ON_SURFACE,CSDLF,764 -**???**,CSULF_ON_SURFACE,CSULF,765 -**???**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 -**???**,GSD_NCIFA_ON_HYBRID_LVL,PMTC,767 +**GSD shelter mixing ratio**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 +**GSD snow temperature???**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 +**GSD surface mixing ratio**,GSD_MIXR_ON_SURFACE,MIXR,762 +**GSD mixing ration on level of free convection (LFC)???**,GSD_MIXR_ON_LFC,MIXR,763 +**Instantaneous clear-sky downwelling longwave at the surface**,CSDLF_ON_SURFACE,CSDLF,764 +**Instantaneous clear-sky upwelling longwave at the surface**,CSULF_ON_SURFACE,CSULF,765 +**GSD water-friendly aerosol number concentration on model surface**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 +**GSD ice-friendly aerosol number concentration on model surface**,GSD_NCIFA_ON_HYBRID_LVL,PMTC,767 Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level),GSD_ECHOTOP_ON_CLOUD_TOP,RETOP,768 -**???**,GSD_VIL_ON_ENTIRE_ATMOS,VIL,769 -**???**,GSD_RADARVIL_ON_ENTIRE_ATMOS,RADARVIL,770 -**???**,INST_SWDDNI_ON_SURFACE,VBDSF,772 -**???**,INST_SWDDIF_ON_SURFACE,VDDSF,773 -**???**,FRACCC_ON_HYBRID_LVL,FRACCC,774 -bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 -height on highest tropospheric -10C level,HGT_ON_HGHST_TROP_-10C_LVL,HGT,776 -relative humidity on highest tropospheric -10C level,RH_ON_HGHST_TROP_-10C_LVL,RH,777 -pressure on highest tropospheric -10C level,PRES_ON_HGHST_TROP_-10C_LVL,PRES,778 -height on highest tropospheric -20C level,HGT_ON_HGHST_TROP_-20C_LVL,HGT,779 -relative humidity on highest tropospheric -20C level,RH_ON_HGHST_TROP_-20C_LVL,RH,780 -pressure on highest tropospheric -20C level,PRES_ON_HGHST_TROP_-20C_LVL,PRES,781 -**???**,ACM_FRAIN_ON_SURFACE,FRZR,782 -maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 -maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 -maximum reflectivity on -10C surface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 -**???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 -**???**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 -**???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 -**???**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 -**???**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 -**???**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 -**???**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 -**???**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 -**???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 -**Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 -**???**,TCDC_ON_BOUND_LYR,TCDC,799 -**???**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 +**GSD Vertically integrated liquid in kg/m^2**,GSD_VIL_ON_ENTIRE_ATMOS,VIL,769 +**GSD Vertically integrated liquid based on reflectivity factor in kg/m^2**,GSD_RADARVIL_ON_ENTIRE_ATMOS,RADARVIL,770 +**Instantaneous shortwave surface downward direct normal irradiance**,INST_SWDDNI_ON_SURFACE,VBDSF,772 +**Instantaneous shortwave surface downward diffuse irradiance**,INST_SWDDIF_ON_SURFACE,VDDSF,773 +**Model-state cloud fraction (unprocessed) on model surface**,FRACCC_ON_HYBRID_LVL,FRACCC,774 +Bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 +Height on highest tropospheric -10C level,HGT_ON_HGHST_TROP_-10C_LVL,HGT,776 +Relative humidity on highest tropospheric -10C level,RH_ON_HGHST_TROP_-10C_LVL,RH,777 +Pressure on highest tropospheric -10C level,PRES_ON_HGHST_TROP_-10C_LVL,PRES,778 +Height on highest tropospheric -20C level,HGT_ON_HGHST_TROP_-20C_LVL,HGT,779 +Relative humidity on highest tropospheric -20C level,RH_ON_HGHST_TROP_-20C_LVL,RH,780 +Pressure on highest tropospheric -20C level,PRES_ON_HGHST_TROP_-20C_LVL,PRES,781 +**Accumulated freezing rain**,ACM_FRAIN_ON_SURFACE,FRZR,782 +Maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 +Maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 +Maximum reflectivity on -10C surface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 +**GSD maximum cloud fraction in (PBL + 1 km)**,TCDC_ON_BOUND_LYR,TCDC,799 +**Shelter level apparent temperature**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,800 SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,806 SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,812 @@ -809,14 +809,14 @@ Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA17 Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,944 Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,945 Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,946 -**???**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 -**???**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 -**???**,HGT_ON_LFC,HGT,952 -**???**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 -**???**,DOWNWARD_CAPE,DCAPE,954 -**???**,DENDRITIC_LAYER_DEPTH,LAYTH,955 -**???**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 -**???**,CRITICAL_ANGLE,DCAPE,957 +**CAPE on 0_3KM above ground???**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 +**CIN on 0_3KM above ground???**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 +**LFC height**,HGT_ON_LFC,HGT,952 +**Effective storm relative helicity???**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 +**Downdraft CAPE**,DOWNWARD_CAPE,DCAPE,954 +**Dendritic layer depth**,DENDRITIC_LAYER_DEPTH,LAYTH,955 +**Enhanced stretching potential**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 +**Critical angle**,CRITICAL_ANGLE,DCAPE,957 Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,958 Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,959 Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,960 @@ -827,7 +827,7 @@ Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR1 Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,965 Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,966 Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,967 -**???**,ICETMP_ON_SURFACE,ICETMP,968 +**Sea ice skin temperature**,ICETMP_ON_SURFACE,ICETMP,968 Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,969 Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,970 Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,971 From dcc7d19f046c384572442fc25302af712fbded4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 7 Jun 2023 22:41:44 -0400 Subject: [PATCH 17/44] updates to table of Grib2 fields produced by UPP --- docs/UPP_GRIB2_Table.csv | 74 ++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index 2b5a5bd99..eda3f30a8 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -317,7 +317,7 @@ Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,269 Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,270 Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,271 Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,272 -**Sigma pressure thickness requested by CMAQ ???**,PRES_ON_HYBRID_LVL_LLM,PRES,273 +**Sigma pressure thickness on model surface**,PRES_ON_HYBRID_LVL_LLM,PRES,273 Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,274 Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,275 Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,282 @@ -327,7 +327,7 @@ Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,278 Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,279 Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,280 Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,281 -**Pressure thickness requested by CMAQ ???**,PRES_ON_HYBRID_LVL_1L,PRES,283 +**Pressure thickness on model surface**,PRES_ON_HYBRID_LVL_1L,PRES,283 Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,284 Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,285 Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,286 @@ -838,38 +838,38 @@ Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBT Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,976 Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,977 Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,978 -**???**,EFSH_ON_EFBL,EFSH,979 -**???**,EFSH_ON_EFTL,EFSH,980 -**???**,ELMELT_ON_EFTL,ELMELT,982 -**???**,UESH_ON_EFL,UESH,983 -**???**,VESH_ON_EFL,VESH,984 -**???**,ESHR_ON_EFL,ESHR,985 -**???**,UEID_ON_EFL,UEID,986 -**???**,VEID_ON_EFL,VEID,987 -**???**,E3KH_ON_EFL,E3KH,988 -**???**,STPC_ON_EFL,STPC,989 -**???**,SIGT_ON_EFL,SIGT,990 -**???**,SCCP_ON_EFL,SCCP,991 -**???**,MLFC_ON_EFL,MLFC,992 -**???**,SIGH_ON_EFL,SIGH,993 -**???**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 -**???**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 -**???**,LAND_FRAC,LANDFRC,996 -**???**,INST_PREC_ADVEC_HEAT,PAHFLX,997 -**???**,WATER_AQUIFER,WATERSA,998 -**???**,ACM_EIWATER_ON_SURFACE,EIWATER,999 -**???**,ACM_PLANTTR_ON_SURFACE,PLANTTR,1000 -**???**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 -**???**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 -**???**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 -**???**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 -**???**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 -**???**,SDEN_ON_SURFACE,SDEN,1006 -**???**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 -**???**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 -**???**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 -**???**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 -**???**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 -**???**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 -**???**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 -**???**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 \ No newline at end of file +**Effective surface height on effective layer bottom???**,EFSH_ON_EFBL,EFSH,979 +**Effective surface height on effective layer top???**,EFSH_ON_EFTL,EFSH,980 +**Temperature at EL top???**,ELMELT_ON_EFTL,ELMELT,982 +**U-inflow based to 50% EL shear vector**,UESH_ON_EFL,UESH,983 +**V-inflow based to 50% EL shear vector**,VESH_ON_EFL,VESH,984 +**Inflow based (ESFC) to (50%) EL shear magnitude???**,ESHR_ON_EFL,ESHR,985 +**U-component Bunkers Effective right motion???**,UEID_ON_EFL,UEID,986 +**V-component Bunkers Effective right motion???**,VEID_ON_EFL,VEID,987 +**Effective layer helicity???**,E3KH_ON_EFL,E3KH,988 +**Effective layer significant tornado parameter with CIN**,STPC_ON_EFL,STPC,989 +**Fixed layer tornado parameter**,SIGT_ON_EFL,SIGT,990 +**Effective layer supercell composite parameter**,SCCP_ON_EFL,SCCP,991 +**Mixed Layer (100 mb) virtual LFC**,MLFC_ON_EFL,MLFC,992 +**Significant hail parameter**,SIGH_ON_EFL,SIGH,993 +**Average ozone concentration on model surface???**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 +**Average PM25 on model surface???**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 +**Land fraction**,LAND_FRAC,LANDFRC,996 +**Instantaneous precipitation advected heat flux**,INST_PREC_ADVEC_HEAT,PAHFLX,997 +**Water storage in aquifer**,WATER_AQUIFER,WATERSA,998 +**Accumulated evaporation of intercepted water**,ACM_EIWATER_ON_SURFACE,EIWATER,999 +**Accumulated plant transpiration on surface**,ACM_PLANTTR_ON_SURFACE,PLANTTR,1000 +**Accumulated soil surface evaporation**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 +**Average precipitation advected heat flux**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 +**Bucket freezing rain on surface**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 +**Accumulated snowfall on surface???**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 +**Bucket snowfall on surface**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 +**Snow density solid-liquid ratio on surface???**,SDEN_ON_SURFACE,SDEN,1006 +**Icing probability on flight levels???**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 +**Supercooled large droplet icing on flight levels???**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 +**Icing severity category on flight levels???**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 +**WMO icing severity category on flight levels???**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 +**Total column coarse articulate matter (PM)**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 +**Coarse particulate matter on model surface**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 +**Coarse particulate matter on pressure surface**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 +**Coarse particulate matter at 8m above ground**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 \ No newline at end of file From 84691ef25e431ca0aee5d79c2b525c2222794637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 10:55:43 -0400 Subject: [PATCH 18/44] fix table formatting; update table by ID --- docs/UPP_GRIB2_Table.csv | 62 +- docs/UPP_GRIB2_Table_byID.csv | 1355 +++++++++++++++++++++------------ docs/UPP_GRIB2_Table_byID.rst | 5 +- 3 files changed, 908 insertions(+), 514 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index eda3f30a8..bb2358f4d 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -228,16 +228,16 @@ Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,118 Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,122 Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,123 Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,172 -** Global Systems Division (GSD) Minimum updraft helicity 2-5km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 -** GSD Minimum updraft helicity 1-6 km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 -** GSD Maximum updraft helicity 0-2km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 -** GSD Minimum updraft helicity 0-2km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 -** GSD Maximum updraft helicity 0-3km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 -** GSD Minimum updraft helicity 0-3km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 -** GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 -** GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 -** GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 -** GSD Maximum hail diameter at k=1???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 +**Global Systems Division (GSD) Minimum updraft helicity 2-5km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 +**GSD Minimum updraft helicity 1-6 km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 +**GSD Maximum updraft helicity 0-2km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 +**GSD Minimum updraft helicity 0-2km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 +**GSD Maximum updraft helicity 0-3km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 +**GSD Minimum updraft helicity 0-3km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 +**GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 +**GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 +**GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 +**GSD Maximum hail diameter at k=1???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 **Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 GSD Cloud top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 @@ -500,31 +500,31 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **Maximum instantaneous precipitation rate on surface ???**,MAX_PRATE_ON_SURFACE,PRATE,508 **Maximum specific humidity at 2m**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 **Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 -** _____ ???**,ACOND_ON_SURFACE,ACOND,512 -** _____ ???**,AVE_EVCW_ON_SURFACE,EVCW,513 -** _____ ???**,AVE_EVBS_ON_SURFACE,EVBS,514 -** _____ ???**,AVE_TRANS_ON_SURFACE,TRANS,515 +**Aerodynamic conductance on surface???**,ACOND_ON_SURFACE,ACOND,512 +**Canopy water evaporation on surface???**,AVE_EVCW_ON_SURFACE,EVCW,513 +**Direct surface evaporation from bare soil???**,AVE_EVBS_ON_SURFACE,EVBS,514 +**Transpiration on surface???**,AVE_TRANS_ON_SURFACE,TRANS,515 **Sublimation on surface ???**,AVE_SBSNO_ON_SURFACE,SBSNO,516 **Potential evaporation rate on surface ???**,AVE_PEVPR_ON_SURFACE,PEVPR,517 **Height on standard atmospheric isobaric levels**,HGT_ON_ICAO_STD_SFC,HGT,518 **Temperature on standard atmospheric isobaric levels**,TMP_ON_ICAO_STD_SFC,TMP,519 -** U-component wind on standard atmospheric isobaric levels???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 -** V-component wind on standard atmospheric isobaric levels???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 +**U-component wind on standard atmospheric isobaric levels???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 +**V-component wind on standard atmospheric isobaric levels???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 **Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 **Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 **Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 **Bucket snow precipitation on surface**,BUCKET1_WEASD_ON_SURFACE,WEASD,529 **Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 -**Simulated Brightness Temperature for ABI GOES-18, Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 -**Simulated Brightness Temperature for ABI GOES-18, Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 -**Simulated Brightness Temperature for ABI GOES-18, Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 -**Simulated Brightness Temperature for ABI GOES-18, Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 -**Simulated Brightness Temperature for ABI GOES-18, Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 -**Simulated Brightness Temperature for ABI GOES-18, Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 -**Simulated Brightness Temperature for ABI GOES-18, Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 -**Simulated Brightness Temperature for ABI GOES-18, Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 -**Simulated Brightness Temperature for ABI GOES-18, Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 -**Simulated Brightness Temperature for ABI GOES-18, Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 +**Simulated Brightness Temperature for ABI GOES-18 Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 +**Simulated Brightness Temperature for ABI GOES-18 Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 +**Simulated Brightness Temperature for ABI GOES-18 Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 +**Simulated Brightness Temperature for ABI GOES-18 Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 +**Simulated Brightness Temperature for ABI GOES-18 Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 +**Simulated Brightness Temperature for ABI GOES-18 Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 +**Simulated Brightness Temperature for ABI GOES-18 Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 +**Simulated Brightness Temperature for ABI GOES-18 Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 +**Simulated Brightness Temperature for ABI GOES-18 Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 +**Simulated Brightness Temperature for ABI GOES-18 Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 **GSD shelter level potential temperature**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 **GSD shelter level dewpoint depression**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 **GSD shelter level surface equivalent potential temperature**,GSD_EPOT_ON_SURFACE,EPOT,548 @@ -629,7 +629,7 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Hydrophobic organic carbon on model surface**,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 **Hydrophilic organic carbon on model surface**,OCPHILIC_ON_HYBRID_LVL,PMTF,641 **Hydrophobic black carbon on model surface**,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 -**Hydrophilic black carbon on model surface,BCPHILIC_ON_HYBRID_LVL,PMTF,643 +**Hydrophilic black carbon on model surface**,BCPHILIC_ON_HYBRID_LVL,PMTF,643 **Air density on model surface**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 **Layer thickness on model surface**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 **Dust PM2.5 column mass density**,DUST_COL_MASS_DEN,COLMD,646 @@ -766,10 +766,10 @@ SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,800 SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,806 SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,812 SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 -**Simulated Brightness Temperature for SSMIS-F17, Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 -**Simulated Brightness Temperature for SSMIS-F17, Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 -**Simulated Brightness Temperature for SSMIS-F17, Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 -**Simulated Brightness Temperature for SSMIS-F17, Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 +**Simulated Brightness Temperature for SSMIS-F17 Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 +**Simulated Brightness Temperature for SSMIS-F17 Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 +**Simulated Brightness Temperature for SSMIS-F17 Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 +**Simulated Brightness Temperature for SSMIS-F17 Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,839 SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index a281b8249..b7ee914ae 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -1,480 +1,875 @@ -Field Description,Name in Grib2 Control File,Grib2 pname,Vertical Level,UPP ID -Pressure on model surface,PRES_ON_HYBRID_LVL,PRES,109,1 -Temperature on model surface,TMP_ON_HYBRID_LVL,TMP,109,2 -Potential temperature on model surface,POT_ON_HYBRID_LVL,POT,109,3 -Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,109,4 -Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,109,5 -Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,109,6 -U component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,109,7 -V component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,109,8 -Omega on model surface,VVEL_ON_HYBRID_LVL,VVEL,109,9 -Absolute vorticity on model surface,ABSV_ON_HYBRID_LVL,ABSV,109,10 -Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,109,11 -Height on pressure surface,HGT_ON_ISOBARIC_SFC,HGT,100,12 -Temperature on pressure surface,TMP_ON_ISOBARIC_SFC,TMP,100,13 -Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,100,14 -Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,100,15 -Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,100,16 -Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,100,17 -U component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,100,18 -V component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,100,19 -Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,100,20 -Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,100,21 -Turbulent kinetic energy on pressure surface,TKE_ON_ISOBARIC_SFC,TKE,100,22 -Mesinger (Membrane) sea level pressure,MSLET_ON_MEAN_SEA_LVL,MSLET,102,23 -Surface pressure,PRES_ON_SURFACE,PRES,1,24 -Terrain height,HGT_ON_SURFACE,HGT,1,25 -Skin temperature,TMP_ON_SURFACE,TMP,1,26 -Skin potential temperature,POT_ON_SURFACE,POT,1,27 -Skin specific humidity,SPFH_ON_SURFACE,SPFH,1,28 -Skin dew point temperature,DPT_ON_SURFACE,DPT,1,29 -Lifted index—surface based,LFTX_ON_ISOBARIC_SFC_500-1000hpa,LFTX,101,30 -Lifted index—best,4LFTX_ON_SPEC_PRES_ABOVE_GRND,4LFTX,116,31 -Surface CAPE,CAPE_ON_SURFACE,CAPE,1,32 -Accumulated convective precipitation,ACM_ACPCP_ON_SURFACE,ACPCP,1,33 -Accumulated grid-scale precipitation,ACM_NCPCP_ON_SURFACE,NCPCP,1,34 -Accumulated snowfall,ACM_WEASD_ON_SURFACE,WEASD,1,35 -Total soil moisture,SOILM_ON_DEPTH_BEL_LAND_SFC,SOILM,112,36 -Low level cloud fraction,LCDC_ON_LOW_CLOUD_LYR,LCDC,214,37 -Mid level cloud fraction,MCDC_ON_MID_CLOUD_LYR,MCDC,224,38 -High level cloud fraction,HCDC_ON_HIGH_CLOUD_LYR,HCDC,234,39 -Temperature tendency from shortwave radiative flux,SWHR_ON_HYBRID_LVL,SWHR,109,40 -Temperature tendency from longwave radiative flux,LWHR_ON_HYBRID_LVL,LWHR,109,41 -Surface latent heat flux - time-averaged,AVE_LHTFL_ON_SURFACE,LHTFL,1,42 -Surface sensible heat flux - time-averaged,AVE_SHTFL_ON_SURFACE,SHTFL,1,43 -Roughness length,SFCR_ON_SURFACE,SFCR,1,44 -Friction velocity,FRICV_ON_SURFACE,FRICV,1,45 -Surface momentum flux - time-averaged,AVE_MFLX_ON_SURFACE,MFLX,1,46 -Accumulated surface evaporation,ACM_EVP_ON_SURFACE,EVP,1,47 -Latitude,NLAT_ON_SURFACE,NLAT,1,48 -Longitude,ELON_ON_SURFACE,ELON,1,49 -Land sea mask (land=1 sea=0),LAND_ON_SURFACE,LAND,1,50 -Sea ice mask,ICEC_ON_SURFACE,ICEC,1,51 -Press at tropopause,PRES_ON_TROPOPAUSE,PRES,7,54 -Temperature at tropopause,TMP_ON_TROPOPAUSE,TMP,7,55 -U wind at tropopause,UGRD_ON_TROPOPAUSE,UGRD,7,56 -V wind at tropopause,VGRD_ON_TROPOPAUSE,VGRD,7,57 -Wind shear at tropopause,VWSH_ON_TROPOPAUSE,VWSH,7,58 -Temperature at flight levels,TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,TMP,103,59 -U wind at flight levels,UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,UGRD,103,60 -V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,103,61 -Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,4,62 -Freezing level RH,RH_ON_0C_ISOTHERM,RH,4,63 -10 M u component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,105,64 -10 M v component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,105,65 -Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,116,67 -Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,116,68 -Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,116,69 -Dew point temperature in boundary layer (30 mb mean),DPT_ON_SPEC_PRES_ABOVE_GRND,DPT,116,70 -Specific humidity in boundary layer (30 mb mean),SPFH_ON_SPEC_PRES_ABOVE_GRND,SPFH,116,71 -RH in boundary layer (30 mb mean),RH_ON_SPEC_PRES_ABOVE_GRND,RH,116,72 -U wind in boundary layer (30 mb mean),UGRD_ON_SPEC_PRES_ABOVE_GRND,UGRD,116,73 -V wind in boundary layer (30 mb mean),VGRD_ON_SPEC_PRES_ABOVE_GRND,VGRD,116,74 -Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,116,75 -Skin Relative humidity,RH_ON_SURFACE,RH,1,76 -Height on model surface,HGT_ON_HYBRID_LVL,HGT,109,77 -Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,109,78 -Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,109,79 -Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,200,80 -Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,109,83 -Geostrophic streamfunction on model surface,STRM_ON_HYBRID_LVL,STRM,109,84 -Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,100,85 -Geostrophic streamfunction on pressure surface,STRM_ON_ISOBARIC_SFC,STRM,100,86 -Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,1,87 -Moisture convergence in boundary layer (30 mb mean),MCONV_ON_SPEC_PRES_ABOVE_GRND,MCONV,116,88 -Precipitable water in boundary layer (30 mb mean),PWAT_ON_SPEC_PRES_ABOVE_GRND,PWAT,116,89 -Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,116,90 -Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,102,105 -2 M temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMP,105,106 -Surface CIN,CIN_ON_SURFACE,CIN,1,107 -Potential temperature at tropopause,POT_ON_TROPOPAUSE,POT,7,108 -Above-ground height of LCL,HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC,HGT,5,109 -Pressure of LCL,PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC,PRES,5,110 -Richardson number on model surface,RI_ON_HYBRID_LVL,RI,109,111 -2 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,SPFH,105,112 -2 M dew point temperature,DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DPT,105,113 -2 M RH,RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,RH,105,114 -Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,111,115/571 -Soil temperature in between each of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC,TSOIL,112,116 -Soil moisture in between each of soil layers,SOILW_ON_DEPTH_BEL_LAND_SFC,SOILW,112,117 -Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,1,118 -Snow water equivalent,WEASD_ON_SURFACE,WEASD,1,119 -Snow cover in percentage,SNOWC_ON_SURFACE,SNOWC,1,120 -Accumulated total snow melt,ACM_SNOM_ON_SURFACE,SNOM,1,121 -Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,1,122 -Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,1,123 -Cloud water on model surface,CLWMR_ON_HYBRID_LVL,CLWMR,109,124 -Cloud ice on model surface,CICE_ON_HYBRID_LVL,CICE,109,125 -Incoming surface shortwave radiation - time-averaged,AVE_DSWRF_ON_SURFACE,DSWRF,1,126 -Incoming surface longwave radiation - time-averaged,AVE_DLWRF_ON_SURFACE,DLWRF,1,127 -Outgoing surface shortwave radiation - time-averaged,AVE_USWRF_ON_SURFACE,USWRF,1,128 -Outgoing surface longwave radiation - time-averaged,AVE_ULWRF_ON_SURFACE,ULWRF,1,129 -Outgoing model top shortwave radiation - time-averaged,AVE_USWRF_ON_TOP_OF_ATMOS,USWRF,8,130 -Outgoing model top longwave radiation - time-averaged,AVE_ULWRF_ON_TOP_OF_ATMOS,ULWRF,8,131 -Surface drag coefficient,CD_ON_SURFACE,CD,1,132 -Surface u wind stress,UFLX_ON_SURFACE,UFLX,1,133 -Surface v wind stress,VFLX_ON_SURFACE,VFLX,1,134 -Ground heat flux - time-averaged,AVE_GFLUX_ON_SURFACE,GFLUX,1,135 -Average snow phase change heat flux,AVE_SNOHF_ON_SURFACE,SNOHF,1,136 -Accumulated potential evaporation,ACM_PEVAP_ON_SURFACE,PEVAP,1,137 -2 M pressure,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,PRES,105,138 -Time-averaged stratospheric cloud fraction,AVE_CDLYR_ON_ENTIRE_ATMOS,CDLYR,200,139 -Temperature tendency from radiative fluxes,TTRAD_ON_HYBRID_LVL,TTRAD,109,140 -Outgoing surface shortwave radiation - instantaneous,INST_USWRF_ON_SURFACE,USWRF,1,141 -Outgoing surface longwave radiation - instantaneous,INST_ULWRF_ON_SURFACE,ULWRF,1,142 -Time-averaged convective cloud fraction,AVE_CDCON_ON_ENTIRE_ATMOS,CDCON,200,143 -Time-averaged total cloud fraction,AVE_TCDC_ON_ENTIRE_ATMOS,TCDC,200,144 -Cloud fraction on model surface,TCDC_ON_HYBRID_LVL,TCDC,109,145 -Master length scale on model surface,BMIXL_ON_HYBRID_LVL,BMIXL,109,146 -Asymptotic length scale on model surface,AMIXL_ON_HYBRID_LVL,AMIXL,109,147 -Cloud bottom pressure,PRES_ON_CLOUD_BASE,PRES,2,148 -Cloud top pressure,PRES_ON_CLOUD_TOP,PRES,3,149 -Surface midday albedo,ALBDO_ON_SURFACE,ALBDO,1,150 -Sea surface temperature,WTMP_ON_SURFACE,WTMP,1,151 -Ground heat flux - instantaneous,INST_GFLUX_ON_SURFACE,GFLUX,1,152 -Cloud water on pressure surface,CLWMR_ON_ISOBARIC_SFC,CLWMR,100,153 -Surface sensible heat flux – instantaneous,INST_SHTFL_ON_SURFACE,SHTFL,1,154 -Surface latent heat flux - instantaneous,INST_LHTFL_ON_SURFACE,LHTFL,1,155 -Incoming surface shortwave radiation - instantaneous,INST_DSWRF_ON_SURFACE,DSWRF,1,156 -Incoming surface longwave radiation - instantaneous,INST_DLWRF_ON_SURFACE,DLWRF,1,157 -10 M potential temperature,POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,POT,105,158 -10 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,SPFH,105,159 -Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,1,160 -Total cloud fraction,INST_TCDC_ON_ENTIRE_ATMOS,TCDC,200,161 -Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,106,162 -U component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,106,163 -V component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,106,164 -Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,204,165 -Cloud ice on pressure surface,CICE_ON_ISOBARIC_SFC,CICE,100,166 -Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,1,167 -Cloud top temperature,TMP_ON_CLOUD_TOP,TMP,3,168 -Heat exchange coeff at surface,SFEXC_ON_SURFACE,SFEXC,1,169 -Vegetation cover,VEG_ON_SURFACE,VEG,1,170 -Soil moisture availability,MSTAV_ON_DEPTH_BEL_LAND_SFC,MSTAV,112,171 -Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,1,172 -Maximum wind pressure level,PRES_ON_MAX_WIND,PRES,6,173 -Maximum wind height,HGT_ON_MAX_WIND,HGT,6,174 -U-component of maximum wind,UGRD_ON_MAX_WIND,UGRD,6,175 -V-component of maximum wind,VGRD_ON_MAX_WIND,VGRD,6,176 -Height at tropopause,HGT_ON_TROPOPAUSE,HGT,7,177 -Cloud bottom height (above MSL),HGT_ON_CLOUD_BASE,HGT,2,178 -Cloud top height (above MSL),HGT_ON_CLOUD_TOP,HGT,3,179 -Visibility,VIS_ON_SURFACE,VIS,1,180 -Rain on model surface,RWMR_ON_HYBRID_LVL,RWMR,109,181 -Snow on model surface,SNMR_ON_HYBRID_LVL,SNMR,109,182 -Rain on pressure surface,RWMR_ON_ISOBARIC_SFC,RWMR,100,183 -Snow water on pressure surface,SNMR_ON_ISOBARIC_SFC,SNMR,100,184 -Model level fraction of rain for Ferrier scheme,FRAIN_ON_HYBRID_LVL,FRAIN,109,185 -Model level fraction of ice for Ferrier scheme,FICE_ON_HYBRID_LVL,FICE,109,186 -Model level riming factor for Ferrier scheme,RIME_ON_HYBRID_LVL,RIME,109,187 -Convective cloud bottom pressure,PRES_ON_CONVECTIVE_CLOUD_BOT_LVL,PRES,242,188 -Convective cloud top pressure,PRES_ON_CONVECTIVE_CLOUD_TOP_LVL,PRES,243,189 -Shallow convective cloud bottom pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL,PRES,248,190 -Shallow convective cloud top pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL,PRES,249,191 -Deep convective cloud bottom pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL,PRES,251,192 -Deep convective cloud top pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL,PRES,252,193 -Grid scale cloud bottom pressure,PRES_ON_GRID_SCALE_CLOUD_BOT_LVL,PRES,206,194 -Grid scale cloud top pressure,PRES_ON_GRID_SCALE_CLOUD_TOP_LVL,PRES,207,195 -Convective cloud fraction,CDCON_ON_ENTIRE_ATMOS,CDCON,200,196 -Convective cloud efficiency,CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR,CUEFI,200,197 -Total condensate on pressure surface,TCOND_ON_ISOBARIC_SFC,TCOND,100,198 -Model level total condensate for Ferrier scheme,TCOND_ON_HYBRID_LVL,TCOND,109,199 -Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200,200 -Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,200,201 -Column integrated rain,TCOLR_ON_ENTIRE_ATMOS,TCOLR,200,202 -Column integrated snow,TCOLS_ON_ENTIRE_ATMOS,TCOLS,200,203 -Column integrated total condensate,TCOLC_ON_ENTIRE_ATMOS,TCOLC,200,204 -Height of sigma surface,HGT_ON_SIGMA_LVLS,HGT,107,205 -Temperature on sigma surface,TMP_ON_SIGMA_LVLS,TMP,107,206 -Specific humidity on sigma surface,SPFH_ON_SIGMA_LVLS,SPFH,107,207 -U-wind on sigma surface,UGRD_ON_SIGMA_LVLS,UGRD,107,208 -V-wind on sigma surface,VGRD_ON_SIGMA_LVLS,VGRD,107,209 -Omega on sigma surface,VVEL_ON_SIGMA_LVLS,VVEL,107,210 -Cloud water on sigma surface,CLWMR_ON_SIGMA_LVLS,CLWMR,107,211 -Cloud ice on sigma surface,CICE_ON_SIGMA_LVLS,CICE,107,212 -Rain on sigma surface,RWMR_ON_SIGMA_LVLS,RWMR,107,213 -Snow on sigma surface,SNMR_ON_SIGMA_LVLS,SNMR,107,214 -Condensate on sigma surface,TCOND_ON_SIGMA_LVLS,TCOND,107,215 -Pressure on sigma surface,PRES_ON_SIGMA_LVLS,PRES,107,216 -Turbulent kinetic energy on sigma surface,TKE_ON_SIGMA_LVLS,TKE,107,217 -Vegetation type,VGTYP_ON_SURFACE,VGTYP,1,218 -Soil type,SOTYP_ON_SURFACE,SOTYP,1,219 -Canopy conductance,CCOND_ON_SURFACE,CCOND,1,220 -PBL height,HPBL_ON_SURFACE,HPBL,1,221 -Cloud fraction on sigma surface,TCDC_ON_SIGMA_LVLS,TCDC,107,222 -Slope type,SLTYP_ON_SURFACE,SLTYP,1,223 -Snow depth,SNOD_ON_SURFACE,SNOD,1,224 -Liquid soil moisture,SOILL_ON_DEPTH_BEL_LAND_SFC,SOILL,112,225 -Snow free albedo,SNFALB_ON_SURFACE,SNFALB,1,226 -Maximum snow albedo,MXSALB_ON_SURFACE,MXSALB,1,227 -Canopy water evaporation,EVCW_ON_SURFACE,EVCW,1,228 -Direct soil evaporation,EVBS_ON_SURFACE,EVBS,1,229 -Plant transpiration,TRANS_ON_SURFACE,TRANS,1,230 -Snow sublimation,SBSNO_ON_SURFACE,SBSNO,1,231 -Air dry soil moisture,SMDRY_ON_SURFACE,SMDRY,1,232 -Soil moist porosity,POROS_ON_SURFACE,POROS,1,233 -Minimum stomatal resistance,RSMIN_ON_SURFACE,RSMIN,1,234 -Number of root layers,RLYRS_ON_SURFACE,RLYRS,1,235 -Soil moist wilting point,WILT_ON_SURFACE,WILT,1,236 -Soil moist reference,SMREF_ON_SURFACE,SMREF,1,237 -Canopy conductance - solar component,RCS_ON_SURFACE,RCS,1,238 -Canopy conductance - temperature component,RCT_ON_SURFACE,RCT,1,239 -Canopy conductance - humidity component,RCQ_ON_SURFACE,RCQ,1,240 -Canopy conductance - soil component,RCSOL_ON_SURFACE,RCSOL,1,241 -Potential evaporation,PEVPR_ON_SURFACE,PEVPR,1,242 -Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,107,243 -Accumulated large scale snow,Not currently available for grib2,NA,1,244 -Surface wind gust,GUST_ON_SURFACE,GUST,1,245 -LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,116,246 -LOWEST WET BULB ZERO HEIGHT,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,245,247 -Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,1,249 -Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,109,250 -Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,100,251 -Composite radar reflectivity,REFC_ON_ENTIRE_ATMOS,REFC,200,252 -Radar reflectivity at certain above ground heights,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,105,253 -Leaf area index,LAI_ON_SURFACE,LAI,1,254 -Graupel on sigma surface,GRLE_ON_SIGMA_LVLS,GRLE,107,255 -Accumulated land surface model precipitation,ACM_LSPA_ON_SURFACE,LSPA,1,256 -In-flight icing,TIPD_ON_ISOBARIC_SFC,TIPD,100,257 -Clear air turbulence,TPFI_ON_ISOBARIC_SFC,TPFI,100,258 -Wind shear between shelter level and 2000 FT,VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND,VWSH,106,259 -Ceiling,HGT_ON_CLOUD_CEILING,HGT,215,260 -Flight restriction,VIS_ON_CLOUD_BASE,VIS,2,261 -Instantaneous clear sky incoming surface shortwave,INST_CSDSF_ON_SURFACE,CSDSF,1,262 -Pressure level riming factor for Ferrier scheme,RIME_ON_ISOBARIC_SFC,RIME,100,263 -Model level vertical velocity,DZDT_ON_HYBRID_LVL,DZDT,109,264 -Brightness temperature,SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD,SBT122,8,265 -Average albedo,AVE_ALBDO_ON_SURFACE,ALBDO,1,266 -Ozone on model surface,O3MR_ON_HYBRID_LVL,O3MR,109,267 -Ozone on pressure surface,O3MR_ON_ISOBARIC_SFC,O3MR,100,268 -Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,1,269 -Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,1,270 -Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,1,271 -Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,1,272 -Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,8,274 -Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,8,275 -Composite rain radar reflectivity,REFZR_ON_ENTIRE_ATMOS,REFZR,200,276 -Composite ice radar reflectivity,REFZI_ON_ENTIRE_ATMOS,REFZI,200,277 -Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,200,278 -Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,105,279 -Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,105,280 -Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,105,281 -Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,8,282 -Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,100,284 -Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,200,285 -Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,200,286 -Height of lowest level super cool liquid water,HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,253,287 -Height of highest level super cool liquid water,HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,254,288 -Richardson number planetary boundary layer height,HGT_ON_PLANETARY_BOUND_LYR,HGT,220,289 -Total column shortwave temperature tendency,SWHR_ON_ENTIRE_ATMOS,SWHR,200,290 -Total column longwave temperature tendency,LWHR_ON_ENTIRE_ATMOS,LWHR,200,291 -Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,200,292 -Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,200,293 -Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,100,294 -Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,200,295 -Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,1,297 -Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,1,298 -Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,200,299 -Average low cloud fraction,AVE_TCDC_ON_LOW_CLOUD_LYR,TCDC,214,300 -Average mid cloud fraction,AVE_TCDC_ON_MID_CLOUD_LYR,TCDC,224,301 -Average high cloud fraction,AVE_TCDC_ON_HIGH_CLOUD_LYR,TCDC,234,302 -Average low cloud bottom pressure,AVE_PRES_ON_LOW_CLOUD_BOT_LVL,PRES,212,303 -Average low cloud top pressure,AVE_PRES_ON_LOW_CLOUD_TOP_LVL,PRES,213,304 -Average low cloud top temperature,AVE_TMP_ON_LOW_CLOUD_TOP_LVL,TMP,213,305 -Average mid cloud bottom pressure,AVE_PRES_ON_MID_CLOUD_BOT_LVL,PRES,222,306 -Average mid cloud top pressure,AVE_PRES_ON_MID_CLOUD_TOP_LVL,PRES,223,307 -Average mid cloud top temperature,AVE_TMP_ON_MID_CLOUD_TOP_LVL,TMP,223,308 -Average high cloud bottom pressure,AVE_PRES_ON_HIGH_CLOUD_BOT_LVL,PRES,232,309 -Average high cloud top pressure,AVE_PRES_ON_HIGH_CLOUD_TOP_LVL,PRES,233,310 -Average high cloud top temperature,AVE_TMP_ON_HIGH_CLOUD_TOP_LVL,TMP,233,311 -Total column relative humidity,RH_ON_ENTIRE_ATMOS_SINGLE_LYR,RH,200,312 -Cloud work function,AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR,CWORK,200,313 -Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,6,314 -Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,1,315 -Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,1,316 -Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,1,317 -Simulated GOES 12 channel 2 brightness temperature,SBT122_ON_TOP_OF_ATMOS,SBT122,8,327 -Simulated GOES 12 channel 3 brightness temperature,SBT123_ON_TOP_OF_ATMOS,SBT123,8,328 -Simulated GOES 12 channel 4 brightness temperature,SBT124_ON_TOP_OF_ATMOS,SBT124,8,329 -Simulated GOES 12 channel 5 brightness temperature,SBT126_ON_TOP_OF_ATMOS,SBT126,8,330 -Cloud fraction on pressure surface,TCDC_ON_ISOBARIC_SFC,TCDC,100,331 -U-wind on theta surface,UGRD_ON_ISENTROPIC_LVL,UGRD,113,332 -V-wind on theta surface,VGRD_ON_ISENTROPIC_LVL,VGRD,113,333 -Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,113,334 -Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,113,335 -U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,117,336 -V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,117,337 -Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,117,338 -Height on constant PV surface,HGT_ON_POT_VORT_SFC,HGT,117,339 -Pressure on constant PV surface,PRES_ON_POT_VORT_SFC,PRES,117,340 -Wind shear on constant PV surface,VWSH_ON_POT_VORT_SFC,VWSH,117,341 -Planetary boundary layer cloud fraction,AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR,TCDC,211,342 -Average water runoff,ACM_WATR_ON_SURFACE,WATR,1,343 -Planetary boundary layer regime,PBLREG_ON_SURFACE,PBLREG,1,344 -Maximum 2m temperature,MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMAX,105,345 -Minimum 2m temperature,MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMIN,105,346 -Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,105,347 -Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,105,348 -Ice thickness,ICETK_ON_SURFACE,ICETK,1,349 -Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,204,350 -Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,113,352 -Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,113,353 -Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,100,354 -Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,100,355 -Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,100,357 -Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,100,358 -Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,100,359 -Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,100,361 -Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,100,362 -Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,100,366 -Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,100,367 -Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,8,376 -Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,8,377 -Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,113,378 -Mixing height,MIXHT_ON_SURFACE,MIXHT,1,381 -Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,1,382 -Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,1,383 -Average clear-sky outgoing longwave at surface,AVE_CSULF_ON_SURFACE,CSULF,1,384 -Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATMOS,CSULF,8,385 -Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,1,386 -Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,8,387 -Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,8,388 -Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,220,389 -Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,220,390 -Sunshine duration,SUNSD_ON_SURFACE,SUNSD,1,396 -Field capacity,FLDCP_ON_SURFACE,FLDCP,1,397 -ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,6,398 -ICAO height at tropopause,ICAHT_ON_TROPOPAUSE,ICAHT,7,399 -Radar echo top,RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR,RETOP,200,400 -Time averaged surface Visible beam downward solar flux,AVE_VBDSF_ON_SURFACE,VBDSF,1,401 -Time averaged surface Visible diffuse downward solar flux,AVE_VDDSF_ON_SURFACE,VDDSF,1,402 -Time averaged surface Near IR beam downward solar flux,AVE_NBDSF_ON_SURFACE,NBDSF,1,403 -Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,NDDSF,1,404 -Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,1,405 -GSD Cloud Top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,3,406 -GSD cloud base height,GSD_HGT_ON_CLOUD_BASE,HGT,2,408 -GSD cloud top height,GSD_HGT_ON_CLOUD_TOP,HGT,3,409 -GSD visibility,GSD_VIS_ON_CLOUD_TOP,VIS,3,410 -Wind energy potential,WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND,WMIXE,105,411 -U wind at 80 m above ground,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,UGRD,105,412 -V wind at 80 m above ground,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,VGRD,105,413 -2 M mixing ratio,Not currently available for grib2,NA,105,414 -Graupel on model surface,GRMR_ON_HYBRID_LVL,GRMR,109,415 -Graupel on pressure surface,GRMR_ON_ISOBARIC_SFC,GRMR,100,416 -Maximum updraft helicity,MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,106,420 -Maximum 1km reflectivity,MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,MAXREF,105,421 -Maximum wind speed at 10m,MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,105,422 -Maximum updraft vertical velocity,MAX_MAXUVV_ON_ISOBARIC_SFC_40-100hpa,MAXUVV,106,423 -Maximum downdraft vertical velocity,MAX_MAXDVV_ON_ISOBARIC_SFC_40-100hpa,MAXDVV,106,424 -Mean vertical velocity,AVE_DZDT_ON_SIGMA_LVL_0.5-0.8,DZDT,108,425 -Radar echo top in KDT,HGT_ON_SPEC_HGT_LVL_ABOVE_GRND,HGT,105,426 -Updraft helicity,UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,106,427 -Column integrated graupel,GRMR_ON_ENTIRE_ATMOS_SINGLE_LYR,GRMR,200,428 -Column integrated maximum graupel,MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR,TCOLG,200,429 -U-component of 0-1km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VUCSH,106,430 -V-component of 0-1km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VVCSH,106,431 -U-component of 0-6km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VUCSH,106,432 -V-component of 0-6km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VVCSH,106,433 -Total precipitation accumulated over user-specified bucket,BUCKET_APCP_ON_SURFACE,APCP,1,434 -Convective precipitation accumulated over user-specified bucket,BUCKET_ACPCP_ON_SURFACE,ACPCP,1,435 -Grid-scale precipitation accumulated over user-specified bucket,BUCKET_NCPCP_ON_SURFACE,NCPCP,1,436 -Snow accumulated over user-specified bucket,BUCKET_WEASD_ON_SURFACE,WEASD,1,437 -Dust 1 on pressure surface,DUST1_ON_ISOBARIC_LVL,MASSMR,100,438 -Dust 2 on pressure surface,DUST2_ON_ISOBARIC_LVL,MASSMR,100,439 -Dust 3 on pressure surface,DUST3_ON_ISOBARIC_LVL,MASSMR,100,440 -Dust 4 on pressure surface,DUST4_ON_ISOBARIC_LVL,MASSMR,100,441 -Dust 5 on pressure surface,DUST5_ON_ISOBARIC_LVL,MASSMR,100,442 -Equilibrium level height,HGT_ON_EQUIL_LVL,HGT,247,443 -Lightning,LTNG_ON_SURFACE,LTNG,1,444 -MAPS Sea Level Pressure,MAPS_PRMSL_ON_MEAN_SEA_LVL,PRMSL,102,445 -Goes west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,8,446 -Goes west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,8,447 -Goes west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,8,448 -Goes west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,8,449 -In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,100,450 -Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,103,451 -Virtual temperature based convective available potential energy,VTCAPE_ON_SURFACE,CAPE,1,452 -Virtual temperature based convective inhibition,VTCIN_ON_SURFACE,CIN,1,453 -Ventilation rate,VRATE_ON_PLANETARY_BOUND_LYR,VRATE,220,454 -Haines index,HINDEX_ON_SURFACE,HINDEX,1,455 -Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,8,456 -Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,8,457 -Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,8,458 -Simulated GOES 12 channel 5 brightness temperature with satellite angle correction,NON_NADIR_SBT126_ON_TOP_OF_ATMOS,SBT126,8,459 -Simulated GOES 11 channel 2 brightness temperature with satellite angle correction,SBT112_ON_TOP_OF_ATMOS,SBT112,8,460 -Simulated GOES 11 channel 3 brightness temperature with satellite angle correction,SBT113_ON_TOP_OF_ATMOS,SBT113,8,461 -Simulated GOES 11 channel 4 brightness temperature with satellite angle correction,SBT114_ON_TOP_OF_ATMOS,SBT114,8,462 -Simulated GOES 11 channel 5 brightness temperature with satellite angle correction,SBT115_ON_TOP_OF_ATMOS,SBT115,8,463 -Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,103,482 -Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,8,483 -Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,8,484 -Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,8,485 -Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,8,486 -Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,1,500 -Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,1,501 -Time-averaged 10m temperature,AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,105,502 -Time-averaged mass exchange coefficient,AVE_AKHS_ON_SURFACE,AKHS,1,503 -Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,1,504 -Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,105,505 -Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,105,506 -Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,105,507 -Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,111,571/115 -Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,200,575 -GSD Cloud Base pressure,Not currently available for grib2,NA,2,787 -SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,800 -SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,806 -SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,812 -SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,818 -SSMIS F17 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,825 -SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,832 -SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,839 -SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,109,846 -MTSAT2 imager channels 1-4,Not currently available for grib2,NA,109,860 -MTSAT-1r imager channels 1-4 (backup for mtsat2),Not currently available for grib2,NA,109,864 -Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,109,865 -Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,109,868 -Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,109,872 -Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,109,876 -Virtual temperature on model surfaces,Not currently available for grib2,NA,109,909 -Virtual temperature on pressure surfaces,Not currently available for grib2,NA,100,910 -Virtual temperature on flight levels,Not currently available for grib2,NA,103,911 -Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,109,927 -Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,109,928 -Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,109,929 -Simulated GOES 16 band 10 brightness temperature,SBTA1610_ON_TOP_OF_ATMOS,SBTA1610,109,930 -Simulated GOES 16 band 11 brightness temperature,SBTA1611_ON_TOP_OF_ATMOS,SBTA1611,109,931 -Simulated GOES 16 band 12 brightness temperature,SBTA1612_ON_TOP_OF_ATMOS,SBTA1612,109,932 -Simulated GOES 16 band 13 brightness temperature,SBTA1613_ON_TOP_OF_ATMOS,SBTA1613,109,933 -Simulated GOES 16 band 14 brightness temperature,SBTA1614_ON_TOP_OF_ATMOS,SBTA1614,109,934 -Simulated GOES 16 band 15 brightness temperature,SBTA1615_ON_TOP_OF_ATMOS,SBTA1615,109,935 -Simulated GOES 16 band 16 brightness temperature,SBTA1616_ON_TOP_OF_ATMOS,SBTA1616,109,936 -Simulated GOES 17 band 7 brightness temperature,SBTA177_ON_TOP_OF_ATMOS,SBTA177,109,937 -Simulated GOES 17 band 8 brightness temperature,SBTA178_ON_TOP_OF_ATMOS,SBTA178,109,938 -Simulated GOES 17 band 9 brightness temperature,SBTA179_ON_TOP_OF_ATMOS,SBTA179,109,939 -Simulated GOES 17 band 10 brightness temperature,SBTA1710_ON_TOP_OF_ATMOS,SBTA1710,109,940 -Simulated GOES 17 band 11 brightness temperature,SBTA1711_ON_TOP_OF_ATMOS,SBTA1711,109,941 -Simulated GOES 17 band 12 brightness temperature,SBTA1712_ON_TOP_OF_ATMOS,SBTA1712,109,942 -Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA1713,109,943 -Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,109,944 -Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,109,945 -Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,109,946 -Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,109,958 -Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,109,959 -Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,109,960 -Simulated GOES R band 10 brightness temperature,SBTAGR10_ON_TOP_OF_ATMOS,SBTAGR10,109,961 -Simulated GOES R band 11 brightness temperature,SBTAGR11_ON_TOP_OF_ATMOS,SBTAGR11,109,962 -Simulated GOES R band 12 brightness temperature,SBTAGR12_ON_TOP_OF_ATMOS,SBTAGR12,109,963 -Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR13,109,964 -Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,109,965 -Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,109,966 -Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,109,967 -Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,109,969 -Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,109,970 -Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,109,971 -Simulated Himawari-8 band 10 brightness temperature,SBTAHI10_ON_TOP_OF_ATMOS,SBTAHI10,109,972 -Simulated Himawari-8 band 11 brightness temperature,SBTAHI11_ON_TOP_OF_ATMOS,SBTAHI11,109,973 -Simulated Himawari-8 band 12 brightness temperature,SBTAHI12_ON_TOP_OF_ATMOS,SBTAHI12,109,974 -Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBTAHI13,109,975 -Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,109,976 -Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,109,977 -Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,109,978 +Field Description,Name in Grib2 Control File,Grib2 pname,UPP ID +Pressure on model surface,PRES_ON_HYBRID_LVL,PRES,1 +Temperature on model surface,TMP_ON_HYBRID_LVL,TMP,2 +Potential temperature on model surface,POT_ON_HYBRID_LVL,POT,3 +Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,4 +Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,5 +Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,6 +U component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,7 +V component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,8 +Omega on model surface,VVEL_ON_HYBRID_LVL,VVEL,9 +Absolute vorticity on model surface,ABSV_ON_HYBRID_LVL,ABSV,10 +Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,11 +Height on pressure surface,HGT_ON_ISOBARIC_SFC,HGT,12 +Temperature on pressure surface,TMP_ON_ISOBARIC_SFC,TMP,13 +Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,14 +Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,15 +Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,16 +Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,17 +U component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,18 +V component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,19 +Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,20 +Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,21 +Turbulent kinetic energy on pressure surface,TKE_ON_ISOBARIC_SFC,TKE,22 +Mesinger (Membrane) sea level pressure,MSLET_ON_MEAN_SEA_LVL,MSLET,23 +Surface pressure,PRES_ON_SURFACE,PRES,24 +Terrain height,HGT_ON_SURFACE,HGT,25 +Skin temperature,TMP_ON_SURFACE,TMP,26 +Skin potential temperature,POT_ON_SURFACE,POT,27 +Skin specific humidity,SPFH_ON_SURFACE,SPFH,28 +Skin dew point temperature,DPT_ON_SURFACE,DPT,29 +Lifted index—surface based,LFTX_ON_ISOBARIC_SFC_500-1000hpa,LFTX,30 +Lifted index—best,4LFTX_ON_SPEC_PRES_ABOVE_GRND,4LFTX,31 +Surface CAPE,CAPE_ON_SURFACE,CAPE,32 +Accumulated convective precipitation,ACM_ACPCP_ON_SURFACE,ACPCP,33 +Accumulated grid-scale precipitation,ACM_NCPCP_ON_SURFACE,NCPCP,34 +Accumulated snowfall,ACM_WEASD_ON_SURFACE,WEASD,35 +Total soil moisture,SOILM_ON_DEPTH_BEL_LAND_SFC,SOILM,36 +Low level cloud fraction,LCDC_ON_LOW_CLOUD_LYR,LCDC,37 +Mid level cloud fraction,MCDC_ON_MID_CLOUD_LYR,MCDC,38 +High level cloud fraction,HCDC_ON_HIGH_CLOUD_LYR,HCDC,39 +Temperature tendency from shortwave radiative flux,SWHR_ON_HYBRID_LVL,SWHR,40 +Temperature tendency from longwave radiative flux,LWHR_ON_HYBRID_LVL,LWHR,41 +Surface latent heat flux - time-averaged,AVE_LHTFL_ON_SURFACE,LHTFL,42 +Surface sensible heat flux - time-averaged,AVE_SHTFL_ON_SURFACE,SHTFL,43 +Roughness length,SFCR_ON_SURFACE,SFCR,44 +Friction velocity,FRICV_ON_SURFACE,FRICV,45 +Surface momentum flux - time-averaged,AVE_MFLX_ON_SURFACE,MFLX,46 +Accumulated surface evaporation,ACM_EVP_ON_SURFACE,EVP,47 +Latitude,NLAT_ON_SURFACE,NLAT,48 +Longitude,ELON_ON_SURFACE,ELON,49 +Land sea mask (land=1 sea=0),LAND_ON_SURFACE,LAND,50 +Sea ice mask,ICEC_ON_SURFACE,ICEC,51 +Press at tropopause,PRES_ON_TROPOPAUSE,PRES,54 +Temperature at tropopause,TMP_ON_TROPOPAUSE,TMP,55 +U wind at tropopause,UGRD_ON_TROPOPAUSE,UGRD,56 +V wind at tropopause,VGRD_ON_TROPOPAUSE,VGRD,57 +Wind shear at tropopause,VWSH_ON_TROPOPAUSE,VWSH,58 +Temperature at flight levels,TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,TMP,59 +U wind at flight levels,UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,UGRD,60 +V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,61 +Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,62 +Freezing level RH,RH_ON_0C_ISOTHERM,RH,63 +10 M u component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 +10 M v component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 +**Relative humidity on sigma levels 0.33-1.0**,RH_ON_SIGMA_LVL_0.33-1.0,RH,66 +Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,67 +Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,68 +Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,69 +Dew point temperature in boundary layer (30 mb mean),DPT_ON_SPEC_PRES_ABOVE_GRND,DPT,70 +Specific humidity in boundary layer (30 mb mean),SPFH_ON_SPEC_PRES_ABOVE_GRND,SPFH,71 +RH in boundary layer (30 mb mean),RH_ON_SPEC_PRES_ABOVE_GRND,RH,72 +U wind in boundary layer (30 mb mean),UGRD_ON_SPEC_PRES_ABOVE_GRND,UGRD,73 +V wind in boundary layer (30 mb mean),VGRD_ON_SPEC_PRES_ABOVE_GRND,VGRD,74 +Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,75 +Skin Relative humidity,RH_ON_SURFACE,RH,76 +Height on model surface,HGT_ON_HYBRID_LVL,HGT,77 +Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 +Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,79 +Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,80 +**Relative humidity on sigma levels 0.66-1.0**,RH_ON_SIGMA_LVL_0.66-1.0,RH,81 +**Relative humidity on sigma levels 0.33-0.66**,RH_ON_SIGMA_LVL_0.33-0.66,RH,82 +Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,83 +Geostrophic streamfunction on model surface,STRM_ON_HYBRID_LVL,STRM,84 +Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,85 +Geostrophic streamfunction on pressure surface,STRM_ON_ISOBARIC_SFC,STRM,86 +Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,87 +Moisture convergence in boundary layer (30 mb mean),MCONV_ON_SPEC_PRES_ABOVE_GRND,MCONV,88 +Precipitable water in boundary layer (30 mb mean),PWAT_ON_SPEC_PRES_ABOVE_GRND,PWAT,89 +Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,90 +**Pressure on sigma level 0.98230**,PRES_ON_SIGMA_LVL_0.98230,PRES,91 +**Temperature on sigma level 0.98230**,TMP_ON_SIGMA_LVL_0.98230,TMP,92 +**Specific humidity on sigma level 0.98230**,SPFH_ON_SIGMA_LVL_0.98230,SPFH,93 +**Relative humidity on sigma level 0.98230**,RH_ON_SIGMA_LVL_0.98230,RH,94 +**U-wind on sigma level 0.98230**,UGRD_ON_SIGMA_LVL_0.98230,UGRD,95 +**V-wind on sigma level 0.98230**,VGRD_ON_SIGMA_LVL_0.98230,VGRD,96 +**Temperature on sigma level 0.89671**,TMP_ON_SIGMA_LVL_0.89671,TMP,97 +**Temperature on sigma level 0.78483**,TMP_ON_SIGMA_LVL_0.78483,TMP,98 +**Relative humidity on sigma level 0.47_1.0**,RH_ON_SIGMA_LVL_0.47_1.0,RH,99 +**Relative humidity on sigma level 0.47_0.96**,RH_ON_SIGMA_LVL_0.47_0.96,RH,100 +**Relative humidity on sigma level 0.18_0.47**,RH_ON_SIGMA_LVL_0.18_0.47,RH,101 +**Relative humidity on sigma level 0.84_0.98**,RH_ON_SIGMA_LVL_0.84_0.98,RH,102 +**Moisture convergence on sigma level 0.85_1.0**,MCONV_ON_SIGMA_LVL_0.85_1.0,MCONV,103 +**Precipitable water on sigma level 0.33_1.0**,PWAT_ON_SIGMA_LVL_0.33_1.0,PWAT,104 +Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,105 +2 M temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMP,106 +Surface CIN,CIN_ON_SURFACE,CIN,107 +Potential temperature at tropopause,POT_ON_TROPOPAUSE,POT,108 +Above-ground height of LCL,HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC,HGT,109 +Pressure of LCL,PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC,PRES,110 +Richardson number on model surface,RI_ON_HYBRID_LVL,RI,111 +2 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,SPFH,112 +2 M dew point temperature,DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DPT,113 +2 M RH,RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,RH,114 +Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,115 +Soil temperature in between each of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC,TSOIL,116 +Soil moisture in between each of soil layers,SOILW_ON_DEPTH_BEL_LAND_SFC,SOILW,117 +Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,118 +Snow water equivalent,WEASD_ON_SURFACE,WEASD,119 +Snow cover in percentage,SNOWC_ON_SURFACE,SNOWC,120 +Accumulated total snow melt,ACM_SNOM_ON_SURFACE,SNOM,121 +Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,122 +Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,123 +Cloud water on model surface,CLMR_ON_HYBRID_LVL,CLMR,124 +Cloud ice on model surface,ICMR_ON_HYBRID_LVL,ICMR,125 +Incoming surface shortwave radiation - time-averaged,AVE_DSWRF_ON_SURFACE,DSWRF,126 +Incoming surface longwave radiation - time-averaged,AVE_DLWRF_ON_SURFACE,DLWRF,127 +Outgoing surface shortwave radiation - time-averaged,AVE_USWRF_ON_SURFACE,USWRF,128 +Outgoing surface longwave radiation - time-averaged,AVE_ULWRF_ON_SURFACE,ULWRF,129 +Outgoing model top shortwave radiation - time-averaged,AVE_USWRF_ON_TOP_OF_ATMOS,USWRF,130 +Outgoing model top longwave radiation - time-averaged,AVE_ULWRF_ON_TOP_OF_ATMOS,ULWRF,131 +Surface drag coefficient,CD_ON_SURFACE,CD,132 +Surface u wind stress,UFLX_ON_SURFACE,UFLX,133 +Surface v wind stress,VFLX_ON_SURFACE,VFLX,134 +Ground heat flux - time-averaged,AVE_GFLUX_ON_SURFACE,GFLUX,135 +Average snow phase change heat flux,AVE_SNOHF_ON_SURFACE,SNOHF,136 +Accumulated potential evaporation,ACM_PEVAP_ON_SURFACE,PEVAP,137 +2 M pressure,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,PRES,138 +Time-averaged stratospheric cloud fraction,AVE_CDLYR_ON_ENTIRE_ATMOS,CDLYR,139 +Temperature tendency from radiative fluxes,TTRAD_ON_HYBRID_LVL,TTRAD,140 +Outgoing surface shortwave radiation - instantaneous,INST_USWRF_ON_SURFACE,USWRF,141 +Outgoing surface longwave radiation - instantaneous,INST_ULWRF_ON_SURFACE,ULWRF,142 +Time-averaged convective cloud fraction,AVE_CDCON_ON_ENTIRE_ATMOS,CDCON,143 +Time-averaged total cloud fraction,AVE_TCDC_ON_ENTIRE_ATMOS,TCDC,144 +Cloud fraction on model surface,TCDC_ON_HYBRID_LVL,TCDC,145 +Master length scale on model surface,BMIXL_ON_HYBRID_LVL,BMIXL,146 +Asymptotic length scale on model surface,AMIXL_ON_HYBRID_LVL,AMIXL,147 +Cloud bottom pressure,PRES_ON_CLOUD_BASE,PRES,148 +Cloud top pressure,PRES_ON_CLOUD_TOP,PRES,149 +Surface midday albedo,ALBDO_ON_SURFACE,ALBDO,150 +Sea surface temperature,WTMP_ON_SURFACE,WTMP,151 +Ground heat flux - instantaneous,INST_GFLUX_ON_SURFACE,GFLUX,152 +Cloud water on pressure surface,CLMR_ON_ISOBARIC_SFC,CLMR,153 +Surface sensible heat flux – instantaneous,INST_SHTFL_ON_SURFACE,SHTFL,154 +Surface latent heat flux - instantaneous,INST_LHTFL_ON_SURFACE,LHTFL,155 +Incoming surface shortwave radiation - instantaneous,INST_DSWRF_ON_SURFACE,DSWRF,156 +Incoming surface longwave radiation - instantaneous,INST_DLWRF_ON_SURFACE,DLWRF,157 +10 M potential temperature,POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,POT,158 +10 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,SPFH,159 +Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,160 +Total cloud fraction,INST_TCDC_ON_ENTIRE_ATMOS,TCDC,161 +Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,162 +U component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,163 +V component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,164 +Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,165 +Cloud ice on pressure surface,ICMR_ON_ISOBARIC_SFC,ICMR,166 +Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,167 +Cloud top temperature,TMP_ON_CLOUD_TOP,TMP,168 +Heat exchange coeff at surface,SFEXC_ON_SURFACE,SFEXC,169 +Vegetation cover,VEG_ON_SURFACE,VEG,170 +Soil moisture availability,MSTAV_ON_DEPTH_BEL_LAND_SFC,MSTAV,171 +Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,172 +Maximum wind pressure level,PRES_ON_MAX_WIND,PRES,173 +Maximum wind height,HGT_ON_MAX_WIND,HGT,174 +U-component of maximum wind,UGRD_ON_MAX_WIND,UGRD,175 +V-component of maximum wind,VGRD_ON_MAX_WIND,VGRD,176 +Height at tropopause,HGT_ON_TROPOPAUSE,HGT,177 +Cloud bottom height (above MSL),HGT_ON_CLOUD_BASE,HGT,178 +Cloud top height (above MSL),HGT_ON_CLOUD_TOP,HGT,179 +Visibility,VIS_ON_SURFACE,VIS,180 +Rain on model surface,RWMR_ON_HYBRID_LVL,RWMR,181 +Snow on model surface,SNMR_ON_HYBRID_LVL,SNMR,182 +Rain on pressure surface,RWMR_ON_ISOBARIC_SFC,RWMR,183 +Snow water on pressure surface,SNMR_ON_ISOBARIC_SFC,SNMR,184 +Model level fraction of rain for Ferrier scheme,FRAIN_ON_HYBRID_LVL,FRAIN,185 +Model level fraction of ice for Ferrier scheme,FICE_ON_HYBRID_LVL,FICE,186 +Model level riming factor for Ferrier scheme,RIME_ON_HYBRID_LVL,RIME,187 +Convective cloud bottom pressure,PRES_ON_CONVECTIVE_CLOUD_BOT_LVL,PRES,188 +Convective cloud top pressure,PRES_ON_CONVECTIVE_CLOUD_TOP_LVL,PRES,189 +Shallow convective cloud bottom pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL,PRES,190 +Shallow convective cloud top pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL,PRES,191 +Deep convective cloud bottom pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL,PRES,192 +Deep convective cloud top pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL,PRES,193 +Grid scale cloud bottom pressure,PRES_ON_GRID_SCALE_CLOUD_BOT_LVL,PRES,194 +Grid scale cloud top pressure,PRES_ON_GRID_SCALE_CLOUD_TOP_LVL,PRES,195 +Convective cloud fraction,CDCON_ON_ENTIRE_ATMOS,CDCON,196 +Convective cloud efficiency,CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR,CUEFI,197 +Total condensate on pressure surface,TCOND_ON_ISOBARIC_SFC,TCOND,198 +Model level total condensate for Ferrier scheme,TCOND_ON_HYBRID_LVL,TCOND,199 +Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200 +Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,201 +Column integrated rain,TCOLR_ON_ENTIRE_ATMOS,TCOLR,202 +Column integrated snow,TCOLS_ON_ENTIRE_ATMOS,TCOLS,203 +Column integrated total condensate,TCOLC_ON_ENTIRE_ATMOS,TCOLC,204 +Height of sigma surface,HGT_ON_SIGMA_LVLS,HGT,205 +Temperature on sigma surface,TMP_ON_SIGMA_LVLS,TMP,206 +Specific humidity on sigma surface,SPFH_ON_SIGMA_LVLS,SPFH,207 +U-wind on sigma surface,UGRD_ON_SIGMA_LVLS,UGRD,208 +V-wind on sigma surface,VGRD_ON_SIGMA_LVLS,VGRD,209 +Omega on sigma surface,VVEL_ON_SIGMA_LVLS,VVEL,210 +Cloud water on sigma surface,CLMR_ON_SIGMA_LVLS,CLMR,211 +Cloud ice on sigma surface,ICMR_ON_SIGMA_LVLS,ICMR,212 +Rain on sigma surface,RWMR_ON_SIGMA_LVLS,RWMR,213 +Snow on sigma surface,SNMR_ON_SIGMA_LVLS,SNMR,214 +Condensate on sigma surface,TCOND_ON_SIGMA_LVLS,TCOND,215 +Pressure on sigma surface,PRES_ON_SIGMA_LVLS,PRES,216 +Turbulent kinetic energy on sigma surface,TKE_ON_SIGMA_LVLS,TKE,217 +Vegetation type,VGTYP_ON_SURFACE,VGTYP,218 +Soil type,SOTYP_ON_SURFACE,SOTYP,219 +Canopy conductance,CCOND_ON_SURFACE,CCOND,220 +PBL height,HPBL_ON_SURFACE,HPBL,221 +Cloud fraction on sigma surface,TCDC_ON_SIGMA_LVLS,TCDC,222 +Slope type,SLTYP_ON_SURFACE,SLTYP,223 +Snow depth,SNOD_ON_SURFACE,SNOD,224 +Liquid soil moisture,SOILL_ON_DEPTH_BEL_LAND_SFC,SOILL,225 +Snow free albedo,SNFALB_ON_SURFACE,SNFALB,226 +Maximum snow albedo,MXSALB_ON_SURFACE,MXSALB,227 +Canopy water evaporation,EVCW_ON_SURFACE,EVCW,228 +Direct soil evaporation,EVBS_ON_SURFACE,EVBS,229 +Plant transpiration,TRANS_ON_SURFACE,TRANS,230 +Snow sublimation,SBSNO_ON_SURFACE,SBSNO,231 +Air dry soil moisture,SMDRY_ON_SURFACE,SMDRY,232 +Soil moist porosity,POROS_ON_SURFACE,POROS,233 +Minimum stomatal resistance,RSMIN_ON_SURFACE,RSMIN,234 +Number of root layers,RLYRS_ON_SURFACE,RLYRS,235 +Soil moist wilting point,WILT_ON_SURFACE,WILT,236 +Soil moist reference,SMREF_ON_SURFACE,SMREF,237 +Canopy conductance - solar component,RCS_ON_SURFACE,RCS,238 +Canopy conductance - temperature component,RCT_ON_SURFACE,RCT,239 +Canopy conductance - humidity component,RCQ_ON_SURFACE,RCQ,240 +Canopy conductance - soil component,RCSOL_ON_SURFACE,RCSOL,241 +Potential evaporation,PEVPR_ON_SURFACE,PEVPR,242 +Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,243 +Accumulated large scale snow,Not currently available for grib2,NA,244 +Surface wind gust,GUST_ON_SURFACE,GUST,245 +LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,246 +LOWEST WET BULB ZERO HEIGHT,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,247 +Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,249 +Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,250 +Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,251 +Composite radar reflectivity,REFC_ON_ENTIRE_ATMOS,REFC,252 +Radar reflectivity at certain above ground heights,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,253 +Leaf area index,LAI_ON_SURFACE,LAI,254 +Graupel on sigma surface,GRLE_ON_SIGMA_LVLS,GRLE,255 +Accumulated land surface model precipitation,ACM_LSPA_ON_SURFACE,LSPA,256 +In-flight icing,TIPD_ON_ISOBARIC_SFC,TIPD,257 +Clear air turbulence,TPFI_ON_ISOBARIC_SFC,TPFI,258 +Wind shear between shelter level and 2000 FT,VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND,VWSH,259 +Ceiling,HGT_ON_CLOUD_CEILING,HGT,260 +Flight restriction,VIS_ON_CLOUD_BASE,VIS,261 +Instantaneous clear sky incoming surface shortwave,INST_CSDSF_ON_SURFACE,CSDSF,262 +Pressure level riming factor for Ferrier scheme,RIME_ON_ISOBARIC_SFC,RIME,263 +Model level vertical velocity,DZDT_ON_HYBRID_LVL,DZDT,264 +Brightness temperature,SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD,SBT122,265 +Average albedo,AVE_ALBDO_ON_SURFACE,ALBDO,266 +Ozone on model surface,O3MR_ON_HYBRID_LVL,O3MR,267 +Ozone on pressure surface,O3MR_ON_ISOBARIC_SFC,O3MR,268 +Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,269 +Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,270 +Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,271 +Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,272 +**Sigma pressure thickness on model surface**,PRES_ON_HYBRID_LVL_LLM,PRES,273 +Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,274 +Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,275 +Composite rain radar reflectivity,REFZR_ON_ENTIRE_ATMOS,REFZR,276 +Composite ice radar reflectivity,REFZI_ON_ENTIRE_ATMOS,REFZI,277 +Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,278 +Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,279 +Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,280 +Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,281 +Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,282 +**Pressure thickness on model surface**,PRES_ON_HYBRID_LVL_1L,PRES,283 +Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,284 +Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,285 +Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,286 +Height of lowest level super cool liquid water,HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,287 +Height of highest level super cool liquid water,HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,288 +Richardson number planetary boundary layer height,HGT_ON_PLANETARY_BOUND_LYR,HGT,289 +Total column shortwave temperature tendency,SWHR_ON_ENTIRE_ATMOS,SWHR,290 +Total column longwave temperature tendency,LWHR_ON_ENTIRE_ATMOS,LWHR,291 +Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,292 +Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,293 +Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,294 +Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,295 +**Temperature on sigma levels ???**,TMP_ON_SIGMA_LVL_HPC,TMP,296 +Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,297 +Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,298 +Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,299 +Average low cloud fraction,AVE_TCDC_ON_LOW_CLOUD_LYR,TCDC,300 +Average mid cloud fraction,AVE_TCDC_ON_MID_CLOUD_LYR,TCDC,301 +Average high cloud fraction,AVE_TCDC_ON_HIGH_CLOUD_LYR,TCDC,302 +Average low cloud bottom pressure,AVE_PRES_ON_LOW_CLOUD_BOT_LVL,PRES,303 +Average low cloud top pressure,AVE_PRES_ON_LOW_CLOUD_TOP_LVL,PRES,304 +Average low cloud top temperature,AVE_TMP_ON_LOW_CLOUD_TOP_LVL,TMP,305 +Average mid cloud bottom pressure,AVE_PRES_ON_MID_CLOUD_BOT_LVL,PRES,306 +Average mid cloud top pressure,AVE_PRES_ON_MID_CLOUD_TOP_LVL,PRES,307 +Average mid cloud top temperature,AVE_TMP_ON_MID_CLOUD_TOP_LVL,TMP,308 +Average high cloud bottom pressure,AVE_PRES_ON_HIGH_CLOUD_BOT_LVL,PRES,309 +Average high cloud top pressure,AVE_PRES_ON_HIGH_CLOUD_TOP_LVL,PRES,310 +Average high cloud top temperature,AVE_TMP_ON_HIGH_CLOUD_TOP_LVL,TMP,311 +Total column relative humidity,RH_ON_ENTIRE_ATMOS_SINGLE_LYR,RH,312 +Cloud work function,AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR,CWORK,313 +Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,314 +Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,315 +Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,316 +Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,317 +**Relative humidity on sigma level 0.44-1.0**,RH_ON_SIGMA_LVL_0.44-1.0,RH,318 +**Relative humidity on sigma level 0.72-0.94**,RH_ON_SIGMA_LVL_0.72-0.94,RH,319 +**Relative humidity on sigma level 0.44-0.72**,RH_ON_SIGMA_LVL_0.44-0.72,RH,320 +**Temperature on sigma level 0.9950**,TMP_ON_SIGMA_LVL_0.9950,TMP,321 +**Potential temperature on sigma level 0.9950**,POT_ON_SIGMA_LVL_0.9950,POT,322 +**Relative humidity on sigma level 0.9950**,RH_ON_SIGMA_LVL_0.9950,RH,323 +**U-wind at sigma level 0.9950**,UGRD_ON_SIGMA_LVL_0.9950,UGRD,324 +**V-wind at sigma level 0.9950**,VGRD_ON_SIGMA_LVL_0.9950,VGRD,325 +**Omega at sigma level 0.9950**,VVEL_ON_SIGMA_LVL_0.9950,VVEL,326 +Simulated GOES 12 channel 2 brightness temperature,SBT122_ON_TOP_OF_ATMOS,SBT122,327 +Simulated GOES 12 channel 3 brightness temperature,SBT123_ON_TOP_OF_ATMOS,SBT123,328 +Simulated GOES 12 channel 4 brightness temperature,SBT124_ON_TOP_OF_ATMOS,SBT124,329 +Simulated GOES 12 channel 5 brightness temperature,SBT126_ON_TOP_OF_ATMOS,SBT126,330 +Cloud fraction on pressure surface,TCDC_ON_ISOBARIC_SFC,TCDC,331 +U-wind on theta surface,UGRD_ON_ISENTROPIC_LVL,UGRD,332 +V-wind on theta surface,VGRD_ON_ISENTROPIC_LVL,VGRD,333 +Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,334 +Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,335 +U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,336 +V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,337 +Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,338 +Height on constant PV surface,HGT_ON_POT_VORT_SFC,HGT,339 +Pressure on constant PV surface,PRES_ON_POT_VORT_SFC,PRES,340 +Wind shear on constant PV surface,VWSH_ON_POT_VORT_SFC,VWSH,341 +Planetary boundary layer cloud fraction,AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR,TCDC,342 +Average water runoff,ACM_WATR_ON_SURFACE,WATR,343 +Planetary boundary layer regime,PBLREG_ON_SURFACE,PBLREG,344 +Maximum 2m temperature,MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMAX,345 +Minimum 2m temperature,MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMIN,346 +Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,347 +Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 +Ice thickness,ICETK_ON_SURFACE,ICETK,349 +Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,350 +**Lapse rate on theta surface ???**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 +Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 +Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 +Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 +Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 +**Vertical diffusion tendency on pressure surface???**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 +Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 +Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 +Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 +**Vertical diffusion moistening on pressure surface???**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 +Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 +Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 +**Large scale moistening on pressure surface???**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 +**Ozone vertical diffusion on pressure surface???**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 +**Ozone production on pressure surface???**,POZ_ON_ISOBARIC_SFC,POZ,365 +Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 +Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 +**Snow temperature on pressure surface???**,SNOT_ON_ISOBARIC_SFC,SNOT,368 +**Vertical diffusion zonal acceleration on pressure surface???**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 +**Gravity wave drag zonal acceleration on pressure surface???**,GWDU_ON_ISOBARIC_SFC,GWDU,370 +**Convective zonal momentum mixing acceleration on pressure surface???**,CNVU_ON_ISOBARIC_SFC,CNVU,371 +**Vertical diffusion meridional acceleration on pressure surface???**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 +**Gravity wave drag meridional acceleration on pressure surface???**,GWDV_ON_ISOBARIC_SFC,GWDV,373 +**Convective meridional momentum mixing acceleration on pressure surface???**,CNVV_ON_ISOBARIC_SFC,CNVV,374 +**Non-Convective Cloud Cover% on pressure surface???**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 +Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 +Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 +**Temperature tendency by all physics on pressure surface???**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 +**Vertical eddy diffusivity heat exchange on model surface???**,VEDH_ON_HYBRID_LVL,VEDH,380 +Mixing height,MIXHT_ON_SURFACE,MIXHT,381 +Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,382 +Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,383 +Average clear-sky outgoing longwave at surface,AVE_CSULF_ON_SURFACE,CSULF,384 +Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATMOS,CSULF,385 +Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,386 +Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,387 +Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 +Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 +Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 +**Convective updraft mass flux on pressure surface ???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 +**Convective downdraft mass flux on pressure surface ???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 +"**Convective detrainment mass flux (kg m-2 s-1) on pressure surface ???**",CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 +**Convective gravity grag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +**Convective gravity grag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 +Field capacity,FLDCP_ON_SURFACE,FLDCP,397 +ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 +ICAO height at tropopause,ICAHT_ON_TROPOPAUSE,ICAHT,399 +Radar echo top,RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR,RETOP,400 +Time averaged surface Visible beam downward solar flux,AVE_VBDSF_ON_SURFACE,VBDSF,401 +Time averaged surface Visible diffuse downward solar flux,AVE_VDDSF_ON_SURFACE,VDDSF,402 +Time averaged surface Near IR beam downward solar flux,AVE_NBDSF_ON_SURFACE,NBDSF,403 +Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,NDDSF,404 +Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,405 +GSD Cloud top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 +GSD Instant precipitation type on surface,GSD_INST_CRAIN_ON_SURFACE,CRAIN,407 +**GSD cloud ceiling height**,GSD_HGT_ON_CLOUD_CEILING,HGT,408 +GSD cloud top height,GSD_HGT_ON_CLOUD_TOP,HGT,409 +**GSD visibility**,GSD_VIS_ON_SURFACE,VIS,410 +Wind energy potential,WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND,WMIXE,411 +U wind at 80 m above ground,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,UGRD,412 +V wind at 80 m above ground,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,VGRD,413 +2 M mixing ratio,Not currently available for grib2,NA,414 +Graupel on model surface,GRLE_ON_HYBRID_LVL,GRLE,415 +Graupel on pressure surface,GRLE_ON_ISOBARIC_SFC,GRLE,416 +**Continuous accumulated total precipitation**,CACM_APCP_ON_SURFACE,APCP,417 +**Continuous accumulated convective precipitation**,CACM_ACPCP_ON_SURFACE,ACPCP,418 +**Continuous accumulated grid-scale precipitation**,CACM_NCPCP_ON_SURFACE,NCPCP,419 +Maximum updraft helicity,MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,420 +Maximum 1km reflectivity,MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,MAXREF,421 +Maximum wind speed at 10m,MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,422 +Maximum updraft vertical velocity,MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa,MAXUVV,423 +Maximum downdraft vertical velocity,MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa,MAXDVV,424 +Mean vertical velocity,AVE_DZDT_ON_SIGMA_LVL_0.5-0.8,DZDT,425 +Radar echo top in KDT,HGT_ON_SPEC_HGT_LVL_ABOVE_GRND,HGT,426 +Updraft helicity,UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,427 +**Total column graupel**,TCOLG_ON_ENTIRE_ATMOS,TCOLG,428 +Column integrated maximum graupel,MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR,TCOLG,429 +U-component of 0-1km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VUCSH,430 +V-component of 0-1km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VVCSH,431 +U-component of 0-6km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VUCSH,432 +V-component of 0-6km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VVCSH,433 +Total precipitation accumulated over user-specified bucket,BUCKET_APCP_ON_SURFACE,APCP,434 +Convective precipitation accumulated over user-specified bucket,BUCKET_ACPCP_ON_SURFACE,ACPCP,435 +Grid-scale precipitation accumulated over user-specified bucket,BUCKET_NCPCP_ON_SURFACE,NCPCP,436 +Snow accumulated over user-specified bucket,BUCKET_WEASD_ON_SURFACE,WEASD,437 +Dust 1 on pressure surface,DUST1_ON_ISOBARIC_LVL,MASSMR,438 +Dust 2 on pressure surface,DUST2_ON_ISOBARIC_LVL,MASSMR,439 +Dust 3 on pressure surface,DUST3_ON_ISOBARIC_LVL,MASSMR,440 +Dust 4 on pressure surface,DUST4_ON_ISOBARIC_LVL,MASSMR,441 +Dust 5 on pressure surface,DUST5_ON_ISOBARIC_LVL,MASSMR,442 +Equilibrium level height,HGT_ON_EQUIL_LVL,HGT,443 +Lightning,LTNG_ON_SURFACE,LTNG,444 +MAPS Sea Level Pressure,MAPS_PRMSL_ON_MEAN_SEA_LVL,PRMSL,445 +GOES west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,446 +GOES west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,447 +GOES west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,448 +GOES west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,449 +In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,450 +Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,451 +Virtual temperature based convective available potential energy (CAPE),VTCAPE_ON_SURFACE,CAPE,452 +Virtual temperature based convective inhibition (CIN),VTCIN_ON_SURFACE,CIN,453 +Ventilation rate,VRATE_ON_PLANETARY_BOUND_LYR,VRATE,454 +Haines index,HINDEX_ON_SURFACE,HINDEX,455 +Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,456 +Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,457 +Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,458 +Simulated GOES 12 channel 5 brightness temperature with satellite angle correction,NON_NADIR_SBT126_ON_TOP_OF_ATMOS,SBT126,459 +Simulated GOES 11 channel 2 brightness temperature with satellite angle correction,SBT112_ON_TOP_OF_ATMOS,SBT112,460 +Simulated GOES 11 channel 3 brightness temperature with satellite angle correction,SBT113_ON_TOP_OF_ATMOS,SBT113,461 +Simulated GOES 11 channel 4 brightness temperature with satellite angle correction,SBT114_ON_TOP_OF_ATMOS,SBT114,462 +Simulated GOES 11 channel 5 brightness temperature with satellite angle correction,SBT115_ON_TOP_OF_ATMOS,SBT115,463 +**GTG EDR turbulence on pressure surface**,EDPARM_ON_ISOBARIC_SFC,EDPARM,464 +**GTG CAT turbulence on pressure surface**,CAT_ON_ISOBARIC_SFC,CATEDR,465 +**GTG MWT turbulence on pressure surface**,MWTURB_ON_ISOBARIC_SFC,MWTURB,466 +**GTG EDR turbulence at specific altitude above mean sea level**,EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,EDPARM,467 +**GTG CAT turbulence at specific altitude above mean sea level**,CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,CATEDR,468 +**GTG MWT turbulence at specific altitude above mean sea level**,MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,MWTURB,469 +**GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 +**GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 +**GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 +**Horizontal extent of cumulonimbus (CB) % ???**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +**Height of base of cumulonimbus ???**,ICAHT_ON_CB_BASE,ICAHT,474 +**Height of top of cumulonimbus ???**,ICAHT_ON_CB_TOP,ICAHT,475 +**GTG EDR turbulence on standard atmospheric isobaric levels???**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 +**GTG CAT turbulence on standard atmospheric isobaric levels???**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 +**GTG MWT turbulence on standard atmospheric isobaric levels???**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 +**Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 +**GFIP in-flight icing severity on pressure surface**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 +**Total icing potential diagnostic on standard atmospheric isobaric surface ???**,ICIP_ON_ICAO_STD_SFC,ICIP,481 +Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,482 +Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,483 +Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,484 +Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,485 +Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,486 +**GSD experimental ceiling diagnostic**,GSD_EXP_CEILING,CEIL,487 +**Simulated Brightness Temperature for TMI TRMM channel 6 on top of atmosphere**,TMITB6_ON_TOP_OF_ATMOS,AMSRE9,488 +**Simulated Brightness Temperature for TMI TRMM channel 7 on top of atmosphere**,TMITB7_ON_TOP_OF_ATMOS,AMSRE10,489 +**Simulated Brightness Temperature for TMI TRMM channel 8 on top of atmosphere**,TMITB8_ON_TOP_OF_ATMOS,AMSRE11,490 +**Simulated Brightness Temperature for TMI TRMM channel 9 on top of atmosphere**,TMITB9_ON_TOP_OF_ATMOS,AMSRE12,491 +**Simulated Brightness Temperature for SSMI TB channel 4 on top of atmosphere**,SSMITB4_ON_TOP_OF_ATMOS,AMSRE9,492 +**Simulated Brightness Temperature for SSMI TB channel 5 on top of atmosphere**,SSMITB5_ON_TOP_OF_ATMOS,AMSRE10,493 +**Simulated Brightness Temperature for SSMI TB channel 6 on top of atmosphere**,SSMITB6_ON_TOP_OF_ATMOS,AMSRE11,494 +**Simulated Brightness Temperature for SSMI TB channel 7 on top of atmosphere**,SSMITB7_ON_TOP_OF_ATMOS,AMSRE12,495 +**Simulated Brightness Temperature for SSMIS TB channel 15 on top of atmosphere**,SSMISTB15_ON_TOP_OF_ATMOS,AMSRE9,496 +**Simulated Brightness Temperature for SSMIS TB channel 16 on top of atmosphere**,SSMISTB16_ON_TOP_OF_ATMOS,AMSRE10,497 +**Simulated Brightness Temperature for SSMIS TB channel 17 on top of atmosphere**,SSMISTB17_ON_TOP_OF_ATMOS,AMSRE11,498 +**Simulated Brightness Temperature for SSMIS TB channel 18 on top of atmosphere**,SSMISTB18_ON_TOP_OF_ATMOS,AMSRE12,499 +Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,500 +Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,501 +Time-averaged 10m temperature,AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,502 +Time-averaged mass exchange coefficient,AVE_AKHS_ON_SURFACE,AKHS,503 +Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,504 +Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,505 +Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,506 +Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,507 +**Maximum instantaneous precipitation rate on surface ???**,MAX_PRATE_ON_SURFACE,PRATE,508 +**Maximum specific humidity at 2m**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 +**Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 +**Aerodynamic conductance on surface???**,ACOND_ON_SURFACE,ACOND,512 +**Canopy water evaporation on surface???**,AVE_EVCW_ON_SURFACE,EVCW,513 +**Direct surface evaporation from bare soil???**,AVE_EVBS_ON_SURFACE,EVBS,514 +**Transpiration on surface???**,AVE_TRANS_ON_SURFACE,TRANS,515 +**Sublimation on surface ???**,AVE_SBSNO_ON_SURFACE,SBSNO,516 +**Potential evaporation rate on surface ???**,AVE_PEVPR_ON_SURFACE,PEVPR,517 +**Height on standard atmospheric isobaric levels**,HGT_ON_ICAO_STD_SFC,HGT,518 +**Temperature on standard atmospheric isobaric levels**,TMP_ON_ICAO_STD_SFC,TMP,519 +**U-component wind on standard atmospheric isobaric levels???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 +**V-component wind on standard atmospheric isobaric levels???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 +**Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 +**Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 +**Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 +**Bucket snow precipitation on surface**,BUCKET1_WEASD_ON_SURFACE,WEASD,529 +**Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 +**GSD shelter level potential temperature**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 +**GSD shelter level dewpoint depression**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 +**GSD shelter level surface equivalent potential temperature**,GSD_EPOT_ON_SURFACE,EPOT,548 +**Foundation temperature**,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 +**Categorical snow on surface**,CSNOW_ON_SURFACE,CSNOW,551 +**Categorical ice pellets on surface**,CICEP_ON_SURFACE,CICEP,552 +**Categorical freezing rain on surface**,CFRZR_ON_SURFACE,CFRZR,553 +**average Categorical snow on surface**,AVE_CSNOW_ON_SURFACE,CSNOW,555 +**average Categorical ice pellets on surface**,AVE_CICEP_ON_SURFACE,CICEP,556 +**average Categorical freezing rain on surface**,AVE_CFRZR_ON_SURFACE,CFRZR,557 +**GSD_Categorical snow on surface**,GSD_CSNOW_ON_SURFACE,CSNOW,559 +**GSD_Categorical ice pellets on surface**,GSD_CICEP_ON_SURFACE,CICEP,560 +**GSD_Categorical freezing rain on surface**,GSD_CFRZR_ON_SURFACE,CFRZR,561 +**GSD_average Categorical snow on surface**,GSD_AVE_CSNOW_ON_SURFACE,CSNOW,563 +**GSD_average Categorical ice pellets on surface**,GSD_AVE_CICEP_ON_SURFACE,CICEP,564 +**GSD_average Categorical freezing rain on surface**,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 +**Best boundary layer CAPE**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 +**Best boundary layer CIN**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 +**GFS sea level pressure???**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 +**GFS average total cloud fraction???**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 +**GFS total cloud fraction???**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 +GFS Soil temperature at the bottom of soil layers,GFS_TMP_ON_DEPTH_BEL_LAND_SFC_3m,TMP,571 +**GFS lifted index on surface**,GFS_LFTX_ON_SURFACE,LFTX,572 +**GFS lifted index on surface - best**,GFS_4LFTX_ON_SURFACE,4LFTX,573 +**Soil temperature in between each of soil layers**,GFS_TMP_ON_DEPTH_BEL_LAND_SFC,TMP,574 +Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 +**Flight-level u-component wind**,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 +**Flight-level v-component wind**,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 +**Flight level specific humidity**,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 +**Flight level pressure**,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 +**Flight level icing**,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 +**Entire Atmosphere Vertically Integrated Liquid (kg/m-2)**,VIL_ON_ENTIRE_ATMOS,VIL,581 +**Mixed-layer CAPE**,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 +**Mixed-layer CIN**,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 +**Most unstable CAPE**,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 +**Most unstable CIN**,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 +**Flight level temperature**,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 +**Flight level icing**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 +**Ice growth rate**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 +**GFS 2D aerosol optical depth at 550 nm**,AER_OPT_GFS_at550,AOTK,600 +**GFS 2D dust aerosol optical depth at 550 nm???**,DUST_AER_OPT_GFS_at550,AOTK,601 +**GFS 2D seasalt aerosol optical depth at 550 nm???**,SEASALT_AER_OPT_GFS_at550,AOTK,602 +**GFS 2D sulfate aerosol optical depth at 550 nm???**,SULFATE_AER_OPT_GFS_at550,AOTK,603 +**GFS 2D organic carbon aerosol optical depth at 550 nm???**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 +**GFS 2D black carbon aerosol optical depth at 550 nm???**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 +**Aerosol extinction coefficient on model surface???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 +**Asymmetry factor on model surface**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 +**Single scattering albedo on model surface**,SSALBK_ON_HYBRID_LVL,SSALBK,608 +**Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 +**Dust aerosol optical depth at 550nm**,DUST_AER_OPT_DEP_at550,AOTK,610 +**Seasalt aerosol optical depth at 550nm**,SEASALT_AER_OPT_DEP_at550,AOTK,611 +**Sulfate aerosol optical depth at 550nm**,SULFATE_AER_OPT_DEP_at550,AOTK,612 +**Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 +**Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 +**Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 +**Black carbon column mass density???**,BC_COL_MASS_DEN,COLMD,616 +**Organic carbon column mass density???**,OC_COL_MASS_DEN,COLMD,617 +**Sulfate column mass density???**,SULF_COL_MASS_DEN,COLMD,618 +**Aerosol surface PM10 mass concentration (ug/m3)**,PM10_SFC_MASS_CON,PMTC,619 +**Aerosol surface PM2.5 mass concentration (ug/m3)**,PM25_SFC_MASS_CON,PMTF,620 +**Total aerosol PM10 column mass density???**,PM10_COL_MASS_DEN,COLMD,621 +**Total aerosol (PM2.5) column mass density???**,PM25_COL_MASS_DEN,COLMD,622 +**Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 +**Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 +**Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 +**Aerosol optical depth at 860nm**,AER_OPT_DEP_at860,AOTK,626 +**Aerosol optical depth at 1630nm**,AER_OPT_DEP_at1630,AOTK,627 +**Aerosol optical depth at 11100nm**,AER_OPT_DEP_at11100,AOTK,628 +**Dust 1 on model surface**,DUST1_ON_HYBRID_LVL,PMTF,629 +**Dust 2 on model surface**,DUST2_ON_HYBRID_LVL,PMTF,630 +**Dust 3 on model surface**,DUST3_ON_HYBRID_LVL,PMTC,631 +**Dust 4 on model surface**,DUST4_ON_HYBRID_LVL,PMTC,632 +**Dust 5 on model surface**,DUST5_ON_HYBRID_LVL,PMTC,633 +**Seasalt 1 on model surface**,SEASALT1_ON_HYBRID_LVL,PMTF,634 +**Seasalt 2 on model surface**,SEASALT2_ON_HYBRID_LVL,PMTF,635 +**Seasalt 3 on model surface**,SEASALT3_ON_HYBRID_LVL,PMTC,636 +**Seasalt 4 on model surface**,SEASALT4_ON_HYBRID_LVL,PMTC,637 +**Seasalt 5 on model surface**,SEASALT5_ON_HYBRID_LVL,PMTC,638 +**SO4 on model surface**,SO4_ON_HYBRID_LVL,PMTF,639 +**Hydrophobic organic carbon on model surface**,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 +**Hydrophilic organic carbon on model surface**,OCPHILIC_ON_HYBRID_LVL,PMTF,641 +**Hydrophobic black carbon on model surface**,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 +**Hydrophilic black carbon on model surface**,BCPHILIC_ON_HYBRID_LVL,PMTF,643 +**Air density on model surface**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 +**Layer thickness on model surface**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 +**Dust PM2.5 column mass density**,DUST_COL_MASS_DEN,COLMD,646 +**Sea salt PM2.5 column mass density**,SEAS_COL_MASS_DEN,COLMD,647 +**Aerosol single scattering albedo at 340 nm**,SINGLE_SCAT_ALBD_at340,SSALBK,648 +**Aersol asymmetry factor at 340nm**,AER_ASYM_FACTOR_at340,ASYSFK,649 +**Total aerosol scattering optical depth at 550nm**,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 +**Dust aerosol scattering optical depth at 550nm**,DUST_AER_SCAT_OPT_DEP_at550,SCTAOTK,651 +**Seasalt aerosol scattering optical depth at 550nm**,SEASALT_AER_SCAT_OPT_DEP_at550,SCTAOTK,652 +**Sulfate aerosol scattering optical depth at 550nm**,SULFATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,653 +**Organic carbon aerosol scattering optical depth at 550nm**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 +**Black carbon aerosol scattering optical depth at 550nm**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 +**Angstrom exponent**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 +**NO3 column mass density???**,NO3_COL_MASS_DEN,COLMD,657 +**NH4 column mass density???**,NH4_COL_MASS_DEN,COLMD,658 +**Dust emission flux**,DUST_EMISSION_FLUX,AEMFLX,659 +**Dust sedimentation flux**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 +**Dust dry deposition flux**,DUST DRY DEPOSITION,DDMFLX,661 +**Dust wet deposition flux**,DUST WET DEPOSITION,WLSMFLX,662 +**Seasalt emission flux**,SEASALT_EMISSION_FLUX,AEMFLX,663 +**Seasalt sedimentation flux**,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 +**Seasalt dry deposition flux**,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 +**Seasalt wet deposition flux**,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 +**Black carbon emission flux**,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 +**Black carbon sedimentation flux**,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 +**Black carbon dry deposition flux**,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 +**Black carbon wet deposition flux**,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 +**Organic carbon emission flux**,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 +**Organic carbon sedimentation flux**,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 +**Organic carbon dry deposition flux**,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 +**Organic carbon wet deposition flux**,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 +**Sulfate emission flux**,SULFATE_EMISSION_FLUX,AEMFLX,675 +**Sulfate sedimentation flux**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 +**Sulfate dry deposition flux**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 +**Sulfate wet deposition flux**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 +**Dust scavenging flux???**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 +**Seasalt scavenging flux???**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 +**Black carbon scavenging flux???**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 +**Organic carbon scavenging flux???**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 +**Seasalt coarse aersol mass density concentration on model surface???**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 +**Seasalt 2.5 mass density concentration on model surface???**,SEAS25_SFC_MASS_CON,PMTF,684 +**Dust 10 mass density concentration on model surface???**,DUST10_SFC_MASS_CON,PMTC,685 +**Dust 2.5 mass density concentration on model surface???**,DUST25_SFC_MASS_CON,PMTF,686 +**Nitrate aerosol scattering optimal depth at 550nm**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 +**NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 +**NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 +**Sulfate aerosol surface mass density concentration???**,SU_AER_SFC_MASS_CON,MASSDEN,689 +**Instantaneous sulfate aerosol surface mass concentration???**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 +**Instantaneous organic carbon aerosol surface mass concentration???**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 +**Instantaneous black carbon aerosol surface mass concentration???**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 +**Instantaneous coarse dust aerosol surface mass concentration???**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 +**Instantaneous fine dust aerosol surface mass concentration???**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 +**Instantaneous coarse seasalt aerosol surface mass concentration???**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 +**Instantaneous fine seasalt aerosol surface mass concentration???**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 +**Instantaneous coarse aerosol surface mass concentration???**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 +**Instantaneous fine aerosol surface mass concentration???**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 +**Mie-based aerosol optical depth at 550nm**,MIE_OPT_DEP_at550,AOTK,699 +**GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 +**GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 +**GSD Max lightning threat 1???**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 +**GSD Max lightning threat 2???**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 +**GSD Max lightning threat 3???**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 +GSD Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 +GSD Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 +GSD Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 +GSD Convective Activity Vertical Hydrometeor Flux,GSD_NCA_WQ_ON_ENTIRE_ATMOS,NCAWQ,708 +GSD Convective Initiation Reflectivity,GSD_NCI_REFL_ON_ENTIRE_ATMOS,TSEC,709 +GSD Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 +**Experimental cloud base height**,GSD_EXP_CEILING_2,CEIL,711 +**AQM aerosol optical depth at 550 nm**,AER_OPT_AQM_at550,AOTK,712 +**Instantaneous all-sky outgoing shortwave flux at model top**,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 +**GSD accumulated depth of snowfall**,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 +**Minimum green vegetation fraction**,VEG_MIN_ON_SURFACE,VEGMIN,726 +**GSD updraft helicity**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 +**Max hail diameter at surface from WRF HAILCAST algorithm**,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 +**Maximum green vegetation fraction**,VEG_MAX_ON_SURFACE,VEGMAX,729 +**Time-averaged 10 M wind speed**,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 +**Time-averaged 10 M u-component wind**,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 +**Time-averaged 10 M v-component wind**,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 +**Time-averaged downward short-wave radiation flux**,GSD_AVE_DSWRF_ON_SURFACE,DSWRF,733 +**Time-averaged visible beam downward solar flux**,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 +**Total column aerosol optical depth**,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 +**Total column fire smoke**,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 +**Smoke on model surface**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 +**Smoke on pressure surface**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 +**Smoke at 8m above ground**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 +**Instantaneous mean fire radiative power (FRP)**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 +**Total column dust**,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 +**Dust on model surface**,DUST_ON_HYBRID_LVL,MASSDEN,742 +**Dust on pressure surface**,DUST_ON_ISOBARIC_SFC,MASSDEN,743 +**Dust at 8m above ground**,DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,744 +**Biomass burning emissions**,BIOMASS_BURNING_EMISSIONS,AEMFLX,745 +**Accumulated graupel**,ACM_GRAUPEL_ON_SURFACE,FROZR,746 +Number concentration for cloud water drops on hybrid level,GSD_NCCD_ON_HYBRID_LVL,NCONCD,747 +**Radar reflectivity at 1km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,REFD,748 +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER,GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS,RH_PWAT,749 +**Water vapor mixing ratio on model surface**,GSD_WV_MIXR_ON_HYBRID_LVL,MIXR,750 +**Virtual potential temperature on model surface**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 +Number concentration for ice particles on hybrid level,GSD_NCIP_ON_HYBRID_LVL,NCIP,752 +GSD pressure on level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 +**Number concentration of rain drops on model surface???**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 +Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 +GSD pressure on highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 +**GSD radar reflectivity at 4km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 +**GSD convective cloud top height???**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 +**GSD shelter mixing ratio**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 +**GSD snow temperature???**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 +**GSD surface mixing ratio**,GSD_MIXR_ON_SURFACE,MIXR,762 +**GSD mixing ration on level of free convection (LFC)???**,GSD_MIXR_ON_LFC,MIXR,763 +**Instantaneous clear-sky downwelling longwave at the surface**,CSDLF_ON_SURFACE,CSDLF,764 +**Instantaneous clear-sky upwelling longwave at the surface**,CSULF_ON_SURFACE,CSULF,765 +**GSD water-friendly aerosol number concentration on model surface**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 +**GSD ice-friendly aerosol number concentration on model surface**,GSD_NCIFA_ON_HYBRID_LVL,PMTC,767 +Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level),GSD_ECHOTOP_ON_CLOUD_TOP,RETOP,768 +**GSD Vertically integrated liquid in kg/m^2**,GSD_VIL_ON_ENTIRE_ATMOS,VIL,769 +**GSD Vertically integrated liquid based on reflectivity factor in kg/m^2**,GSD_RADARVIL_ON_ENTIRE_ATMOS,RADARVIL,770 +**Instantaneous shortwave surface downward direct normal irradiance**,INST_SWDDNI_ON_SURFACE,VBDSF,772 +**Instantaneous shortwave surface downward diffuse irradiance**,INST_SWDDIF_ON_SURFACE,VDDSF,773 +**Model-state cloud fraction (unprocessed) on model surface**,FRACCC_ON_HYBRID_LVL,FRACCC,774 +Bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 +Height on highest tropospheric -10C level,HGT_ON_HGHST_TROP_-10C_LVL,HGT,776 +Relative humidity on highest tropospheric -10C level,RH_ON_HGHST_TROP_-10C_LVL,RH,777 +Pressure on highest tropospheric -10C level,PRES_ON_HGHST_TROP_-10C_LVL,PRES,778 +Height on highest tropospheric -20C level,HGT_ON_HGHST_TROP_-20C_LVL,HGT,779 +Relative humidity on highest tropospheric -20C level,RH_ON_HGHST_TROP_-20C_LVL,RH,780 +Pressure on highest tropospheric -20C level,PRES_ON_HGHST_TROP_-20C_LVL,PRES,781 +**Accumulated freezing rain**,ACM_FRAIN_ON_SURFACE,FRZR,782 +Maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 +Maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 +Maximum reflectivity on -10C surface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 +**Global Systems Division (GSD) Minimum updraft helicity 2-5km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 +**GSD Minimum updraft helicity 1-6 km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 +**GSD Maximum updraft helicity 0-2km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 +**GSD Minimum updraft helicity 0-2km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 +**GSD Maximum updraft helicity 0-3km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 +**GSD Minimum updraft helicity 0-3km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 +**GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 +**GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 +**GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 +**GSD Maximum hail diameter at k=1???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 +**Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 +**GSD maximum cloud fraction in (PBL + 1 km)**,TCDC_ON_BOUND_LYR,TCDC,799 +SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,800 +SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,806 +**Shelter level apparent temperature**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 +SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,812 +SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 +SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 +SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,839 +SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 +MTSAT2 imager channels 1-4,Not currently available for grib2,NA,860 +MTSAT-1r imager channels 1-4 (backup for mtsat2),Not currently available for grib2,NA,864 +Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,865 +Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,868 +Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,872 +Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,876 +Hourly max relative vorticity on hybrid level 1,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1,RELV,890 +Virtual temperature on model surfaces,Not currently available for grib2,NA,909 +Virtual temperature on pressure surfaces,Not currently available for grib2,NA,910 +Virtual temperature on flight levels,Not currently available for grib2,NA,911 +**Radar reflectivity at -10C**,REFD_ON_ISOTHERMAL,REFD,912 +**1h precipitation comparison to Flash Flood Guidance (FFG) thresholds**,1H_FFG_EXCEEDANCE,FFLDRO,913 +**Total accumulated precipitation comparison to FFG thresholds**,ACM_FFG_EXCEEDANCE,FFLDRO,914 +**1h precipitation comparison with 2-year Average Recurrence Interval (ARI) threshold**,1H_2YARI_EXCEEDANCE,GWLOWS,915 +**Total accumulated precipitation comparison with 2-year ARI threshold**,ACM_2YARI_EXCEEDANCE,GWLOWS,916 +**1h precipitation comparison with 5-year ARI threshold**,1H_5YARI_EXCEEDANCE,GWLOWS,917 +**Total accumulated precipitation comparison with 5-year ARI threshold**,ACM_5YARI_EXCEEDANCE,GWLOWS,918 +**1h precipitation comparison with 10-year ARI threshold**,1H_10YARI_EXCEEDANCE,GWLOWS,919 +**Total accumulated precipitation comparison with 10-year ARI threshold**,ACM_10YARI_EXCEEDANCE,GWLOWS,920 +**1h precipitation comparison with 100-year ARI threshold**,1H_100YARI_EXCEEDANCE,GWLOWS,921 +**Total accumulated precipitation comparison with 100-year ARI threshold**,ACM_100YARI_EXCEEDANCE,GWLOWS,922 +Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,927 +Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,928 +Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,929 +Simulated GOES 16 band 10 brightness temperature,SBTA1610_ON_TOP_OF_ATMOS,SBTA1610,930 +Simulated GOES 16 band 11 brightness temperature,SBTA1611_ON_TOP_OF_ATMOS,SBTA1611,931 +Simulated GOES 16 band 12 brightness temperature,SBTA1612_ON_TOP_OF_ATMOS,SBTA1612,932 +Simulated GOES 16 band 13 brightness temperature,SBTA1613_ON_TOP_OF_ATMOS,SBTA1613,933 +Simulated GOES 16 band 14 brightness temperature,SBTA1614_ON_TOP_OF_ATMOS,SBTA1614,934 +Simulated GOES 16 band 15 brightness temperature,SBTA1615_ON_TOP_OF_ATMOS,SBTA1615,935 +Simulated GOES 16 band 16 brightness temperature,SBTA1616_ON_TOP_OF_ATMOS,SBTA1616,936 +Simulated GOES 17 band 7 brightness temperature,SBTA177_ON_TOP_OF_ATMOS,SBTA177,937 +Simulated GOES 17 band 8 brightness temperature,SBTA178_ON_TOP_OF_ATMOS,SBTA178,938 +Simulated GOES 17 band 9 brightness temperature,SBTA179_ON_TOP_OF_ATMOS,SBTA179,939 +Simulated GOES 17 band 10 brightness temperature,SBTA1710_ON_TOP_OF_ATMOS,SBTA1710,940 +Simulated GOES 17 band 11 brightness temperature,SBTA1711_ON_TOP_OF_ATMOS,SBTA1711,941 +Simulated GOES 17 band 12 brightness temperature,SBTA1712_ON_TOP_OF_ATMOS,SBTA1712,942 +Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA1713,943 +Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,944 +Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,945 +Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,946 +**CAPE on 0_3KM above ground???**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 +**CIN on 0_3KM above ground???**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 +**LFC height**,HGT_ON_LFC,HGT,952 +**Effective storm relative helicity???**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 +**Downdraft CAPE**,DOWNWARD_CAPE,DCAPE,954 +**Dendritic layer depth**,DENDRITIC_LAYER_DEPTH,LAYTH,955 +**Enhanced stretching potential**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 +**Critical angle**,CRITICAL_ANGLE,DCAPE,957 +Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,958 +Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,959 +Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,960 +Simulated GOES R band 10 brightness temperature,SBTAGR10_ON_TOP_OF_ATMOS,SBTAGR10,961 +Simulated GOES R band 11 brightness temperature,SBTAGR11_ON_TOP_OF_ATMOS,SBTAGR11,962 +Simulated GOES R band 12 brightness temperature,SBTAGR12_ON_TOP_OF_ATMOS,SBTAGR12,963 +Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR13,964 +Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,965 +Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,966 +Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,967 +**Sea ice skin temperature**,ICETMP_ON_SURFACE,ICETMP,968 +Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,969 +Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,970 +Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,971 +Simulated Himawari-8 band 10 brightness temperature,SBTAHI10_ON_TOP_OF_ATMOS,SBTAHI10,972 +Simulated Himawari-8 band 11 brightness temperature,SBTAHI11_ON_TOP_OF_ATMOS,SBTAHI11,973 +Simulated Himawari-8 band 12 brightness temperature,SBTAHI12_ON_TOP_OF_ATMOS,SBTAHI12,974 +Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBTAHI13,975 +Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,976 +Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,977 +Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,978 +**Effective surface height on effective layer bottom???**,EFSH_ON_EFBL,EFSH,979 +**Effective surface height on effective layer top???**,EFSH_ON_EFTL,EFSH,980 +**Temperature at EL top???**,ELMELT_ON_EFTL,ELMELT,982 +**U-inflow based to 50% EL shear vector**,UESH_ON_EFL,UESH,983 +**V-inflow based to 50% EL shear vector**,VESH_ON_EFL,VESH,984 +**Inflow based (ESFC) to (50%) EL shear magnitude???**,ESHR_ON_EFL,ESHR,985 +**U-component Bunkers Effective right motion???**,UEID_ON_EFL,UEID,986 +**V-component Bunkers Effective right motion???**,VEID_ON_EFL,VEID,987 +**Effective layer helicity???**,E3KH_ON_EFL,E3KH,988 +**Effective layer significant tornado parameter with CIN**,STPC_ON_EFL,STPC,989 +**Fixed layer tornado parameter**,SIGT_ON_EFL,SIGT,990 +**Effective layer supercell composite parameter**,SCCP_ON_EFL,SCCP,991 +**Mixed Layer (100 mb) virtual LFC**,MLFC_ON_EFL,MLFC,992 +**Significant hail parameter**,SIGH_ON_EFL,SIGH,993 +**Average ozone concentration on model surface???**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 +**Average PM25 on model surface???**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 +**Land fraction**,LAND_FRAC,LANDFRC,996 +**Instantaneous precipitation advected heat flux**,INST_PREC_ADVEC_HEAT,PAHFLX,997 +**Water storage in aquifer**,WATER_AQUIFER,WATERSA,998 +**Accumulated evaporation of intercepted water**,ACM_EIWATER_ON_SURFACE,EIWATER,999 +**Accumulated plant transpiration on surface**,ACM_PLANTTR_ON_SURFACE,PLANTTR,1000 +**Accumulated soil surface evaporation**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 +**Average precipitation advected heat flux**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 +**Bucket freezing rain on surface**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 +**Accumulated snowfall on surface???**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 +**Bucket snowfall on surface**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 +**Snow density solid-liquid ratio on surface???**,SDEN_ON_SURFACE,SDEN,1006 +**Icing probability on flight levels???**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 +**Supercooled large droplet icing on flight levels???**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 +**Icing severity category on flight levels???**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 +**WMO icing severity category on flight levels???**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 +**Total column coarse articulate matter (PM)**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 +**Coarse particulate matter on model surface**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 +**Coarse particulate matter on pressure surface**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 +**Coarse particulate matter at 8m above ground**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 +**Simulated Brightness Temperature for ABI GOES-18 Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810 +**Simulated Brightness Temperature for ABI GOES-18 Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811 +**Simulated Brightness Temperature for ABI GOES-18 Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812 +**Simulated Brightness Temperature for ABI GOES-18 Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813 +**Simulated Brightness Temperature for ABI GOES-18 Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814 +**Simulated Brightness Temperature for ABI GOES-18 Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815 +**Simulated Brightness Temperature for ABI GOES-18 Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816 +**Simulated Brightness Temperature for ABI GOES-18 Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187 +**Simulated Brightness Temperature for ABI GOES-18 Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188 +**Simulated Brightness Temperature for ABI GOES-18 Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189 +**Simulated Brightness Temperature for SSMIS-F17 Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715 +**Simulated Brightness Temperature for SSMIS-F17 Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716 +**Simulated Brightness Temperature for SSMIS-F17 Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717 +**Simulated Brightness Temperature for SSMIS-F17 Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718 \ No newline at end of file diff --git a/docs/UPP_GRIB2_Table_byID.rst b/docs/UPP_GRIB2_Table_byID.rst index 56a0ac1a7..65f2e40f2 100644 --- a/docs/UPP_GRIB2_Table_byID.rst +++ b/docs/UPP_GRIB2_Table_byID.rst @@ -6,11 +6,10 @@ GRIB2 Fields Produced by UPP GRIB2 fields produced by UPP (column 1), abbreviated names used in the *postcntrl.xml* file (column 2), corresponding standard -grib2 pname (column 3), corresponding grib identification number for the -vertical coordinate (column 4), and corresponding array location UPP +grib2 pname (column 3), and corresponding array location UPP uses to store the variable in parallel arrays (column 5). .. csv-table:: :file: UPP_GRIB2_Table_byID.csv - :widths: 25, 30, 15, 15, 15 + :widths: 25, 30, 15, 15 :header-rows: 1 From 332e3d55e8553b7e6b6a387b041d2814fe0a2596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 11:51:47 -0400 Subject: [PATCH 19/44] minor updates/formatting --- docs/UPP_GRIB2_Table.csv | 43 ++++++++++++++++------------------- docs/UPP_GRIB2_Table_byID.csv | 43 ++++++++++++++++------------------- 2 files changed, 40 insertions(+), 46 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index bb2358f4d..f15eb449a 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -8,8 +8,8 @@ Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,4 Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,5 Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,6 Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,83 -U component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,7 -V component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,8 +U-component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,7 +V-component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,8 Cloud water on model surface,CLMR_ON_HYBRID_LVL,CLMR,124 Cloud ice on model surface,ICMR_ON_HYBRID_LVL,ICMR,125 Rain on model surface,RWMR_ON_HYBRID_LVL,RWMR,181 @@ -30,8 +30,8 @@ Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,15 Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,16 Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,17 Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,85 -U component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,18 -V component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,19 +U-component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,18 +V-component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,19 Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,20 Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,21 Geostrophic streamfunction on pressure surface,STRM_ON_ISOBARIC_SFC,STRM,86 @@ -49,8 +49,8 @@ Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,105 2 M mixing ratio,Not currently available for grib2,NA,414 2 M dew point temperature,DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DPT,113 2 M RH,RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,RH,114 -10 M u component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 -10 M v component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 +10 M u-component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 +10 M v-component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 10 M potential temperature,POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,POT,158 10 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,SPFH,159 Surface pressure,PRES_ON_SURFACE,PRES,24 @@ -88,8 +88,8 @@ Column integrated snow,TCOLS_ON_ENTIRE_ATMOS,TCOLS,203 Column integrated total condensate,TCOLC_ON_ENTIRE_ATMOS,TCOLC,204 Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,162 -U component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,163 -V component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,164 +U-component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,163 +V-component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,164 Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,87 Accumulated convective precipitation,ACM_ACPCP_ON_SURFACE,ACPCP,33 Accumulated grid-scale precipitation,ACM_NCPCP_ON_SURFACE,NCPCP,34 @@ -298,7 +298,7 @@ Turbulent kinetic energy on sigma surface,TKE_ON_SIGMA_LVLS,TKE,217 Cloud fraction on sigma surface,TCDC_ON_SIGMA_LVLS,TCDC,222 Graupel on sigma surface,GRLE_ON_SIGMA_LVLS,GRLE,255 LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,246 -LOWEST WET BULB ZERO HEIGHT,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,247 +Lowest wet bulb zero height,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,247 Leaf area index,LAI_ON_SURFACE,LAI,254 Accumulated land surface model precipitation,ACM_LSPA_ON_SURFACE,LSPA,256 In-flight icing,TIPD_ON_ISOBARIC_SFC,TIPD,257 @@ -432,13 +432,13 @@ Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATM Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,386 Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,387 Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 -Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 -Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 +Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 +Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 **Convective updraft mass flux on pressure surface ???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 **Convective downdraft mass flux on pressure surface ???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 **Convective detrainment mass flux (kg m-2 s-1) on pressure surface ???**,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 -**Convective gravity grag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 -**Convective gravity grag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +**Convective gravity drag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +**Convective gravity drag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 Field capacity,FLDCP_ON_SURFACE,FLDCP,397 ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 @@ -750,21 +750,18 @@ Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model **Instantaneous shortwave surface downward diffuse irradiance**,INST_SWDDIF_ON_SURFACE,VDDSF,773 **Model-state cloud fraction (unprocessed) on model surface**,FRACCC_ON_HYBRID_LVL,FRACCC,774 Bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 -Height on highest tropospheric -10C level,HGT_ON_HGHST_TROP_-10C_LVL,HGT,776 -Relative humidity on highest tropospheric -10C level,RH_ON_HGHST_TROP_-10C_LVL,RH,777 -Pressure on highest tropospheric -10C level,PRES_ON_HGHST_TROP_-10C_LVL,PRES,778 -Height on highest tropospheric -20C level,HGT_ON_HGHST_TROP_-20C_LVL,HGT,779 -Relative humidity on highest tropospheric -20C level,RH_ON_HGHST_TROP_-20C_LVL,RH,780 -Pressure on highest tropospheric -20C level,PRES_ON_HGHST_TROP_-20C_LVL,PRES,781 +Height on highest tropospheric -10C level,`HGT_ON_HGHST_TROP_-10C_LVL`,HGT,776 +Relative humidity on highest tropospheric -10C level,`RH_ON_HGHST_TROP_-10C_LVL`,RH,777 +Pressure on highest tropospheric -10C level,`PRES_ON_HGHST_TROP_-10C_LVL`,PRES,778 +Height on highest tropospheric -20C level,`HGT_ON_HGHST_TROP_-20C_LVL`,HGT,779 +Relative humidity on highest tropospheric -20C level,`RH_ON_HGHST_TROP_-20C_LVL`,RH,780 +Pressure on highest tropospheric -20C level,`PRES_ON_HGHST_TROP_-20C_LVL`,PRES,781 **Accumulated freezing rain**,ACM_FRAIN_ON_SURFACE,FRZR,782 Maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 Maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 -Maximum reflectivity on -10C surface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 +Maximum reflectivity on -10C surface,`MAX_REF_ON_ISOTHERMAL_-10C`,REFD,785 **GSD maximum cloud fraction in (PBL + 1 km)**,TCDC_ON_BOUND_LYR,TCDC,799 **Shelter level apparent temperature**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 -SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,800 -SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,806 -SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,812 SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 **Simulated Brightness Temperature for SSMIS-F17 Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 **Simulated Brightness Temperature for SSMIS-F17 Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index b7ee914ae..587ed14c3 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -5,8 +5,8 @@ Potential temperature on model surface,POT_ON_HYBRID_LVL,POT,3 Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,4 Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,5 Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,6 -U component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,7 -V component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,8 +U-component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,7 +V-component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,8 Omega on model surface,VVEL_ON_HYBRID_LVL,VVEL,9 Absolute vorticity on model surface,ABSV_ON_HYBRID_LVL,ABSV,10 Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,11 @@ -16,8 +16,8 @@ Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,14 Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,15 Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,16 Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,17 -U component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,18 -V component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,19 +U-component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,18 +V-component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,19 Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,20 Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,21 Turbulent kinetic energy on pressure surface,TKE_ON_ISOBARIC_SFC,TKE,22 @@ -60,8 +60,8 @@ U wind at flight levels,UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,UGRD,60 V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,61 Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,62 Freezing level RH,RH_ON_0C_ISOTHERM,RH,63 -10 M u component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 -10 M v component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 +10 M u-component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 +10 M v-component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 **Relative humidity on sigma levels 0.33-1.0**,RH_ON_SIGMA_LVL_0.33-1.0,RH,66 Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,67 Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,68 @@ -159,8 +159,8 @@ Incoming surface longwave radiation - instantaneous,INST_DLWRF_ON_SURFACE,DLWRF, Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,160 Total cloud fraction,INST_TCDC_ON_ENTIRE_ATMOS,TCDC,161 Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,162 -U component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,163 -V component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,164 +U-component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,163 +V-component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,164 Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,165 Cloud ice on pressure surface,ICMR_ON_ISOBARIC_SFC,ICMR,166 Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,167 @@ -243,7 +243,7 @@ Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,243 Accumulated large scale snow,Not currently available for grib2,NA,244 Surface wind gust,GUST_ON_SURFACE,GUST,245 LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,246 -LOWEST WET BULB ZERO HEIGHT,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,247 +Lowest wet bulb zero height,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,247 Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,249 Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,250 Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,251 @@ -384,13 +384,13 @@ Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATM Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,386 Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,387 Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 -Transport wind u component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 -Transport wind v component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 +Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 +Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 **Convective updraft mass flux on pressure surface ???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 **Convective downdraft mass flux on pressure surface ???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 "**Convective detrainment mass flux (kg m-2 s-1) on pressure surface ???**",CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 -**Convective gravity grag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 -**Convective gravity grag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +**Convective gravity drag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +**Convective gravity drag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 Field capacity,FLDCP_ON_SURFACE,FLDCP,397 ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 @@ -724,16 +724,16 @@ Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model **Instantaneous shortwave surface downward diffuse irradiance**,INST_SWDDIF_ON_SURFACE,VDDSF,773 **Model-state cloud fraction (unprocessed) on model surface**,FRACCC_ON_HYBRID_LVL,FRACCC,774 Bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 -Height on highest tropospheric -10C level,HGT_ON_HGHST_TROP_-10C_LVL,HGT,776 -Relative humidity on highest tropospheric -10C level,RH_ON_HGHST_TROP_-10C_LVL,RH,777 -Pressure on highest tropospheric -10C level,PRES_ON_HGHST_TROP_-10C_LVL,PRES,778 -Height on highest tropospheric -20C level,HGT_ON_HGHST_TROP_-20C_LVL,HGT,779 -Relative humidity on highest tropospheric -20C level,RH_ON_HGHST_TROP_-20C_LVL,RH,780 -Pressure on highest tropospheric -20C level,PRES_ON_HGHST_TROP_-20C_LVL,PRES,781 +Height on highest tropospheric -10C level,`HGT_ON_HGHST_TROP_-10C_LVL`,HGT,776 +Relative humidity on highest tropospheric -10C level,`RH_ON_HGHST_TROP_-10C_LVL`,RH,777 +Pressure on highest tropospheric -10C level,`PRES_ON_HGHST_TROP_-10C_LVL`,PRES,778 +Height on highest tropospheric -20C level,`HGT_ON_HGHST_TROP_-20C_LVL`,HGT,779 +Relative humidity on highest tropospheric -20C level,`RH_ON_HGHST_TROP_-20C_LVL`,RH,780 +Pressure on highest tropospheric -20C level,`PRES_ON_HGHST_TROP_-20C_LVL`,PRES,781 **Accumulated freezing rain**,ACM_FRAIN_ON_SURFACE,FRZR,782 Maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 Maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 -Maximum reflectivity on -10C surface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 +Maximum reflectivity on -10C surface,`MAX_REF_ON_ISOTHERMAL_-10C`,REFD,785 **Global Systems Division (GSD) Minimum updraft helicity 2-5km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 **GSD Minimum updraft helicity 1-6 km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 **GSD Maximum updraft helicity 0-2km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 @@ -746,10 +746,7 @@ Maximum reflectivity on -10C surface,MAX_REF_ON_ISOTHERMAL_-10C,REFD,785 **GSD Maximum hail diameter at k=1???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 **Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 **GSD maximum cloud fraction in (PBL + 1 km)**,TCDC_ON_BOUND_LYR,TCDC,799 -SSMI F13 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,800 -SSMI F14 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,806 **Shelter level apparent temperature**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 -SSMI F15 (19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,812 SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,839 From 0dd55e3e2dd8a1faddce0ac6a3c2b19b29579913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 13:49:49 -0400 Subject: [PATCH 20/44] minor updates/formatting to tables --- docs/UPP_GRIB2_Table.csv | 200 +++++++++++++++-------------- docs/UPP_GRIB2_Table_byID.csv | 230 +++++++++++++++++----------------- 2 files changed, 211 insertions(+), 219 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index f15eb449a..77abf9db3 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -237,7 +237,7 @@ Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,172 **GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 **GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 **GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 -**GSD Maximum hail diameter at k=1???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 +**GSD Maximum hail diameter at k=1**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 **Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 GSD Cloud top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 @@ -340,7 +340,7 @@ Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,292 Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,293 Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,294 Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,295 -**Temperature on sigma levels ???**,TMP_ON_SIGMA_LVL_HPC,TMP,296 +**Temperature on sigma levels**,TMP_ON_SIGMA_LVL_HPC,TMP,296 Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,297 Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,298 Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,299 @@ -382,7 +382,7 @@ Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,334 Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,335 Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 -**Lapse rate on theta surface ???**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 +**Lapse rate on theta surface**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,336 V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,337 Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,338 @@ -399,31 +399,31 @@ Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 Ice thickness,ICETK_ON_SURFACE,ICETK,349 Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 -**Vertical diffusion tendency on pressure surface???**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 +**Vertical diffusion tendency on pressure surface**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 -**Vertical diffusion moistening on pressure surface???**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 +**Vertical diffusion moistening on pressure surface**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 -**Large scale moistening on pressure surface???**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 -**Ozone vertical diffusion on pressure surface???**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 -**Ozone production on pressure surface???**,POZ_ON_ISOBARIC_SFC,POZ,365 +**Large scale moistening on pressure surface**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 +**Ozone vertical diffusion on pressure surface**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 +**Ozone production on pressure surface**,POZ_ON_ISOBARIC_SFC,POZ,365 Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 -**Snow temperature on pressure surface???**,SNOT_ON_ISOBARIC_SFC,SNOT,368 -**Vertical diffusion zonal acceleration on pressure surface???**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 -**Gravity wave drag zonal acceleration on pressure surface???**,GWDU_ON_ISOBARIC_SFC,GWDU,370 -**Convective zonal momentum mixing acceleration on pressure surface???**,CNVU_ON_ISOBARIC_SFC,CNVU,371 -**Vertical diffusion meridional acceleration on pressure surface???**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 -**Gravity wave drag meridional acceleration on pressure surface???**,GWDV_ON_ISOBARIC_SFC,GWDV,373 -**Convective meridional momentum mixing acceleration on pressure surface???**,CNVV_ON_ISOBARIC_SFC,CNVV,374 -**Non-Convective Cloud Cover% on pressure surface???**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +**Snow temperature on pressure surface**,SNOT_ON_ISOBARIC_SFC,SNOT,368 +**Vertical diffusion zonal acceleration on pressure surface**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 +**Gravity wave drag zonal acceleration on pressure surface**,GWDU_ON_ISOBARIC_SFC,GWDU,370 +**Convective zonal momentum mixing acceleration on pressure surface**,CNVU_ON_ISOBARIC_SFC,CNVU,371 +**Vertical diffusion meridional acceleration on pressure surface**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 +**Gravity wave drag meridional acceleration on pressure surface**,GWDV_ON_ISOBARIC_SFC,GWDV,373 +**Convective meridional momentum mixing acceleration on pressure surface**,CNVV_ON_ISOBARIC_SFC,CNVV,374 +**Non-Convective Cloud Cover% on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 -**Temperature tendency by all physics on pressure surface???**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 -**Vertical eddy diffusivity heat exchange on model surface???**,VEDH_ON_HYBRID_LVL,VEDH,380 +**Temperature tendency by all physics on pressure surface**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 +**Vertical eddy diffusivity heat exchange on model surface**,VEDH_ON_HYBRID_LVL,VEDH,380 Mixing height,MIXHT_ON_SURFACE,MIXHT,381 Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,382 Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,383 @@ -434,11 +434,11 @@ Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_AT Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 -**Convective updraft mass flux on pressure surface ???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 -**Convective downdraft mass flux on pressure surface ???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 -**Convective detrainment mass flux (kg m-2 s-1) on pressure surface ???**,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 -**Convective gravity drag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 -**Convective gravity drag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +**Convective updraft mass flux on pressure surface**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 +**Convective downdraft mass flux on pressure surface**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 +**Convective detrainment mass flux (kg m-2 s-1) on pressure surface**,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 +**Convective gravity drag zonal acceleration on pressure surface**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +**Convective gravity drag meridional acceleration on pressure surface**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 Field capacity,FLDCP_ON_SURFACE,FLDCP,397 ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 @@ -479,15 +479,15 @@ Haines index,HINDEX_ON_SURFACE,HINDEX,455 **GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 **GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 **GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 -**Horizontal extent of cumulonimbus (CB) % ???**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 -**Height of base of cumulonimbus ???**,ICAHT_ON_CB_BASE,ICAHT,474 -**Height of top of cumulonimbus ???**,ICAHT_ON_CB_TOP,ICAHT,475 -**GTG EDR turbulence on standard atmospheric isobaric levels???**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 -**GTG CAT turbulence on standard atmospheric isobaric levels???**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 -**GTG MWT turbulence on standard atmospheric isobaric levels???**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 +**Horizontal extent of cumulonimbus (CB) % **,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +**Height of base of cumulonimbus**,ICAHT_ON_CB_BASE,ICAHT,474 +**Height of top of cumulonimbus**,ICAHT_ON_CB_TOP,ICAHT,475 +**GTG EDR turbulence on standard atmospheric isobaric levels**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 +**GTG CAT turbulence on standard atmospheric isobaric levels**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 +**GTG MWT turbulence on standard atmospheric isobaric levels**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 **Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 **GFIP in-flight icing severity on pressure surface**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 -**Total icing potential diagnostic on standard atmospheric isobaric surface ???**,ICIP_ON_ICAO_STD_SFC,ICIP,481 +**Total icing potential diagnostic on standard atmospheric isobaric surface**,ICIP_ON_ICAO_STD_SFC,ICIP,481 Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,482 Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,500 Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,501 @@ -497,19 +497,19 @@ Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,504 Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,505 Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,506 Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,507 -**Maximum instantaneous precipitation rate on surface ???**,MAX_PRATE_ON_SURFACE,PRATE,508 +**Maximum instantaneous precipitation rate on surface**,MAX_PRATE_ON_SURFACE,PRATE,508 **Maximum specific humidity at 2m**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 **Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 -**Aerodynamic conductance on surface???**,ACOND_ON_SURFACE,ACOND,512 -**Canopy water evaporation on surface???**,AVE_EVCW_ON_SURFACE,EVCW,513 -**Direct surface evaporation from bare soil???**,AVE_EVBS_ON_SURFACE,EVBS,514 -**Transpiration on surface???**,AVE_TRANS_ON_SURFACE,TRANS,515 -**Sublimation on surface ???**,AVE_SBSNO_ON_SURFACE,SBSNO,516 -**Potential evaporation rate on surface ???**,AVE_PEVPR_ON_SURFACE,PEVPR,517 +**Aerodynamic conductance on surface**,ACOND_ON_SURFACE,ACOND,512 +**Canopy water evaporation on surface**,AVE_EVCW_ON_SURFACE,EVCW,513 +**Direct surface evaporation from bare soil**,AVE_EVBS_ON_SURFACE,EVBS,514 +**Transpiration on surface**,AVE_TRANS_ON_SURFACE,TRANS,515 +**Sublimation on surface**,AVE_SBSNO_ON_SURFACE,SBSNO,516 +**Potential evaporation rate on surface**,AVE_PEVPR_ON_SURFACE,PEVPR,517 **Height on standard atmospheric isobaric levels**,HGT_ON_ICAO_STD_SFC,HGT,518 **Temperature on standard atmospheric isobaric levels**,TMP_ON_ICAO_STD_SFC,TMP,519 -**U-component wind on standard atmospheric isobaric levels???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 -**V-component wind on standard atmospheric isobaric levels???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 +**U-component wind on standard atmospheric isobaric levels**,UGRD_ON_ICAO_STD_SFC,UGRD,520 +**V-component wind on standard atmospheric isobaric levels**,VGRD_ON_ICAO_STD_SFC,VGRD,521 **Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 **Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 **Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 @@ -543,9 +543,9 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **GSD_average Categorical freezing rain on surface**,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 **Best boundary layer CAPE**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 **Best boundary layer CIN**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 -**GFS sea level pressure???**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 -**GFS average total cloud fraction???**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 -**GFS total cloud fraction???**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 +**GFS sea level pressure**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 +**GFS average total cloud fraction**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 +**GFS total cloud fraction**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,456 Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,457 Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,458 @@ -587,12 +587,12 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Flight level icing**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 **Ice growth rate**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 **GFS 2D aerosol optical depth at 550 nm**,AER_OPT_GFS_at550,AOTK,600 -**GFS 2D dust aerosol optical depth at 550 nm???**,DUST_AER_OPT_GFS_at550,AOTK,601 -**GFS 2D seasalt aerosol optical depth at 550 nm???**,SEASALT_AER_OPT_GFS_at550,AOTK,602 -**GFS 2D sulfate aerosol optical depth at 550 nm???**,SULFATE_AER_OPT_GFS_at550,AOTK,603 -**GFS 2D organic carbon aerosol optical depth at 550 nm???**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 -**GFS 2D black carbon aerosol optical depth at 550 nm???**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 -**Aerosol extinction coefficient on model surface???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 +**GFS 2D dust aerosol optical depth at 550 nm**,DUST_AER_OPT_GFS_at550,AOTK,601 +**GFS 2D seasalt aerosol optical depth at 550 nm**,SEASALT_AER_OPT_GFS_at550,AOTK,602 +**GFS 2D sulfate aerosol optical depth at 550 nm**,SULFATE_AER_OPT_GFS_at550,AOTK,603 +**GFS 2D organic carbon aerosol optical depth at 550 nm**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 +**GFS 2D black carbon aerosol optical depth at 550 nm**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 +**Aerosol extinction coefficient on model surface**,AECOEF_ON_HYBRID_LVL,AECOFF,606 **Asymmetry factor on model surface**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 **Single scattering albedo on model surface**,SSALBK_ON_HYBRID_LVL,SSALBK,608 **Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 @@ -602,13 +602,13 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 **Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 **Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 -**Black carbon column mass density???**,BC_COL_MASS_DEN,COLMD,616 -**Organic carbon column mass density???**,OC_COL_MASS_DEN,COLMD,617 -**Sulfate column mass density???**,SULF_COL_MASS_DEN,COLMD,618 +**Black carbon column mass density**,BC_COL_MASS_DEN,COLMD,616 +**Organic carbon column mass density**,OC_COL_MASS_DEN,COLMD,617 +**Sulfate column mass density**,SULF_COL_MASS_DEN,COLMD,618 **Aerosol surface PM10 mass concentration (ug/m3)**,PM10_SFC_MASS_CON,PMTC,619 **Aerosol surface PM2.5 mass concentration (ug/m3)**,PM25_SFC_MASS_CON,PMTF,620 -**Total aerosol PM10 column mass density???**,PM10_COL_MASS_DEN,COLMD,621 -**Total aerosol (PM2.5) column mass density???**,PM25_COL_MASS_DEN,COLMD,622 +**Total aerosol PM10 column mass density**,PM10_COL_MASS_DEN,COLMD,621 +**Total aerosol (PM2.5) column mass density**,PM25_COL_MASS_DEN,COLMD,622 **Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 **Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 **Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 @@ -643,8 +643,8 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Organic carbon aerosol scattering optical depth at 550nm**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 **Black carbon aerosol scattering optical depth at 550nm**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 **Angstrom exponent**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 -**NO3 column mass density???**,NO3_COL_MASS_DEN,COLMD,657 -**NH4 column mass density???**,NH4_COL_MASS_DEN,COLMD,658 +**NO3 column mass density**,NO3_COL_MASS_DEN,COLMD,657 +**NH4 column mass density**,NH4_COL_MASS_DEN,COLMD,658 **Dust emission flux**,DUST_EMISSION_FLUX,AEMFLX,659 **Dust sedimentation flux**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 **Dust dry deposition flux**,DUST DRY DEPOSITION,DDMFLX,661 @@ -665,33 +665,33 @@ Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE **Sulfate sedimentation flux**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 **Sulfate dry deposition flux**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 **Sulfate wet deposition flux**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 -**Dust scavenging flux???**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 -**Seasalt scavenging flux???**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 -**Black carbon scavenging flux???**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 -**Organic carbon scavenging flux???**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 -**Seasalt coarse aersol mass density concentration on model surface???**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 -**Seasalt 2.5 mass density concentration on model surface???**,SEAS25_SFC_MASS_CON,PMTF,684 -**Dust 10 mass density concentration on model surface???**,DUST10_SFC_MASS_CON,PMTC,685 -**Dust 2.5 mass density concentration on model surface???**,DUST25_SFC_MASS_CON,PMTF,686 +**Dust scavenging flux**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 +**Seasalt scavenging flux**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 +**Black carbon scavenging flux**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 +**Organic carbon scavenging flux**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 +**Seasalt coarse aersol mass density concentration on model surface**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 +**Seasalt 2.5 mass density concentration on model surface**,SEAS25_SFC_MASS_CON,PMTF,684 +**Dust 10 mass density concentration on model surface**,DUST10_SFC_MASS_CON,PMTC,685 +**Dust 2.5 mass density concentration on model surface**,DUST25_SFC_MASS_CON,PMTF,686 **Nitrate aerosol scattering optimal depth at 550nm**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 **NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 **NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 -**Sulfate aerosol surface mass density concentration???**,SU_AER_SFC_MASS_CON,MASSDEN,689 -**Instantaneous sulfate aerosol surface mass concentration???**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 -**Instantaneous organic carbon aerosol surface mass concentration???**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 -**Instantaneous black carbon aerosol surface mass concentration???**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 -**Instantaneous coarse dust aerosol surface mass concentration???**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 -**Instantaneous fine dust aerosol surface mass concentration???**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 -**Instantaneous coarse seasalt aerosol surface mass concentration???**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 -**Instantaneous fine seasalt aerosol surface mass concentration???**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 -**Instantaneous coarse aerosol surface mass concentration???**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 -**Instantaneous fine aerosol surface mass concentration???**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 +**Sulfate aerosol surface mass density concentration**,SU_AER_SFC_MASS_CON,MASSDEN,689 +**Instantaneous sulfate aerosol surface mass concentration**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 +**Instantaneous organic carbon aerosol surface mass concentration**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 +**Instantaneous black carbon aerosol surface mass concentration**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 +**Instantaneous coarse dust aerosol surface mass concentration**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 +**Instantaneous fine dust aerosol surface mass concentration**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 +**Instantaneous coarse seasalt aerosol surface mass concentration**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 +**Instantaneous fine seasalt aerosol surface mass concentration**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 +**Instantaneous coarse aerosol surface mass concentration**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 +**Instantaneous fine aerosol surface mass concentration**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 **Mie-based aerosol optical depth at 550nm**,MIE_OPT_DEP_at550,AOTK,699 **GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 **GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 -**GSD Max lightning threat 1???**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 -**GSD Max lightning threat 2???**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 -**GSD Max lightning threat 3???**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 +**GSD Max lightning threat 1**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 +**GSD Max lightning threat 2**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 +**GSD Max lightning threat 3**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 GSD Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 GSD Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 GSD Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 @@ -730,15 +730,15 @@ RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER,GSD_RH_WRT_PRECIP_WATER_ON_ **Virtual potential temperature on model surface**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 Number concentration for ice particles on hybrid level,GSD_NCIP_ON_HYBRID_LVL,NCIP,752 GSD pressure on level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 -**Number concentration of rain drops on model surface???**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 +**Number concentration of rain drops on model surface**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 GSD pressure on highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 **GSD radar reflectivity at 4km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 -**GSD convective cloud top height???**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 +**GSD convective cloud top height**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 **GSD shelter mixing ratio**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 -**GSD snow temperature???**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 +**GSD snow temperature**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 **GSD surface mixing ratio**,GSD_MIXR_ON_SURFACE,MIXR,762 -**GSD mixing ration on level of free convection (LFC)???**,GSD_MIXR_ON_LFC,MIXR,763 +**GSD mixing ration on level of free convection (LFC)**,GSD_MIXR_ON_LFC,MIXR,763 **Instantaneous clear-sky downwelling longwave at the surface**,CSDLF_ON_SURFACE,CSDLF,764 **Instantaneous clear-sky upwelling longwave at the surface**,CSULF_ON_SURFACE,CSULF,765 **GSD water-friendly aerosol number concentration on model surface**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 @@ -768,12 +768,8 @@ SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2 **Simulated Brightness Temperature for SSMIS-F17 Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 **Simulated Brightness Temperature for SSMIS-F17 Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 -SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,839 SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 -MTSAT-1r imager channels 1-4 (backup for mtsat2),Not currently available for grib2,NA,864 -MTSAT2 imager channels 1-4,Not currently available for grib2,NA,860 Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,876 -Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,865 Hourly max relative vorticity on hybrid level 1,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1,RELV,890 **Radar reflectivity at -10C**,REFD_ON_ISOTHERMAL,REFD,912 **1h precipitation comparison to Flash Flood Guidance (FFG) thresholds**,1H_FFG_EXCEEDANCE,FFLDRO,913 @@ -806,10 +802,10 @@ Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA17 Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,944 Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,945 Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,946 -**CAPE on 0_3KM above ground???**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 -**CIN on 0_3KM above ground???**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 +**CAPE on 0-3 km above ground**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 +**CIN on 0-3 km above ground**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 **LFC height**,HGT_ON_LFC,HGT,952 -**Effective storm relative helicity???**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 +**Effective storm relative helicity**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 **Downdraft CAPE**,DOWNWARD_CAPE,DCAPE,954 **Dendritic layer depth**,DENDRITIC_LAYER_DEPTH,LAYTH,955 **Enhanced stretching potential**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 @@ -835,22 +831,22 @@ Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBT Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,976 Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,977 Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,978 -**Effective surface height on effective layer bottom???**,EFSH_ON_EFBL,EFSH,979 -**Effective surface height on effective layer top???**,EFSH_ON_EFTL,EFSH,980 -**Temperature at EL top???**,ELMELT_ON_EFTL,ELMELT,982 +**Effective surface height on effective layer bottom (m)**,EFSH_ON_EFBL,EFSH,979 +**Effective surface height on effective layer top (m)**,EFSH_ON_EFTL,EFSH,980 +**Temperature at EL top**,ELMELT_ON_EFTL,ELMELT,982 **U-inflow based to 50% EL shear vector**,UESH_ON_EFL,UESH,983 **V-inflow based to 50% EL shear vector**,VESH_ON_EFL,VESH,984 -**Inflow based (ESFC) to (50%) EL shear magnitude???**,ESHR_ON_EFL,ESHR,985 -**U-component Bunkers Effective right motion???**,UEID_ON_EFL,UEID,986 -**V-component Bunkers Effective right motion???**,VEID_ON_EFL,VEID,987 -**Effective layer helicity???**,E3KH_ON_EFL,E3KH,988 +**Inflow based (ESFC) to (50%) EL shear magnitude**,ESHR_ON_EFL,ESHR,985 +**U-component Bunkers effective right motion**,UEID_ON_EFL,UEID,986 +**V-component Bunkers effective right motion**,VEID_ON_EFL,VEID,987 +**Effective layer helicity**,E3KH_ON_EFL,E3KH,988 **Effective layer significant tornado parameter with CIN**,STPC_ON_EFL,STPC,989 **Fixed layer tornado parameter**,SIGT_ON_EFL,SIGT,990 **Effective layer supercell composite parameter**,SCCP_ON_EFL,SCCP,991 **Mixed Layer (100 mb) virtual LFC**,MLFC_ON_EFL,MLFC,992 **Significant hail parameter**,SIGH_ON_EFL,SIGH,993 -**Average ozone concentration on model surface???**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 -**Average PM25 on model surface???**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 +**Average ozone concentration on model surface**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 +**Average PM25 on model surface**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 **Land fraction**,LAND_FRAC,LANDFRC,996 **Instantaneous precipitation advected heat flux**,INST_PREC_ADVEC_HEAT,PAHFLX,997 **Water storage in aquifer**,WATER_AQUIFER,WATERSA,998 @@ -859,13 +855,13 @@ Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBT **Accumulated soil surface evaporation**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 **Average precipitation advected heat flux**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 **Bucket freezing rain on surface**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 -**Accumulated snowfall on surface???**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 +**Accumulated snowfall on surface**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 **Bucket snowfall on surface**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 -**Snow density solid-liquid ratio on surface???**,SDEN_ON_SURFACE,SDEN,1006 -**Icing probability on flight levels???**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 -**Supercooled large droplet icing on flight levels???**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 -**Icing severity category on flight levels???**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 -**WMO icing severity category on flight levels???**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 +**Snow density solid-liquid ratio on surface**,SDEN_ON_SURFACE,SDEN,1006 +**Icing probability on flight levels**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 +**Supercooled large droplet icing on flight levels**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 +**Icing severity category on flight levels**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 +**WMO icing severity category on flight levels**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 **Total column coarse articulate matter (PM)**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 **Coarse particulate matter on model surface**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 **Coarse particulate matter on pressure surface**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index 587ed14c3..1e5f939cd 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -291,7 +291,7 @@ Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,292 Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,293 Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,294 Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,295 -**Temperature on sigma levels ???**,TMP_ON_SIGMA_LVL_HPC,TMP,296 +**Temperature on sigma levels**,TMP_ON_SIGMA_LVL_HPC,TMP,296 Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,297 Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,298 Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,299 @@ -346,36 +346,36 @@ Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,347 Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 Ice thickness,ICETK_ON_SURFACE,ICETK,349 Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,350 -**Lapse rate on theta surface ???**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 +**Lapse rate on theta surface**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 -**Vertical diffusion tendency on pressure surface???**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 +**Vertical diffusion tendency on pressure surface**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 -**Vertical diffusion moistening on pressure surface???**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 +**Vertical diffusion moistening on pressure surface**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 -**Large scale moistening on pressure surface???**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 -**Ozone vertical diffusion on pressure surface???**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 -**Ozone production on pressure surface???**,POZ_ON_ISOBARIC_SFC,POZ,365 +**Large scale moistening on pressure surface**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 +**Ozone vertical diffusion on pressure surface**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 +**Ozone production on pressure surface**,POZ_ON_ISOBARIC_SFC,POZ,365 Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 -**Snow temperature on pressure surface???**,SNOT_ON_ISOBARIC_SFC,SNOT,368 -**Vertical diffusion zonal acceleration on pressure surface???**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 -**Gravity wave drag zonal acceleration on pressure surface???**,GWDU_ON_ISOBARIC_SFC,GWDU,370 -**Convective zonal momentum mixing acceleration on pressure surface???**,CNVU_ON_ISOBARIC_SFC,CNVU,371 -**Vertical diffusion meridional acceleration on pressure surface???**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 -**Gravity wave drag meridional acceleration on pressure surface???**,GWDV_ON_ISOBARIC_SFC,GWDV,373 -**Convective meridional momentum mixing acceleration on pressure surface???**,CNVV_ON_ISOBARIC_SFC,CNVV,374 -**Non-Convective Cloud Cover% on pressure surface???**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +**Snow temperature on pressure surface**,SNOT_ON_ISOBARIC_SFC,SNOT,368 +**Vertical diffusion zonal acceleration on pressure surface**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 +**Gravity wave drag zonal acceleration on pressure surface**,GWDU_ON_ISOBARIC_SFC,GWDU,370 +**Convective zonal momentum mixing acceleration on pressure surface**,CNVU_ON_ISOBARIC_SFC,CNVU,371 +**Vertical diffusion meridional acceleration on pressure surface**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 +**Gravity wave drag meridional acceleration on pressure surface**,GWDV_ON_ISOBARIC_SFC,GWDV,373 +**Convective meridional momentum mixing acceleration on pressure surface**,CNVV_ON_ISOBARIC_SFC,CNVV,374 +**Non-Convective Cloud Cover% on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 -**Temperature tendency by all physics on pressure surface???**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 -**Vertical eddy diffusivity heat exchange on model surface???**,VEDH_ON_HYBRID_LVL,VEDH,380 +**Temperature tendency by all physics on pressure surface**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 +**Vertical eddy diffusivity heat exchange on model surface**,VEDH_ON_HYBRID_LVL,VEDH,380 Mixing height,MIXHT_ON_SURFACE,MIXHT,381 Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,382 Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,383 @@ -386,11 +386,11 @@ Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_AT Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 -**Convective updraft mass flux on pressure surface ???**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 -**Convective downdraft mass flux on pressure surface ???**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 -"**Convective detrainment mass flux (kg m-2 s-1) on pressure surface ???**",CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 -**Convective gravity drag zonal acceleration on pressure surface ???**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 -**Convective gravity drag meridional acceleration on pressure surface ???**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +**Convective updraft mass flux on pressure surface**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 +**Convective downdraft mass flux on pressure surface**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 +"**Convective detrainment mass flux (kg m-2 s-1) on pressure surface**",CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 +**Convective gravity drag zonal acceleration on pressure surface**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +**Convective gravity drag meridional acceleration on pressure surface**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 Field capacity,FLDCP_ON_SURFACE,FLDCP,397 ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 @@ -468,15 +468,15 @@ Simulated GOES 11 channel 5 brightness temperature with satellite angle correcti **GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 **GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 **GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 -**Horizontal extent of cumulonimbus (CB) % ???**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 -**Height of base of cumulonimbus ???**,ICAHT_ON_CB_BASE,ICAHT,474 -**Height of top of cumulonimbus ???**,ICAHT_ON_CB_TOP,ICAHT,475 -**GTG EDR turbulence on standard atmospheric isobaric levels???**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 -**GTG CAT turbulence on standard atmospheric isobaric levels???**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 -**GTG MWT turbulence on standard atmospheric isobaric levels???**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 +**Horizontal extent of cumulonimbus (CB) % **,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +**Height of base of cumulonimbus**,ICAHT_ON_CB_BASE,ICAHT,474 +**Height of top of cumulonimbus**,ICAHT_ON_CB_TOP,ICAHT,475 +**GTG EDR turbulence on standard atmospheric isobaric levels**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 +**GTG CAT turbulence on standard atmospheric isobaric levels**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 +**GTG MWT turbulence on standard atmospheric isobaric levels**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 **Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 **GFIP in-flight icing severity on pressure surface**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 -**Total icing potential diagnostic on standard atmospheric isobaric surface ???**,ICIP_ON_ICAO_STD_SFC,ICIP,481 +**Total icing potential diagnostic on standard atmospheric isobaric surface**,ICIP_ON_ICAO_STD_SFC,ICIP,481 Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,482 Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,483 Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,484 @@ -503,24 +503,34 @@ Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,504 Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,505 Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,506 Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,507 -**Maximum instantaneous precipitation rate on surface ???**,MAX_PRATE_ON_SURFACE,PRATE,508 +**Maximum instantaneous precipitation rate on surface**,MAX_PRATE_ON_SURFACE,PRATE,508 **Maximum specific humidity at 2m**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 **Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 -**Aerodynamic conductance on surface???**,ACOND_ON_SURFACE,ACOND,512 -**Canopy water evaporation on surface???**,AVE_EVCW_ON_SURFACE,EVCW,513 -**Direct surface evaporation from bare soil???**,AVE_EVBS_ON_SURFACE,EVBS,514 -**Transpiration on surface???**,AVE_TRANS_ON_SURFACE,TRANS,515 -**Sublimation on surface ???**,AVE_SBSNO_ON_SURFACE,SBSNO,516 -**Potential evaporation rate on surface ???**,AVE_PEVPR_ON_SURFACE,PEVPR,517 +**Aerodynamic conductance on surface**,ACOND_ON_SURFACE,ACOND,512 +**Canopy water evaporation on surface**,AVE_EVCW_ON_SURFACE,EVCW,513 +**Direct surface evaporation from bare soil**,AVE_EVBS_ON_SURFACE,EVBS,514 +**Transpiration on surface**,AVE_TRANS_ON_SURFACE,TRANS,515 +**Sublimation on surface**,AVE_SBSNO_ON_SURFACE,SBSNO,516 +**Potential evaporation rate on surface**,AVE_PEVPR_ON_SURFACE,PEVPR,517 **Height on standard atmospheric isobaric levels**,HGT_ON_ICAO_STD_SFC,HGT,518 **Temperature on standard atmospheric isobaric levels**,TMP_ON_ICAO_STD_SFC,TMP,519 -**U-component wind on standard atmospheric isobaric levels???**,UGRD_ON_ICAO_STD_SFC,UGRD,520 -**V-component wind on standard atmospheric isobaric levels???**,VGRD_ON_ICAO_STD_SFC,VGRD,521 +**U-component wind on standard atmospheric isobaric levels**,UGRD_ON_ICAO_STD_SFC,UGRD,520 +**V-component wind on standard atmospheric isobaric levels**,VGRD_ON_ICAO_STD_SFC,VGRD,521 **Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 **Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 **Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 **Bucket snow precipitation on surface**,BUCKET1_WEASD_ON_SURFACE,WEASD,529 **Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 +**Simulated Brightness Temperature for ABI GOES-18 Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 +**Simulated Brightness Temperature for ABI GOES-18 Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 +**Simulated Brightness Temperature for ABI GOES-18 Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 +**Simulated Brightness Temperature for ABI GOES-18 Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 +**Simulated Brightness Temperature for ABI GOES-18 Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 +**Simulated Brightness Temperature for ABI GOES-18 Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 +**Simulated Brightness Temperature for ABI GOES-18 Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 +**Simulated Brightness Temperature for ABI GOES-18 Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 +**Simulated Brightness Temperature for ABI GOES-18 Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 +**Simulated Brightness Temperature for ABI GOES-18 Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 **GSD shelter level potential temperature**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 **GSD shelter level dewpoint depression**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 **GSD shelter level surface equivalent potential temperature**,GSD_EPOT_ON_SURFACE,EPOT,548 @@ -539,9 +549,9 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **GSD_average Categorical freezing rain on surface**,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 **Best boundary layer CAPE**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 **Best boundary layer CIN**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 -**GFS sea level pressure???**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 -**GFS average total cloud fraction???**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 -**GFS total cloud fraction???**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 +**GFS sea level pressure**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 +**GFS average total cloud fraction**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 +**GFS total cloud fraction**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 GFS Soil temperature at the bottom of soil layers,GFS_TMP_ON_DEPTH_BEL_LAND_SFC_3m,TMP,571 **GFS lifted index on surface**,GFS_LFTX_ON_SURFACE,LFTX,572 **GFS lifted index on surface - best**,GFS_4LFTX_ON_SURFACE,4LFTX,573 @@ -561,12 +571,12 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Flight level icing**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 **Ice growth rate**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 **GFS 2D aerosol optical depth at 550 nm**,AER_OPT_GFS_at550,AOTK,600 -**GFS 2D dust aerosol optical depth at 550 nm???**,DUST_AER_OPT_GFS_at550,AOTK,601 -**GFS 2D seasalt aerosol optical depth at 550 nm???**,SEASALT_AER_OPT_GFS_at550,AOTK,602 -**GFS 2D sulfate aerosol optical depth at 550 nm???**,SULFATE_AER_OPT_GFS_at550,AOTK,603 -**GFS 2D organic carbon aerosol optical depth at 550 nm???**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 -**GFS 2D black carbon aerosol optical depth at 550 nm???**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 -**Aerosol extinction coefficient on model surface???**,AECOEF_ON_HYBRID_LVL,AECOFF,606 +**GFS 2D dust aerosol optical depth at 550 nm**,DUST_AER_OPT_GFS_at550,AOTK,601 +**GFS 2D seasalt aerosol optical depth at 550 nm**,SEASALT_AER_OPT_GFS_at550,AOTK,602 +**GFS 2D sulfate aerosol optical depth at 550 nm**,SULFATE_AER_OPT_GFS_at550,AOTK,603 +**GFS 2D organic carbon aerosol optical depth at 550 nm**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 +**GFS 2D black carbon aerosol optical depth at 550 nm**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 +**Aerosol extinction coefficient on model surface**,AECOEF_ON_HYBRID_LVL,AECOFF,606 **Asymmetry factor on model surface**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 **Single scattering albedo on model surface**,SSALBK_ON_HYBRID_LVL,SSALBK,608 **Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 @@ -576,13 +586,13 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 **Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 **Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 -**Black carbon column mass density???**,BC_COL_MASS_DEN,COLMD,616 -**Organic carbon column mass density???**,OC_COL_MASS_DEN,COLMD,617 -**Sulfate column mass density???**,SULF_COL_MASS_DEN,COLMD,618 +**Black carbon column mass density**,BC_COL_MASS_DEN,COLMD,616 +**Organic carbon column mass density**,OC_COL_MASS_DEN,COLMD,617 +**Sulfate column mass density**,SULF_COL_MASS_DEN,COLMD,618 **Aerosol surface PM10 mass concentration (ug/m3)**,PM10_SFC_MASS_CON,PMTC,619 **Aerosol surface PM2.5 mass concentration (ug/m3)**,PM25_SFC_MASS_CON,PMTF,620 -**Total aerosol PM10 column mass density???**,PM10_COL_MASS_DEN,COLMD,621 -**Total aerosol (PM2.5) column mass density???**,PM25_COL_MASS_DEN,COLMD,622 +**Total aerosol PM10 column mass density**,PM10_COL_MASS_DEN,COLMD,621 +**Total aerosol (PM2.5) column mass density**,PM25_COL_MASS_DEN,COLMD,622 **Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 **Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 **Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 @@ -617,8 +627,8 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Organic carbon aerosol scattering optical depth at 550nm**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 **Black carbon aerosol scattering optical depth at 550nm**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 **Angstrom exponent**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 -**NO3 column mass density???**,NO3_COL_MASS_DEN,COLMD,657 -**NH4 column mass density???**,NH4_COL_MASS_DEN,COLMD,658 +**NO3 column mass density**,NO3_COL_MASS_DEN,COLMD,657 +**NH4 column mass density**,NH4_COL_MASS_DEN,COLMD,658 **Dust emission flux**,DUST_EMISSION_FLUX,AEMFLX,659 **Dust sedimentation flux**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 **Dust dry deposition flux**,DUST DRY DEPOSITION,DDMFLX,661 @@ -639,33 +649,33 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Sulfate sedimentation flux**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 **Sulfate dry deposition flux**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 **Sulfate wet deposition flux**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 -**Dust scavenging flux???**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 -**Seasalt scavenging flux???**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 -**Black carbon scavenging flux???**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 -**Organic carbon scavenging flux???**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 -**Seasalt coarse aersol mass density concentration on model surface???**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 -**Seasalt 2.5 mass density concentration on model surface???**,SEAS25_SFC_MASS_CON,PMTF,684 -**Dust 10 mass density concentration on model surface???**,DUST10_SFC_MASS_CON,PMTC,685 -**Dust 2.5 mass density concentration on model surface???**,DUST25_SFC_MASS_CON,PMTF,686 +**Dust scavenging flux**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 +**Seasalt scavenging flux**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 +**Black carbon scavenging flux**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 +**Organic carbon scavenging flux**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 +**Seasalt coarse aersol mass density concentration on model surface**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 +**Seasalt 2.5 mass density concentration on model surface**,SEAS25_SFC_MASS_CON,PMTF,684 +**Dust 10 mass density concentration on model surface**,DUST10_SFC_MASS_CON,PMTC,685 +**Dust 2.5 mass density concentration on model surface**,DUST25_SFC_MASS_CON,PMTF,686 **Nitrate aerosol scattering optimal depth at 550nm**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 **NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 **NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 -**Sulfate aerosol surface mass density concentration???**,SU_AER_SFC_MASS_CON,MASSDEN,689 -**Instantaneous sulfate aerosol surface mass concentration???**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 -**Instantaneous organic carbon aerosol surface mass concentration???**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 -**Instantaneous black carbon aerosol surface mass concentration???**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 -**Instantaneous coarse dust aerosol surface mass concentration???**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 -**Instantaneous fine dust aerosol surface mass concentration???**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 -**Instantaneous coarse seasalt aerosol surface mass concentration???**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 -**Instantaneous fine seasalt aerosol surface mass concentration???**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 -**Instantaneous coarse aerosol surface mass concentration???**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 -**Instantaneous fine aerosol surface mass concentration???**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 +**Sulfate aerosol surface mass density concentration**,SU_AER_SFC_MASS_CON,MASSDEN,689 +**Instantaneous sulfate aerosol surface mass concentration**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 +**Instantaneous organic carbon aerosol surface mass concentration**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 +**Instantaneous black carbon aerosol surface mass concentration**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 +**Instantaneous coarse dust aerosol surface mass concentration**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 +**Instantaneous fine dust aerosol surface mass concentration**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 +**Instantaneous coarse seasalt aerosol surface mass concentration**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 +**Instantaneous fine seasalt aerosol surface mass concentration**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 +**Instantaneous coarse aerosol surface mass concentration**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 +**Instantaneous fine aerosol surface mass concentration**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 **Mie-based aerosol optical depth at 550nm**,MIE_OPT_DEP_at550,AOTK,699 **GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 **GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 -**GSD Max lightning threat 1???**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 -**GSD Max lightning threat 2???**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 -**GSD Max lightning threat 3???**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 +**GSD Max lightning threat 1**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 +**GSD Max lightning threat 2**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 +**GSD Max lightning threat 3**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 GSD Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 GSD Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 GSD Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 @@ -704,15 +714,15 @@ RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER,GSD_RH_WRT_PRECIP_WATER_ON_ **Virtual potential temperature on model surface**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 Number concentration for ice particles on hybrid level,GSD_NCIP_ON_HYBRID_LVL,NCIP,752 GSD pressure on level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 -**Number concentration of rain drops on model surface???**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 +**Number concentration of rain drops on model surface**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 GSD pressure on highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 **GSD radar reflectivity at 4km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 -**GSD convective cloud top height???**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 +**GSD convective cloud top height**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 **GSD shelter mixing ratio**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 -**GSD snow temperature???**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 +**GSD snow temperature**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 **GSD surface mixing ratio**,GSD_MIXR_ON_SURFACE,MIXR,762 -**GSD mixing ration on level of free convection (LFC)???**,GSD_MIXR_ON_LFC,MIXR,763 +**GSD mixing ration on level of free convection (LFC)**,GSD_MIXR_ON_LFC,MIXR,763 **Instantaneous clear-sky downwelling longwave at the surface**,CSDLF_ON_SURFACE,CSDLF,764 **Instantaneous clear-sky upwelling longwave at the surface**,CSULF_ON_SURFACE,CSULF,765 **GSD water-friendly aerosol number concentration on model surface**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 @@ -743,17 +753,17 @@ Maximum reflectivity on -10C surface,`MAX_REF_ON_ISOTHERMAL_-10C`,REFD,785 **GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 **GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 **GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 -**GSD Maximum hail diameter at k=1???**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 +**GSD Maximum hail diameter at k=1**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 **Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 **GSD maximum cloud fraction in (PBL + 1 km)**,TCDC_ON_BOUND_LYR,TCDC,799 **Shelter level apparent temperature**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 +**Simulated Brightness Temperature for SSMIS-F17 Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 +**Simulated Brightness Temperature for SSMIS-F17 Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 +**Simulated Brightness Temperature for SSMIS-F17 Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 +**Simulated Brightness Temperature for SSMIS-F17 Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 -SSMIS F19 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,839 SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 -MTSAT2 imager channels 1-4,Not currently available for grib2,NA,860 -MTSAT-1r imager channels 1-4 (backup for mtsat2),Not currently available for grib2,NA,864 -Insat 3d brightness temperature IR channels 1-4,Not currently available for grib2,NA,865 Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,868 Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,872 Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,876 @@ -792,10 +802,10 @@ Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA17 Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,944 Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,945 Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,946 -**CAPE on 0_3KM above ground???**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 -**CIN on 0_3KM above ground???**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 +**CAPE on 0-3 km above ground**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 +**CIN on 0-3 km above ground**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 **LFC height**,HGT_ON_LFC,HGT,952 -**Effective storm relative helicity???**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 +**Effective storm relative helicity**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 **Downdraft CAPE**,DOWNWARD_CAPE,DCAPE,954 **Dendritic layer depth**,DENDRITIC_LAYER_DEPTH,LAYTH,955 **Enhanced stretching potential**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 @@ -821,22 +831,22 @@ Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBT Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,976 Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,977 Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,978 -**Effective surface height on effective layer bottom???**,EFSH_ON_EFBL,EFSH,979 -**Effective surface height on effective layer top???**,EFSH_ON_EFTL,EFSH,980 -**Temperature at EL top???**,ELMELT_ON_EFTL,ELMELT,982 +**Effective surface height on effective layer bottom (m)**,EFSH_ON_EFBL,EFSH,979 +**Effective surface height on effective layer top (m)**,EFSH_ON_EFTL,EFSH,980 +**Temperature at EL top**,ELMELT_ON_EFTL,ELMELT,982 **U-inflow based to 50% EL shear vector**,UESH_ON_EFL,UESH,983 **V-inflow based to 50% EL shear vector**,VESH_ON_EFL,VESH,984 -**Inflow based (ESFC) to (50%) EL shear magnitude???**,ESHR_ON_EFL,ESHR,985 -**U-component Bunkers Effective right motion???**,UEID_ON_EFL,UEID,986 -**V-component Bunkers Effective right motion???**,VEID_ON_EFL,VEID,987 -**Effective layer helicity???**,E3KH_ON_EFL,E3KH,988 +**Inflow based (ESFC) to (50%) EL shear magnitude**,ESHR_ON_EFL,ESHR,985 +**U-component Bunkers effective right motion**,UEID_ON_EFL,UEID,986 +**V-component Bunkers effective right motion**,VEID_ON_EFL,VEID,987 +**Effective layer helicity**,E3KH_ON_EFL,E3KH,988 **Effective layer significant tornado parameter with CIN**,STPC_ON_EFL,STPC,989 **Fixed layer tornado parameter**,SIGT_ON_EFL,SIGT,990 **Effective layer supercell composite parameter**,SCCP_ON_EFL,SCCP,991 **Mixed Layer (100 mb) virtual LFC**,MLFC_ON_EFL,MLFC,992 **Significant hail parameter**,SIGH_ON_EFL,SIGH,993 -**Average ozone concentration on model surface???**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 -**Average PM25 on model surface???**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 +**Average ozone concentration on model surface**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 +**Average PM25 on model surface**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 **Land fraction**,LAND_FRAC,LANDFRC,996 **Instantaneous precipitation advected heat flux**,INST_PREC_ADVEC_HEAT,PAHFLX,997 **Water storage in aquifer**,WATER_AQUIFER,WATERSA,998 @@ -845,28 +855,14 @@ Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBT **Accumulated soil surface evaporation**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 **Average precipitation advected heat flux**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 **Bucket freezing rain on surface**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 -**Accumulated snowfall on surface???**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 +**Accumulated snowfall on surface**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 **Bucket snowfall on surface**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 -**Snow density solid-liquid ratio on surface???**,SDEN_ON_SURFACE,SDEN,1006 -**Icing probability on flight levels???**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 -**Supercooled large droplet icing on flight levels???**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 -**Icing severity category on flight levels???**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 -**WMO icing severity category on flight levels???**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 +**Snow density solid-liquid ratio on surface**,SDEN_ON_SURFACE,SDEN,1006 +**Icing probability on flight levels**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 +**Supercooled large droplet icing on flight levels**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 +**Icing severity category on flight levels**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 +**WMO icing severity category on flight levels**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 **Total column coarse articulate matter (PM)**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 **Coarse particulate matter on model surface**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 **Coarse particulate matter on pressure surface**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 -**Coarse particulate matter at 8m above ground**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 -**Simulated Brightness Temperature for ABI GOES-18 Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810 -**Simulated Brightness Temperature for ABI GOES-18 Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811 -**Simulated Brightness Temperature for ABI GOES-18 Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812 -**Simulated Brightness Temperature for ABI GOES-18 Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813 -**Simulated Brightness Temperature for ABI GOES-18 Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814 -**Simulated Brightness Temperature for ABI GOES-18 Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815 -**Simulated Brightness Temperature for ABI GOES-18 Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816 -**Simulated Brightness Temperature for ABI GOES-18 Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187 -**Simulated Brightness Temperature for ABI GOES-18 Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188 -**Simulated Brightness Temperature for ABI GOES-18 Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189 -**Simulated Brightness Temperature for SSMIS-F17 Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715 -**Simulated Brightness Temperature for SSMIS-F17 Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716 -**Simulated Brightness Temperature for SSMIS-F17 Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717 -**Simulated Brightness Temperature for SSMIS-F17 Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718 \ No newline at end of file +**Coarse particulate matter at 8m above ground**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 \ No newline at end of file From e6659202de12b167a77b56111196291243238500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 14:12:18 -0400 Subject: [PATCH 21/44] move dir structure to Tech Overview; remove comments; correct version numbers --- docs/CodeOverview.rst | 43 +++++++++++++++++++++++++++++++++++-------- docs/Installation.rst | 10 +++------- 2 files changed, 38 insertions(+), 15 deletions(-) diff --git a/docs/CodeOverview.rst b/docs/CodeOverview.rst index a12f5a909..3dc4f5cac 100644 --- a/docs/CodeOverview.rst +++ b/docs/CodeOverview.rst @@ -46,10 +46,6 @@ This additional feature enables the generation of simulated satellite products s * Geostationary Operational Environmental Satellite (GOES) * Advanced Microwave Scanning Radiometer (AMSRE) * Special Sensor Microwave Imager/Sounder (SSMIS) - * Special Sensor Microwave Imager (SSMI) - * Multi-functional Transport Satellite (MTSAT2 and MTSAT1R) - * Spinning Enhanced Visible and Infrared Imager (SEVIRI) - * Indian Satellite Image (INSAT3D) For CRTM documentation, refer to the `CRTM User Guide `__. @@ -68,11 +64,38 @@ The ``upp.x`` component performs the bulk of the post-processing. Its functions * Vertical interpolation from model levels/surfaces to isobaric, height, and other levels/surfaces * Computing diagnostics from model data such as CAPE, relative humidity, radar reflectivities, etc. -===================== -Directory Structure -===================== +======================== +UPP Directory Structure +======================== -The main UPP repository is named ``UPP``; it is available on GitHub at https://github.com/NOAA-EMC/UPP. When the ``develop`` branch of the UPP repository is cloned, the basic directory structure will be similar to the example below. Some files and directories have been removed for brevity. +The main UPP repository is named ``UPP``; it is available on GitHub at https://github.com/NOAA-EMC/UPP. +Under the main **UPP** directory reside the following relevant subdirectories +(the * indicates a directory that exists only after the build is complete): + + | **exec***: Contains the :bolditalic:`upp.x` executable after successful compilation + + | **modulefiles**: Contains modulefiles for specific platforms and compilers for building on + pre-configured machines. + + | **parm**: Contains parameter files, which can be modified by the user to control how the post + processing is performed. + + | **scripts**: Contains a sample run script to process fv3 history files. + | - **run_upp**: runs :bolditalic:`upp.x`. + + | **sorc**: Contains source code for: + | - **ncep_post.fd**: Source code for the UPP + + | **tests**: Contains the scripts used to install UPP + | - **build***: Contains the UPP build + | - **install***: Contains the installed executable (bin/upp.x), modules, and libraries + +.. COMMENT: Is exec there? If so, add to dir tree. Is some of this out-of date? (e.g., tests info?) + + + + +When the ``develop`` branch of the UPP repository is cloned, the basic directory structure will be similar to the example below. Some files and directories have been removed for brevity. .. code-block:: console @@ -100,3 +123,7 @@ The main UPP repository is named ``UPP``; it is available on GitHub at https://g ├── LICENSE.md ├── README.md └── VERSION + + + + diff --git a/docs/Installation.rst b/docs/Installation.rst index 3f2a72d18..d279faa16 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -30,7 +30,7 @@ the instructions in the `HPC-Stack User's Guide `__ or use the ``wget`` command. Unpack the +`__ or use the ``wget`` command. Unpack the tar file. -.. COMMENT: Only v10.1.0? No v11.0.0? - .. code-block:: console cd ../ mkdir crtm && cd crtm - wget https://github.com/NOAA-EMC/UPP/releases/download/upp_v10.1.0/fix.tar.gz + wget https://github.com/NOAA-EMC/UPP/releases/download/upp_v11.0.0/fix.tar.gz tar -xzf fix.tar.gz .. note:: From cdeaf16a541e881aceb844251bb9382689526aef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 14:21:51 -0400 Subject: [PATCH 22/44] rm dir structure from build chapter --- docs/Installation.rst | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/docs/Installation.rst b/docs/Installation.rst index d279faa16..a6e5c9a33 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -83,29 +83,3 @@ tar file. :bolditalic:`exec/upp.x` executable and then rerun the :bolditalic:`compile_upp.sh` script. This is recommended if a mistake is made during the installation process. -======================= -UPP Directory Structure -======================= - -Under the main **UPP** directory reside the following relevant subdirectories (The * indicates a -directory that exists only after the build is complete): - - | **exec***: Contains the :bolditalic:`upp.x` executable after successful compilation - - | **modulefiles**: Contains modulefiles for specific platforms and compilers for building on - pre-configured machines. - - | **parm**: Contains parameter files, which can be modified by the user to control how the post - processing is performed. - - | **scripts**: Contains a sample run script to process fv3 history files. - | - **run_upp**: runs :bolditalic:`upp.x`. - - | **sorc**: Contains source code for: - | - **ncep_post.fd**: Source code for the UPP - - | **tests**: Contains the scripts used to install UPP - | - **build***: Contains the UPP build - | - **install***: Contains the installed executable (bin/upp.x), modules, and libraries - -.. COMMENT: Delete this section and link to Ch. 2? Add exec there? Is some of this out-of date? (e.g., tests info?) From 9d3af0532ada87496bb9d79e91bedc3ca01f2753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 15:01:15 -0400 Subject: [PATCH 23/44] code overview edits --- docs/CodeOverview.rst | 48 ++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/docs/CodeOverview.rst b/docs/CodeOverview.rst index 3dc4f5cac..560f5de89 100644 --- a/docs/CodeOverview.rst +++ b/docs/CodeOverview.rst @@ -1,3 +1,8 @@ +.. role:: underline + :class: underline +.. role:: bolditalic + :class: bolditalic + ******************* Technical Overview ******************* @@ -81,21 +86,16 @@ Under the main **UPP** directory reside the following relevant subdirectories processing is performed. | **scripts**: Contains a sample run script to process fv3 history files. - | - **run_upp**: runs :bolditalic:`upp.x`. - + | - **run_upp**: Script that runs the stand-alone UPP package (:bolditalic:`upp.x`) | **sorc**: Contains source code for: | - **ncep_post.fd**: Source code for the UPP | **tests**: Contains the scripts used to install UPP + | - **compile_upp.sh**: UPP build script | - **build***: Contains the UPP build | - **install***: Contains the installed executable (bin/upp.x), modules, and libraries -.. COMMENT: Is exec there? If so, add to dir tree. Is some of this out-of date? (e.g., tests info?) - - - - -When the ``develop`` branch of the UPP repository is cloned, the basic directory structure will be similar to the example below. Some files and directories have been removed for brevity. +When the ``develop`` branch of the UPP repository is cloned, the basic directory structure follows the example below. Some files and directories have been removed for brevity. .. code-block:: console @@ -103,21 +103,24 @@ When the ``develop`` branch of the UPP repository is cloned, the basic directory ├── ci -------- Automated testing files ├── cmake -------- CMake build files ├── docs -------- User's Guide files - │ └── Doxyfile.in -------- Doxygen configuration file - ├── fix/Breadboard + │ └── Doxyfile.in -------- Doxygen configuration file + ├── exec* + ├── fix ├── jobs -------- Scripts that set up the environment and call ex-scripts from the scripts directory - ├── modulefiles -------- Modulefiles for specific platforms and compilers for building on pre-configured machines - ├── parm -------- Parameter files that can be modified to control how post-processing is performed. - │ ├── post_avblflds.xml -------- List of all fields available in UPP - │ ├── postcntrl*.xml -------- User-editable control files that list the variables to be output - │ └── postxconfig-NT-*.txt -------- Text file of requested output that UPP reads (processed from postcntrl) - ├── scripts -------- Ex-scripts for performing post-processing - │ └── run_upp -------- Script for running the stand-alone UPP package - ├── sorc -------- Top source code directory - │ ├── libIFI.fd -------- Private repository (submodule) for in-flight icing - │ └── ncep_post.fd -------- Main post-processing routines - ├── tests -------- Scripts used to install UPP - │ └── compile_upp.sh -------- UPP build script + ├── modulefiles + ├── parm + │ ├── post_avblflds.xml -------- List of all fields available in UPP + │ ├── postcntrl*.xml -------- User-editable control files that list the variables to be output + │ └── postxconfig-NT-*.txt -------- Text file of requested output that UPP reads (processed from postcntrl) + ├── scripts + │ └── run_upp -------- Script that runs the stand-alone UPP package (upp.x) + ├── sorc + │ ├── libIFI.fd -------- Private repository (submodule) for in-flight icing + │ └── ncep_post.fd -------- Main post-processing routines + ├── tests + │ ├── build* + │ ├── install* + │ └── compile_upp.sh -------- UPP build script ├── ush -------- Utility scripts (referenced & run in /scripts) ├── CMakeLists.txt ├── LICENSE.md @@ -126,4 +129,3 @@ When the ``develop`` branch of the UPP repository is cloned, the basic directory - From 2e0251d0ecb10fefac26e253c3e08d4ff595bd5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 15:30:14 -0400 Subject: [PATCH 24/44] fix spacing --- docs/CodeOverview.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/CodeOverview.rst b/docs/CodeOverview.rst index 560f5de89..69c2b1b1e 100644 --- a/docs/CodeOverview.rst +++ b/docs/CodeOverview.rst @@ -87,6 +87,7 @@ Under the main **UPP** directory reside the following relevant subdirectories | **scripts**: Contains a sample run script to process fv3 history files. | - **run_upp**: Script that runs the stand-alone UPP package (:bolditalic:`upp.x`) + | **sorc**: Contains source code for: | - **ncep_post.fd**: Source code for the UPP From d8dfec8110bd81e7e286fb631f4fa5b7dfbb0135 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 8 Jun 2023 15:37:03 -0400 Subject: [PATCH 25/44] fix formatting --- docs/UPP_GRIB2_Table.csv | 2 +- docs/UPP_GRIB2_Table_byID.csv | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index 77abf9db3..593d9bc0b 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -479,7 +479,7 @@ Haines index,HINDEX_ON_SURFACE,HINDEX,455 **GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 **GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 **GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 -**Horizontal extent of cumulonimbus (CB) % **,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +**Horizontal extent of cumulonimbus (CB) %**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 **Height of base of cumulonimbus**,ICAHT_ON_CB_BASE,ICAHT,474 **Height of top of cumulonimbus**,ICAHT_ON_CB_TOP,ICAHT,475 **GTG EDR turbulence on standard atmospheric isobaric levels**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index 1e5f939cd..059f5f47c 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -468,7 +468,7 @@ Simulated GOES 11 channel 5 brightness temperature with satellite angle correcti **GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 **GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 **GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 -**Horizontal extent of cumulonimbus (CB) % **,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +**Horizontal extent of cumulonimbus (CB) %**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 **Height of base of cumulonimbus**,ICAHT_ON_CB_BASE,ICAHT,474 **Height of top of cumulonimbus**,ICAHT_ON_CB_TOP,ICAHT,475 **GTG EDR turbulence on standard atmospheric isobaric levels**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 From 07675f9c39f298b307af94d062e90f4e957e213b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 12 Jun 2023 07:41:45 -0400 Subject: [PATCH 26/44] fix ext550, add smoke, fv3dust, coarsecm --- docs/UFS_unified_variables_table.csv | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/UFS_unified_variables_table.csv b/docs/UFS_unified_variables_table.csv index b46860443..e3565dab5 100644 --- a/docs/UFS_unified_variables_table.csv +++ b/docs/UFS_unified_variables_table.csv @@ -34,7 +34,10 @@ Lightning threat index 2,ltg2_max,ltg2_max,2d,phy,regional FV3 Lightning threat index 3,ltg3_max,ltg3_max,2d,phy,regional FV3 Surface pressure,pressfc,"pint(:,:,LM+1)",2d,dyn,regional FV3 Surface height,hgtsfc,"zint(:,:,LM+1)",2d,dyn,regional FV3 -Unified extinction ext550/Aerosol optical depth,recname(18),ext550,3d,phy,regional FV3 +Smoke,smoke,smoke,3d,dyn,regional FV3 +FV3 dust,fv3dust,fv3dust,3d,dyn,regional FV3 +Coarse particulate matter,coarsepm,coarsepm,3d,dyn,regional FV3 +Unified extinction ext550/Aerosol optical depth,ext550,ext550,3d,phy,regional FV3 Reflectivity,refl_10cm,REF_10CM,3d,phy, Turbulence kinetic energy,qke,q2,3d,phy, Ice-friendly aerosol number concentration,nifa,qqnwfa,3d,phy, From 7fad63d9830cad686ec1a6ccc21dc4f37d135655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 12 Jun 2023 08:47:11 -0400 Subject: [PATCH 27/44] add UPP Product Table link to New Var ch --- docs/AddNewVariable.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/AddNewVariable.rst b/docs/AddNewVariable.rst index a0eed4da1..81b1c1147 100644 --- a/docs/AddNewVariable.rst +++ b/docs/AddNewVariable.rst @@ -36,7 +36,8 @@ The following steps outline the process for adding a new variable. This descript example in :numref:`Section %s ` below. #. Check whether your new variable has been defined in the file ``parm/post_avblflds.xml`` in your UPP working - directory. This file defines all available GRIB2 fields in the UPP. + directory. This file defines all available GRIB2 fields in the UPP. Users may also check the table showing + :doc:`UPP_GRIB2_Table_byID`. A. If NO (not available in ``post_avblflds.xml``), check whether your new variable has been defined in the `NCEP Grib2 Table `__ From 1cd72a83664112f952ae7ffc0f3cd7b61cd1a8d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 12 Jun 2023 08:54:46 -0400 Subject: [PATCH 28/44] combine bceman/bcembb and oceman/ocembb --- docs/UFS_unified_variables_table.csv | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/UFS_unified_variables_table.csv b/docs/UFS_unified_variables_table.csv index e3565dab5..11f283ad9 100644 --- a/docs/UFS_unified_variables_table.csv +++ b/docs/UFS_unified_variables_table.csv @@ -212,14 +212,12 @@ Seasalt **emission/sedimentation** fluxes (1-5),seas1sd/.../seas5sd,sssd,2d,phy, Seasalt dry deposition fluxes (1-5),seas1dp/.../seas5dp,ssdp,2d,phy,all requested read into 3d array Seasalt wet deposition fluxes (1-5),seas1wtl/.../seas5wtl,sswt,2d,phy,all requested read into 3d array Seasalt scavenging fluxes (1-5),seas1wtc,sssv,2d,phy,all requested read into 3d array -Black carbon emission fluxes,bceman,bcem,2d,phy,all requested read into 3d array -Black carbon emission fluxes,bcembb,bcem,2d,phy,all requested read into 3d array +Black carbon emission fluxes,bceman/bcembb,bcem,2d,phy,all requested read into 3d array Black carbon sedimentation fluxes,bc1sd/bc2sd,bcsd,2d,phy,all requested read into 3d array Black carbon dry deposition fluxes,bc1dp/bc2dp,bcdp,2d,phy,all requested read into 3d array Black carbon large wet deposition fluxes,bc1wtl/bc2wtl,bcwt,2d,phy,all requested read into 3d array Black carbon convective wet deposition fluxes,bc1wtc/bc2wtc,bcsv,2d,phy,all requested read into 3d array -Organic carbon emission fluxes,oceman,ocem,2d,phy,all requested read into 3d array -Organic carbon emission fluxes,ocembb,ocem,2d,phy,all requested read into 3d array +Organic carbon emission fluxes,oceman/ocembb,ocem,2d,phy,all requested read into 3d array Organic carbon sedimentation fluxes,oc1sd/oc2sd,ocsd,2d,phy,all requested read into 3d array Organic carbon dry deposition fluxes,oc1dp/oc2dp,ocdp,2d,phy,all requested read into 3d array Organic carbon large wet deposition fluxes,oc1wtl/oc2wtl,ocwt,2d,phy,all requested read into 3d array From df70042ff5f70ea9916501a23ad871d834ec8771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 12 Jun 2023 08:56:59 -0400 Subject: [PATCH 29/44] combine dust 1-5 in table --- docs/UFS_unified_variables_table.csv | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/UFS_unified_variables_table.csv b/docs/UFS_unified_variables_table.csv index 11f283ad9..81d59fb51 100644 --- a/docs/UFS_unified_variables_table.csv +++ b/docs/UFS_unified_variables_table.csv @@ -186,11 +186,7 @@ Instantaneous aod550 optical depth (seasalt),ss_aod550,ss_aod550,2d,phy,rdaod = Instantaneous aod550 optical depth (sulfates),su_aod550,su_aod550,2d,phy,rdaod = True Instantaneous aod550 optical depth (organic carbon),oc_aod550,oc_aod550,2d,phy,rdaod = True Instantaneous aod550 optical depth (black carbon),bc_aod550,bc_aod550,2d,phy,rdaod = True -Dust 1,dust1,dt1,3d,dyn,GOCART -Dust 2,dust2,dt2,3d,dyn,GOCART -Dust 3,dust3,dt3,3d,dyn,GOCART -Dust 4,dust4,dt4,3d,dyn,GOCART -Dust 5,dust5,dt5,3d,dyn,GOCART +Dust (1-5),dust1/.../dust5,dust,3d,dyn,GOCART - all requested read into 4d array Sea salt (1-5),seas1/.../seas5,salt,3d,dyn,GOCART - all requested read into 4d array Black carbon,bc1/bc2,soot,3d,dyn,GOCART - all requested read into 4d array Organic carbon,oc1/oc2,waso,3d,dyn,GOCART - all requested read into 4d array From 404d60866e2bf4d7c5f9d2e83469323dcc14ec4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 14 Jun 2023 13:37:37 -0400 Subject: [PATCH 30/44] fix seas#wct var --- docs/UFS_unified_variables_table.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/UFS_unified_variables_table.csv b/docs/UFS_unified_variables_table.csv index 81d59fb51..b559bb8ea 100644 --- a/docs/UFS_unified_variables_table.csv +++ b/docs/UFS_unified_variables_table.csv @@ -207,7 +207,7 @@ Seasalt emission fluxes (1-5),ssem001/.../ssem005,ssem,2d,phy, all requested rea Seasalt **emission/sedimentation** fluxes (1-5),seas1sd/.../seas5sd,sssd,2d,phy, all requested read into 3d array Seasalt dry deposition fluxes (1-5),seas1dp/.../seas5dp,ssdp,2d,phy,all requested read into 3d array Seasalt wet deposition fluxes (1-5),seas1wtl/.../seas5wtl,sswt,2d,phy,all requested read into 3d array -Seasalt scavenging fluxes (1-5),seas1wtc,sssv,2d,phy,all requested read into 3d array +Seasalt scavenging fluxes (1-5),seas1wtc/.../seas5wtc,sssv,2d,phy,all requested read into 3d array Black carbon emission fluxes,bceman/bcembb,bcem,2d,phy,all requested read into 3d array Black carbon sedimentation fluxes,bc1sd/bc2sd,bcsd,2d,phy,all requested read into 3d array Black carbon dry deposition fluxes,bc1dp/bc2dp,bcdp,2d,phy,all requested read into 3d array From f5c49e968aa6d15c414e2f33384da8139716b6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 14 Jun 2023 16:58:29 -0400 Subject: [PATCH 31/44] add software prerequisites --- docs/Installation.rst | 38 +++++++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/docs/Installation.rst b/docs/Installation.rst index a6e5c9a33..9c396bb89 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -16,15 +16,47 @@ Software Requirements The UPP is tested on a variety of research platforms, including NOAA HPC systems (e.g., Hera, Orion) and the NCAR HPC Cheyenne. These supported platforms are pre-configured for building and running the UPP and already -have the required libraries available via `HPC-Stack `_ in a centralized +have the required libraries available via `HPC-Stack `__ in a centralized location. The :term:`HPC-Stack` is a script-based build system that builds the software stack required by UFS components. Users working on unsupported platforms will need to install the HPC-Stack on their system and can do so following -the instructions in the `HPC-Stack User's Guide `_. +the instructions in the `HPC-Stack User's Guide `__. .. note:: - UFS applications are gradually shifting to :term:`spack-stack`, which is a :term:`Spack`-based method for installing the same UFS prerequisite software libraries installed by HPC-Stack. The spack-stack is currently used on NOAA Cloud platforms and in containerized UFS applications, while HPC-Stack is still used on other Level 1 systems and is the software stack validated by the UFS Weather Model. Users are encouraged to check out `spack-stack `__ to prepare for the upcoming shift in support from HPC-Stack to spack-stack. + UFS applications are gradually shifting to :term:`spack-stack`, which is a :term:`Spack`-based method for installing the same UFS prerequisite software libraries installed by HPC-Stack. The spack-stack is currently used on NOAA Cloud platforms and in containerized UFS applications, while HPC-Stack is still used on other Level 1 systems and is the software stack validated by the UFS Weather Model. Users are encouraged to check out `spack-stack `__ to prepare for the upcoming shift in support from HPC-Stack to spack-stack. Users can install spack-spack instead of HPC-Stack by following the instructions in the `spack-stack User's Guide `. + +---------------- +Common Modules +---------------- + +As of June 14, 2023, the UPP uses the following common modules from HPC-Stack: + +.. code-block:: console + + cmake 3.16.1+ + hdf5/1.10.6 + netcdf/4.7.4 + jasper 2.0.22+ + libpng 1.6.37 / png 1.6.35 + zlib 1.2.11 + g2 3.4.1+ + g2tmpl 1.10.0+ + bacio 2.4.1 + ip 3.3.3 + sp 2.3.3 + crtm 2.3.0 + w3emc 2.9.2 + nemsio 2.5.2+ + sigio 2.3.2 + sfcio 1.4.1 + wrf_io 1.1.1+ + + +The most updated list of modules can be viewed in each machine's modulefile +`here `__. +Users on a non-Tier-1 system should look at the modulefile for the system +whose architecture most closely resembles their own system's architecture. ============================ Obtaining and Installing UPP From 4dbd52595a733d5f307045970eeb66ede486f44f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 14 Jun 2023 17:11:14 -0400 Subject: [PATCH 32/44] update README.md --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f56d57188..38694c754 100644 --- a/README.md +++ b/README.md @@ -63,8 +63,15 @@ Code Managers: Wen Meng, Huiya Chuang, Kate Fossell ## Prerequisites -The UPP requires certain NCEPLIB packages to be installed via -the HPC-Stack project. +The UPP requires certain NCEPLIBS packages to be installed via the +HPC-Stack project. For instructions on installing these packages as a +bundle via HPC-Stack, see: https://hpc-stack.readthedocs.io/en/latest/. +Users may instead install packages via spack-stack. For instructions, +see: https://spack-stack.readthedocs.io/en/latest/. +The `UPP/modulefiles` directory indicates which package versions are +used and supported on Level 1 systems. + +Required NCEPLIBS packages: - [NCEPLIBS-g2](https://github.com/NOAA-EMC/NCEPLIBS-g2) - [NCEPLIBS-g2tmpl](https://github.com/NOAA-EMC/NCEPLIBS-g2tmpl) @@ -72,7 +79,6 @@ the HPC-Stack project. - [NCEPLIBS-ip](https://github.com/NOAA-EMC/NCEPLIBS-ip) - [NCEPLIBS-bacio](https://github.com/NOAA-EMC/NCEPLIBS-bacio) - [NCEPLIBS-w3emc](https://github.com/NOAA-EMC/NCEPLIBS-w3emc) -- [NCEPLIBS-w3nco](https://github.com/NOAA-EMC/NCEPLIBS-w3nco) - [CRTM](https://github.com/noaa-emc/emc_crtm) Also required to build NCEPpost executable (cmake option @@ -89,6 +95,7 @@ option BUILD_WITH_WRFIO). The following third-party libraries are required: +- [netcdf](https://github.com/Unidata/netcdf) - [netcdf-c](https://github.com/Unidata/netcdf-c) - [netcdf-fortran](https://github.com/Unidata/netcdf-fortran) - [Jasper](https://github.com/jasper-software/jasper) From e88be1db4530d0369d80365e1e916413644b378c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Wed, 14 Jun 2023 17:18:44 -0400 Subject: [PATCH 33/44] minor update to README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 38694c754..004fd1db6 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,8 @@ The following third-party libraries are required: - [netcdf-fortran](https://github.com/Unidata/netcdf-fortran) - [Jasper](https://github.com/jasper-software/jasper) - [libpng](http://www.libpng.org/pub/png/libpng.html) -- [libz](https://zlib.net/) +- [zlib](https://zlib.net/) +- [hdf5](https://github.com/HDFGroup/hdf5) ## Building From ff3eb08779b737f409bc1aa2a03d229c7eb4bee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Thu, 15 Jun 2023 11:24:28 -0400 Subject: [PATCH 34/44] minor update to README.md --- docs/Installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Installation.rst b/docs/Installation.rst index 9c396bb89..575d58526 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -36,7 +36,7 @@ As of June 14, 2023, the UPP uses the following common modules from HPC-Stack: cmake 3.16.1+ hdf5/1.10.6 - netcdf/4.7.4 + netcdf 4.7.4 jasper 2.0.22+ libpng 1.6.37 / png 1.6.35 zlib 1.2.11 From a16d8085d0cc59c3fc03cb2458cdfec5d79b566a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 20 Jun 2023 11:49:31 -0400 Subject: [PATCH 35/44] lowercase Post for XML --- docs/InputsOutputs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/InputsOutputs.rst b/docs/InputsOutputs.rst index db2a7f6aa..b87321830 100644 --- a/docs/InputsOutputs.rst +++ b/docs/InputsOutputs.rst @@ -148,7 +148,7 @@ Perl program :bolditalic:`parm/POSTXMLPreprocessor.pl` to generate the post flat .. code-block:: console - /usr/bin/perl POSTXMLPreprocessor.pl your_user_defined_xml post_avblflds.xml your_user_defined_flat + /usr/bin/perl PostXMLPreprocessor.pl your_user_defined_xml post_avblflds.xml your_user_defined_flat where *your_user_defined_xml* is your modified xml and *your_user_defined_flat* is the output text file. From 5b4da339ac867cb530baa4a0897be94079f2b93d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Tue, 20 Jun 2023 11:51:05 -0400 Subject: [PATCH 36/44] lowercase Post for XML --- docs/InputsOutputs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/InputsOutputs.rst b/docs/InputsOutputs.rst index b87321830..eed194926 100644 --- a/docs/InputsOutputs.rst +++ b/docs/InputsOutputs.rst @@ -144,7 +144,7 @@ run-time failures with the UPP. To run the validation: xmllint --noout --schema EMC_POST_Avblflds_Schema.xsd post_avblflds.xml Once the xmls are validated, the user will need to generate the flat file. The below command will run the -Perl program :bolditalic:`parm/POSTXMLPreprocessor.pl` to generate the post flat file: +Perl program :bolditalic:`parm/PostXMLPreprocessor.pl` to generate the post flat file: .. code-block:: console From aa4fc82a1fcceac482d7d9d3dbff95b4bb4bf499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 26 Jun 2023 11:05:07 -0400 Subject: [PATCH 37/44] 1st part of Tracy's grib2 table updates --- docs/UPP_GRIB2_Table.csv | 18 +++++++++--------- docs/UPP_GRIB2_Table_byID.csv | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index 593d9bc0b..f8aeea6ef 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -79,8 +79,8 @@ Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,75 Surface CAPE,CAPE_ON_SURFACE,CAPE,32 Surface CIN,CIN_ON_SURFACE,CIN,107 Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,80 -**Relative humidity on sigma levels 0.66-1.0**,RH_ON_SIGMA_LVL_0.66-1.0,RH,81 -**Relative humidity on sigma levels 0.33-0.66**,RH_ON_SIGMA_LVL_0.33-0.66,RH,82 +Relative humidity on sigma layer (0.66-1.0 mean),RH_ON_SIGMA_LVL_0.66-1.0,RH,81 +Relative humidity on sigma layer (0.33-0.66 mean),RH_ON_SIGMA_LVL_0.33-0.66,RH,82 Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200 Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,201 Column integrated rain,TCOLR_ON_ENTIRE_ATMOS,TCOLR,202 @@ -167,7 +167,7 @@ V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,61 Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,62 Freezing level RH,RH_ON_0C_ISOTHERM,RH,63 Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,165 -**Relative humidity on sigma levels 0.33-1.0**,RH_ON_SIGMA_LVL_0.33-1.0,RH,66 +Relative humidity on sigma layer (0.33-1.0 mean),RH_ON_SIGMA_LVL_0.33-1.0,RH,66 Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,67 Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,68 Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,69 @@ -187,12 +187,12 @@ Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,90 **V-wind on sigma level 0.98230**,VGRD_ON_SIGMA_LVL_0.98230,VGRD,96 **Temperature on sigma level 0.89671**,TMP_ON_SIGMA_LVL_0.89671,TMP,97 **Temperature on sigma level 0.78483**,TMP_ON_SIGMA_LVL_0.78483,TMP,98 -**Relative humidity on sigma level 0.47_1.0**,RH_ON_SIGMA_LVL_0.47_1.0,RH,99 -**Relative humidity on sigma level 0.47_0.96**,RH_ON_SIGMA_LVL_0.47_0.96,RH,100 -**Relative humidity on sigma level 0.18_0.47**,RH_ON_SIGMA_LVL_0.18_0.47,RH,101 -**Relative humidity on sigma level 0.84_0.98**,RH_ON_SIGMA_LVL_0.84_0.98,RH,102 -**Moisture convergence on sigma level 0.85_1.0**,MCONV_ON_SIGMA_LVL_0.85_1.0,MCONV,103 -**Precipitable water on sigma level 0.33_1.0**,PWAT_ON_SIGMA_LVL_0.33_1.0,PWAT,104 +Relative humidity on sigma layer (0.47_1.0* mean)RH_ON_SIGMA_LVL_0.47_1.0,RH,99 +Relative humidity on sigma layer (0.47_0.96 mean),RH_ON_SIGMA_LVL_0.47_0.96,RH,100 +Relative humidity on sigma layer (0.18_0.47 mean),RH_ON_SIGMA_LVL_0.18_0.47,RH,101 +Relative humidity on sigma layer (0.84_0.98 mean),RH_ON_SIGMA_LVL_0.84_0.98,RH,102 +Moisture convergence on sigma layer (0.85_1.0 mean),MCONV_ON_SIGMA_LVL_0.85_1.0,MCONV,103 +Precipitable water on sigma layer (0.33_1.0 mean),PWAT_ON_SIGMA_LVL_0.33_1.0,PWAT,104 Visibility,VIS_ON_SURFACE,VIS,180 Vegetation type,VGTYP_ON_SURFACE,VGTYP,218 Soil type,SOTYP_ON_SURFACE,SOTYP,219 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index 059f5f47c..a25d20aa7 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -62,7 +62,7 @@ Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,62 Freezing level RH,RH_ON_0C_ISOTHERM,RH,63 10 M u-component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 10 M v-component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 -**Relative humidity on sigma levels 0.33-1.0**,RH_ON_SIGMA_LVL_0.33-1.0,RH,66 +Relative humidity on sigma layer (0.33-1.0 mean),RH_ON_SIGMA_LVL_0.33-1.0,RH,66 Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,67 Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,68 Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,69 @@ -77,8 +77,8 @@ Height on model surface,HGT_ON_HYBRID_LVL,HGT,77 Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,79 Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,80 -**Relative humidity on sigma levels 0.66-1.0**,RH_ON_SIGMA_LVL_0.66-1.0,RH,81 -**Relative humidity on sigma levels 0.33-0.66**,RH_ON_SIGMA_LVL_0.33-0.66,RH,82 +Relative humidity on sigma layer (0.66-1.0 mean),RH_ON_SIGMA_LVL_0.66-1.0,RH,81 +Relative humidity on sigma layer (0.33-0.66 mean),RH_ON_SIGMA_LVL_0.33-0.66,RH,82 Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,83 Geostrophic streamfunction on model surface,STRM_ON_HYBRID_LVL,STRM,84 Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,85 @@ -95,12 +95,12 @@ Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,90 **V-wind on sigma level 0.98230**,VGRD_ON_SIGMA_LVL_0.98230,VGRD,96 **Temperature on sigma level 0.89671**,TMP_ON_SIGMA_LVL_0.89671,TMP,97 **Temperature on sigma level 0.78483**,TMP_ON_SIGMA_LVL_0.78483,TMP,98 -**Relative humidity on sigma level 0.47_1.0**,RH_ON_SIGMA_LVL_0.47_1.0,RH,99 -**Relative humidity on sigma level 0.47_0.96**,RH_ON_SIGMA_LVL_0.47_0.96,RH,100 -**Relative humidity on sigma level 0.18_0.47**,RH_ON_SIGMA_LVL_0.18_0.47,RH,101 -**Relative humidity on sigma level 0.84_0.98**,RH_ON_SIGMA_LVL_0.84_0.98,RH,102 -**Moisture convergence on sigma level 0.85_1.0**,MCONV_ON_SIGMA_LVL_0.85_1.0,MCONV,103 -**Precipitable water on sigma level 0.33_1.0**,PWAT_ON_SIGMA_LVL_0.33_1.0,PWAT,104 +Relative humidity on sigma layer (0.47_1.0* mean)RH_ON_SIGMA_LVL_0.47_1.0,RH,99 +Relative humidity on sigma layer (0.47_0.96 mean),RH_ON_SIGMA_LVL_0.47_0.96,RH,100 +Relative humidity on sigma layer (0.18_0.47 mean),RH_ON_SIGMA_LVL_0.18_0.47,RH,101 +Relative humidity on sigma layer (0.84_0.98 mean),RH_ON_SIGMA_LVL_0.84_0.98,RH,102 +Moisture convergence on sigma layer (0.85_1.0 mean),MCONV_ON_SIGMA_LVL_0.85_1.0,MCONV,103 +Precipitable water on sigma layer (0.33_1.0 mean),PWAT_ON_SIGMA_LVL_0.33_1.0,PWAT,104 Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,105 2 M temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMP,106 Surface CIN,CIN_ON_SURFACE,CIN,107 From bf380b3bcf14aa3ed7af896252c903b9843ab7ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 26 Jun 2023 12:23:04 -0400 Subject: [PATCH 38/44] 2nd part of Tracy's grib2 table updates --- docs/UPP_GRIB2_Table.csv | 32 ++++++++++++++++---------------- docs/UPP_GRIB2_Table_byID.csv | 32 ++++++++++++++++---------------- 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv index f8aeea6ef..8d1bfcd36 100644 --- a/docs/UPP_GRIB2_Table.csv +++ b/docs/UPP_GRIB2_Table.csv @@ -362,9 +362,9 @@ Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,314 Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,315 Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,316 Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,317 -**Relative humidity on sigma level 0.44-1.0**,RH_ON_SIGMA_LVL_0.44-1.0,RH,318 -**Relative humidity on sigma level 0.72-0.94**,RH_ON_SIGMA_LVL_0.72-0.94,RH,319 -**Relative humidity on sigma level 0.44-0.72**,RH_ON_SIGMA_LVL_0.44-0.72,RH,320 +Relative humidity on sigma layer (0.44-1.0* mean)RH_ON_SIGMA_LVL_0.44-1.0,RH,318 +Relative humidity on sigma layer (0.72-0.94 mean),RH_ON_SIGMA_LVL_0.72-0.94,RH,319 +Relative humidity on sigma layer (0.44-0.72 mean),RH_ON_SIGMA_LVL_0.44-0.72,RH,320 **Temperature on sigma level 0.9950**,TMP_ON_SIGMA_LVL_0.9950,TMP,321 **Potential temperature on sigma level 0.9950**,POT_ON_SIGMA_LVL_0.9950,POT,322 **Relative humidity on sigma level 0.9950**,RH_ON_SIGMA_LVL_0.9950,RH,323 @@ -397,20 +397,20 @@ Minimum 2m temperature,MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMIN,346 Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,347 Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 Ice thickness,ICETK_ON_SURFACE,ICETK,349 -Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 -Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 -**Vertical diffusion tendency on pressure surface**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 -Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 -Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 -Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 -**Vertical diffusion moistening on pressure surface**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 -Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 -Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 -**Large scale moistening on pressure surface**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 +Shortwave temperature tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 +Longwave temperature tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 +Vertical diffusion temperature tendency on pressure surface,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 +Deep convective temperature tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 +Shallow convective temperature tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 +Grid scale temperature tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 +Vertical diffusion moistening rate on pressure surface,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 +Deep convective moistening rate on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 +Shallow convective moistening rate on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 +Grid scale moistening rate on pressure surface,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 **Ozone vertical diffusion on pressure surface**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 **Ozone production on pressure surface**,POZ_ON_ISOBARIC_SFC,POZ,365 Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 -Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 +Mass weighted potential vorticity on pressure surface,PVMW_ON_ISOBARIC_SFC,PVMW,367 **Snow temperature on pressure surface**,SNOT_ON_ISOBARIC_SFC,SNOT,368 **Vertical diffusion zonal acceleration on pressure surface**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 **Gravity wave drag zonal acceleration on pressure surface**,GWDU_ON_ISOBARIC_SFC,GWDU,370 @@ -418,7 +418,7 @@ Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 **Vertical diffusion meridional acceleration on pressure surface**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 **Gravity wave drag meridional acceleration on pressure surface**,GWDV_ON_ISOBARIC_SFC,GWDV,373 **Convective meridional momentum mixing acceleration on pressure surface**,CNVV_ON_ISOBARIC_SFC,CNVV,374 -**Non-Convective Cloud Cover% on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +**Non-Convective Cloud Cover % on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 @@ -436,7 +436,7 @@ Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 **Convective updraft mass flux on pressure surface**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 **Convective downdraft mass flux on pressure surface**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 -**Convective detrainment mass flux (kg m-2 s-1) on pressure surface**,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 +Convective detrainment mass flux on pressure surface,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 **Convective gravity drag zonal acceleration on pressure surface**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 **Convective gravity drag meridional acceleration on pressure surface**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index a25d20aa7..6d922ca01 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -313,9 +313,9 @@ Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,314 Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,315 Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,316 Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,317 -**Relative humidity on sigma level 0.44-1.0**,RH_ON_SIGMA_LVL_0.44-1.0,RH,318 -**Relative humidity on sigma level 0.72-0.94**,RH_ON_SIGMA_LVL_0.72-0.94,RH,319 -**Relative humidity on sigma level 0.44-0.72**,RH_ON_SIGMA_LVL_0.44-0.72,RH,320 +Relative humidity on sigma layer (0.44-1.0 mean),RH_ON_SIGMA_LVL_0.44-1.0,RH,318 +Relative humidity on sigma layer (0.72-0.94 mean),RH_ON_SIGMA_LVL_0.72-0.94,RH,319 +Relative humidity on sigma layer (0.44-0.72 mean),RH_ON_SIGMA_LVL_0.44-0.72,RH,320 **Temperature on sigma level 0.9950**,TMP_ON_SIGMA_LVL_0.9950,TMP,321 **Potential temperature on sigma level 0.9950**,POT_ON_SIGMA_LVL_0.9950,POT,322 **Relative humidity on sigma level 0.9950**,RH_ON_SIGMA_LVL_0.9950,RH,323 @@ -349,20 +349,20 @@ Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,350 **Lapse rate on theta surface**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 -Shortwave tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 -Longwave tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 -**Vertical diffusion tendency on pressure surface**,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 -Deep convective tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 -Shallow convective tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 -Grid scale tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 -**Vertical diffusion moistening on pressure surface**,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 -Deep convective moisture on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 -Shallow convective moisture on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 -**Large scale moistening on pressure surface**,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 +Shortwave temperature tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 +Longwave temperature tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 +Vertical diffusion temperature tendency on pressure surface,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 +Deep convective temperature tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 +Shallow convective temperature tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 +Grid scale temperature tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 +Vertical diffusion moistening rate on pressure surface,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 +Deep convective moistening rate on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 +Shallow convective moistening rate on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 +Grid scale moistening rate on pressure surface,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 **Ozone vertical diffusion on pressure surface**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 **Ozone production on pressure surface**,POZ_ON_ISOBARIC_SFC,POZ,365 Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 -Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 +Mass weighted potential vorticity on pressure surface,PVMW_ON_ISOBARIC_SFC,PVMW,367 **Snow temperature on pressure surface**,SNOT_ON_ISOBARIC_SFC,SNOT,368 **Vertical diffusion zonal acceleration on pressure surface**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 **Gravity wave drag zonal acceleration on pressure surface**,GWDU_ON_ISOBARIC_SFC,GWDU,370 @@ -370,7 +370,7 @@ Mass weighted potential vorticity,PVMW_ON_ISOBARIC_SFC,PVMW,367 **Vertical diffusion meridional acceleration on pressure surface**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 **Gravity wave drag meridional acceleration on pressure surface**,GWDV_ON_ISOBARIC_SFC,GWDV,373 **Convective meridional momentum mixing acceleration on pressure surface**,CNVV_ON_ISOBARIC_SFC,CNVV,374 -**Non-Convective Cloud Cover% on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +**Non-Convective Cloud Cover % on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 @@ -388,7 +388,7 @@ Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 **Convective updraft mass flux on pressure surface**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 **Convective downdraft mass flux on pressure surface**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 -"**Convective detrainment mass flux (kg m-2 s-1) on pressure surface**",CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 +Convective detrainment mass flux on pressure surface,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 **Convective gravity drag zonal acceleration on pressure surface**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 **Convective gravity drag meridional acceleration on pressure surface**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 From 8fc2d5f887ed1644c9500b95cad483ad359a1763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 26 Jun 2023 16:29:07 -0400 Subject: [PATCH 39/44] 3rd part of Tracy's grib2 table updates; remove old table --- docs/UPP_GRIB2_Table.csv | 868 ---------------------------------- docs/UPP_GRIB2_Table.rst | 15 - docs/UPP_GRIB2_Table_byID.csv | 78 +-- 3 files changed, 39 insertions(+), 922 deletions(-) delete mode 100644 docs/UPP_GRIB2_Table.csv delete mode 100644 docs/UPP_GRIB2_Table.rst diff --git a/docs/UPP_GRIB2_Table.csv b/docs/UPP_GRIB2_Table.csv deleted file mode 100644 index 8d1bfcd36..000000000 --- a/docs/UPP_GRIB2_Table.csv +++ /dev/null @@ -1,868 +0,0 @@ -Field Description,Name in Grib2 Control File,Grib2 pname,UPP ID -Radar reflectivity on model surface,REFD_ON_HYBRID_LVL,REFD,250 -Pressure on model surface,PRES_ON_HYBRID_LVL,PRES,1 -Height on model surface,HGT_ON_HYBRID_LVL,HGT,77 -Temperature on model surface,TMP_ON_HYBRID_LVL,TMP,2 -Potential temperature on model surface,POT_ON_HYBRID_LVL,POT,3 -Dew point temperature on model surface,DPT_ON_HYBRID_LVL,DPT,4 -Specific humidity on model surface,SPFH_ON_HYBRID_LVL,SPFH,5 -Relative humidity on model surface,RH_ON_HYBRID_LVL,RH,6 -Moisture convergence on model surface,MCONV_ON_HYBRID_LVL,MCONV,83 -U-component wind on model surface,UGRD_ON_HYBRID_LVL,UGRD,7 -V-component wind on model surface,VGRD_ON_HYBRID_LVL,VGRD,8 -Cloud water on model surface,CLMR_ON_HYBRID_LVL,CLMR,124 -Cloud ice on model surface,ICMR_ON_HYBRID_LVL,ICMR,125 -Rain on model surface,RWMR_ON_HYBRID_LVL,RWMR,181 -Snow on model surface,SNMR_ON_HYBRID_LVL,SNMR,182 -Cloud fraction on model surface,TCDC_ON_HYBRID_LVL,TCDC,145 -Omega on model surface,VVEL_ON_HYBRID_LVL,VVEL,9 -Absolute vorticity on model surface,ABSV_ON_HYBRID_LVL,ABSV,10 -Geostrophic streamfunction on model surface,STRM_ON_HYBRID_LVL,STRM,84 -Turbulent kinetic energy on model surface,TKE_ON_HYBRID_LVL,TKE,11 -Richardson number on model surface,RI_ON_HYBRID_LVL,RI,111 -Master length scale on model surface,BMIXL_ON_HYBRID_LVL,BMIXL,146 -Asymptotic length scale on model surface,AMIXL_ON_HYBRID_LVL,AMIXL,147 -Radar reflectivity on pressure surface,REFD_ON_ISOBARIC_SFC,REFD,251 -Height on pressure surface,HGT_ON_ISOBARIC_SFC,HGT,12 -Temperature on pressure surface,TMP_ON_ISOBARIC_SFC,TMP,13 -Potential temperature on pressure surface,POT_ON_ISOBARIC_SFC,POT,14 -Dew point temperature on pressure surface,DPT_ON_ISOBARIC_SFC,DPT,15 -Specific humidity on pressure surface,SPFH_ON_ISOBARIC_SFC,SPFH,16 -Relative humidity on pressure surface,RH_ON_ISOBARIC_SFC,RH,17 -Moisture convergence on pressure surface,MCONV_ON_ISOBARIC_SFC,MCONV,85 -U-component wind on pressure surface,UGRD_ON_ISOBARIC_SFC,UGRD,18 -V-component wind on pressure surface,VGRD_ON_ISOBARIC_SFC,VGRD,19 -Omega on pressure surface,VVEL_ON_ISOBARIC_SFC,VVEL,20 -Absolute vorticity on pressure surface,ABSV_ON_ISOBARIC_SFC,ABSV,21 -Geostrophic streamfunction on pressure surface,STRM_ON_ISOBARIC_SFC,STRM,86 -Turbulent kinetic energy on pressure surface,TKE_ON_ISOBARIC_SFC,TKE,22 -Cloud water on pressure surface,CLMR_ON_ISOBARIC_SFC,CLMR,153 -Cloud ice on pressure surface,ICMR_ON_ISOBARIC_SFC,ICMR,166 -Rain on pressure surface,RWMR_ON_ISOBARIC_SFC,RWMR,183 -Snow water on pressure surface,SNMR_ON_ISOBARIC_SFC,SNMR,184 -Total condensate on pressure surface,TCOND_ON_ISOBARIC_SFC,TCOND,198 -Mesinger (Membrane) sea level pressure,MSLET_ON_MEAN_SEA_LVL,MSLET,23 -Shuell sea level pressure,PRES_ON_MEAN_SEA_LVL,PRMSL,105 -2 M pressure,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,PRES,138 -2 M temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMP,106 -2 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,SPFH,112 -2 M mixing ratio,Not currently available for grib2,NA,414 -2 M dew point temperature,DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DPT,113 -2 M RH,RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,RH,114 -10 M u-component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,64 -10 M v-component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,65 -10 M potential temperature,POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,POT,158 -10 M specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,SPFH,159 -Surface pressure,PRES_ON_SURFACE,PRES,24 -Terrain height,HGT_ON_SURFACE,HGT,25 -Skin potential temperature,POT_ON_SURFACE,POT,27 -Skin specific humidity,SPFH_ON_SURFACE,SPFH,28 -Skin dew point temperature,DPT_ON_SURFACE,DPT,29 -Skin Relative humidity,RH_ON_SURFACE,RH,76 -Skin temperature,TMP_ON_SURFACE,TMP,26 -Soil temperature at the bottom of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC_3m,TSOIL,115 -GFS Soil temperature at the bottom of soil layers,GFS_TMP_ON_DEPTH_BEL_LAND_SFC_3m,TMP,571 -**GFS lifted index on surface**,GFS_LFTX_ON_SURFACE,LFTX,572 -**GFS lifted index on surface - best**,GFS_4LFTX_ON_SURFACE,4LFTX,573 -**Soil temperature in between each of soil layers**,GFS_TMP_ON_DEPTH_BEL_LAND_SFC,TMP,574 -Soil temperature in between each of soil layers,TSOIL_ON_DEPTH_BEL_LAND_SFC,TSOIL,116 -Soil moisture in between each of soil layers,SOILW_ON_DEPTH_BEL_LAND_SFC,SOILW,117 -Snow water equivalent,WEASD_ON_SURFACE,WEASD,119 -Snow cover in percentage,SNOWC_ON_SURFACE,SNOWC,120 -Heat exchange coeff at surface,SFEXC_ON_SURFACE,SFEXC,169 -Vegetation cover,VEG_ON_SURFACE,VEG,170 -Soil moisture availability,MSTAV_ON_DEPTH_BEL_LAND_SFC,MSTAV,171 -Ground heat flux - instantaneous,INST_GFLUX_ON_SURFACE,GFLUX,152 -Lifted index—surface based,LFTX_ON_ISOBARIC_SFC_500-1000hpa,LFTX,30 -Lifted index—best,4LFTX_ON_SPEC_PRES_ABOVE_GRND,4LFTX,31 -Lifted index—from boundary layer,PLI_ON_SPEC_PRES_ABOVE_GRND,PLI,75 -Surface CAPE,CAPE_ON_SURFACE,CAPE,32 -Surface CIN,CIN_ON_SURFACE,CIN,107 -Column integrated precipitable water,PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,PWAT,80 -Relative humidity on sigma layer (0.66-1.0 mean),RH_ON_SIGMA_LVL_0.66-1.0,RH,81 -Relative humidity on sigma layer (0.33-0.66 mean),RH_ON_SIGMA_LVL_0.33-0.66,RH,82 -Column integrated cloud water,TCOLW_ON_ENTIRE_ATMOS,TCOLW,200 -Column integrated cloud ice,TCOLI_ON_ENTIRE_ATMOS,TCOLI,201 -Column integrated rain,TCOLR_ON_ENTIRE_ATMOS,TCOLR,202 -Column integrated snow,TCOLS_ON_ENTIRE_ATMOS,TCOLS,203 -Column integrated total condensate,TCOLC_ON_ENTIRE_ATMOS,TCOLC,204 -Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 -Helicity,HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,HLCY,162 -U-component storm motion,USTM_ON_SPEC_HGT_LVL_ABOVE_GRND,USTM,163 -V-component storm motion,VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND,VSTM,164 -Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,87 -Accumulated convective precipitation,ACM_ACPCP_ON_SURFACE,ACPCP,33 -Accumulated grid-scale precipitation,ACM_NCPCP_ON_SURFACE,NCPCP,34 -Accumulated snowfall,ACM_WEASD_ON_SURFACE,WEASD,35 -Accumulated large scale snow,Not currently available for grib2,NA,244 -Accumulated total snow melt,ACM_SNOM_ON_SURFACE,SNOM,121 -Precipitation type (4 types) – instantaneous,INST_CRAIN_ON_SURFACE,CRAIN,160 -Precipitation rate - instantaneous,INST_PRATE_ON_SURFACE,PRATE,167 -Composite radar reflectivity,REFC_ON_ENTIRE_ATMOS,REFC,252 -Low level cloud fraction,LCDC_ON_LOW_CLOUD_LYR,LCDC,37 -Mid level cloud fraction,MCDC_ON_MID_CLOUD_LYR,MCDC,38 -High level cloud fraction,HCDC_ON_HIGH_CLOUD_LYR,HCDC,39 -Total cloud fraction,INST_TCDC_ON_ENTIRE_ATMOS,TCDC,161 -Time-averaged total cloud fraction,AVE_TCDC_ON_ENTIRE_ATMOS,TCDC,144 -Time-averaged stratospheric cloud fraction,AVE_CDLYR_ON_ENTIRE_ATMOS,CDLYR,139 -Time-averaged convective cloud fraction,AVE_CDCON_ON_ENTIRE_ATMOS,CDCON,143 -Cloud bottom pressure,PRES_ON_CLOUD_BASE,PRES,148 -Cloud top pressure,PRES_ON_CLOUD_TOP,PRES,149 -Cloud bottom height (above MSL),HGT_ON_CLOUD_BASE,HGT,178 -Cloud top height (above MSL),HGT_ON_CLOUD_TOP,HGT,179 -Convective cloud bottom pressure,PRES_ON_CONVECTIVE_CLOUD_BOT_LVL,PRES,188 -Convective cloud top pressure,PRES_ON_CONVECTIVE_CLOUD_TOP_LVL,PRES,189 -Shallow convective cloud bottom pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL,PRES,190 -Shallow convective cloud top pressure,PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL,PRES,191 -Deep convective cloud bottom pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL,PRES,192 -Deep convective cloud top pressure,PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL,PRES,193 -Grid scale cloud bottom pressure,PRES_ON_GRID_SCALE_CLOUD_BOT_LVL,PRES,194 -Grid scale cloud top pressure,PRES_ON_GRID_SCALE_CLOUD_TOP_LVL,PRES,195 -Convective cloud fraction,CDCON_ON_ENTIRE_ATMOS,CDCON,196 -Convective cloud efficiency,CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR,CUEFI,197 -Above-ground height of LCL,HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC,HGT,109 -Pressure of LCL,PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC,PRES,110 -Cloud top temperature,TMP_ON_CLOUD_TOP,TMP,168 -Temperature tendency from radiative fluxes,TTRAD_ON_HYBRID_LVL,TTRAD,140 -Temperature tendency from shortwave radiative flux,SWHR_ON_HYBRID_LVL,SWHR,40 -Temperature tendency from longwave radiative flux,LWHR_ON_HYBRID_LVL,LWHR,41 -Outgoing surface shortwave radiation - instantaneous,INST_USWRF_ON_SURFACE,USWRF,141 -Outgoing surface longwave radiation - instantaneous,INST_ULWRF_ON_SURFACE,ULWRF,142 -Incoming surface shortwave radiation - time-averaged,AVE_DSWRF_ON_SURFACE,DSWRF,126 -Incoming surface longwave radiation - time-averaged,AVE_DLWRF_ON_SURFACE,DLWRF,127 -Outgoing surface shortwave radiation - time-averaged,AVE_USWRF_ON_SURFACE,USWRF,128 -Outgoing surface longwave radiation - time-averaged,AVE_ULWRF_ON_SURFACE,ULWRF,129 -Outgoing model top shortwave radiation - time-averaged,AVE_USWRF_ON_TOP_OF_ATMOS,USWRF,130 -Outgoing model top longwave radiation - time-averaged,AVE_ULWRF_ON_TOP_OF_ATMOS,ULWRF,131 -Incoming surface shortwave radiation - instantaneous,INST_DSWRF_ON_SURFACE,DSWRF,156 -Incoming surface longwave radiation - instantaneous,INST_DLWRF_ON_SURFACE,DLWRF,157 -Roughness length,SFCR_ON_SURFACE,SFCR,44 -Friction velocity,FRICV_ON_SURFACE,FRICV,45 -Surface drag coefficient,CD_ON_SURFACE,CD,132 -Surface u wind stress,UFLX_ON_SURFACE,UFLX,133 -Surface v wind stress,VFLX_ON_SURFACE,VFLX,134 -Surface sensible heat flux - time-averaged,AVE_SHTFL_ON_SURFACE,SHTFL,43 -Ground heat flux - time-averaged,AVE_GFLUX_ON_SURFACE,GFLUX,135 -Surface latent heat flux - time-averaged,AVE_LHTFL_ON_SURFACE,LHTFL,42 -Surface momentum flux - time-averaged,AVE_MFLX_ON_SURFACE,MFLX,46 -Accumulated surface evaporation,ACM_EVP_ON_SURFACE,EVP,47 -Surface sensible heat flux – instantaneous,INST_SHTFL_ON_SURFACE,SHTFL,154 -Surface latent heat flux - instantaneous,INST_LHTFL_ON_SURFACE,LHTFL,155 -Latitude,NLAT_ON_SURFACE,NLAT,48 -Longitude,ELON_ON_SURFACE,ELON,49 -Land sea mask (land=1 sea=0),LAND_ON_SURFACE,LAND,50 -Sea ice mask,ICEC_ON_SURFACE,ICEC,51 -Surface midday albedo,ALBDO_ON_SURFACE,ALBDO,150 -Sea surface temperature,WTMP_ON_SURFACE,WTMP,151 -Press at tropopause,PRES_ON_TROPOPAUSE,PRES,54 -Temperature at tropopause,TMP_ON_TROPOPAUSE,TMP,55 -Potential temperature at tropopause,POT_ON_TROPOPAUSE,POT,108 -U wind at tropopause,UGRD_ON_TROPOPAUSE,UGRD,56 -V wind at tropopause,VGRD_ON_TROPOPAUSE,VGRD,57 -Wind shear at tropopause,VWSH_ON_TROPOPAUSE,VWSH,58 -Height at tropopause,HGT_ON_TROPOPAUSE,HGT,177 -Temperature at flight levels,TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,TMP,59 -U wind at flight levels,UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,UGRD,60 -V wind at flight levels,VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VGRD,61 -Freezing level height (above mean sea level),HGT_ON_0C_ISOTHERM,HGT,62 -Freezing level RH,RH_ON_0C_ISOTHERM,RH,63 -Highest freezing level height,HGT_ON_HGHST_TROP_FRZ_LVL,HGT,165 -Relative humidity on sigma layer (0.33-1.0 mean),RH_ON_SIGMA_LVL_0.33-1.0,RH,66 -Pressure in boundary layer (30 mb mean),PRES_ON_SPEC_PRES_ABOVE_GRND,PRES,67 -Temperature in boundary layer (30 mb mean),TMP_ON_SPEC_PRES_ABOVE_GRND,TMP,68 -Potential temperature in boundary layers (30 mb mean),POT_ON_SPEC_PRES_ABOVE_GRND,POT,69 -Dew point temperature in boundary layer (30 mb mean),DPT_ON_SPEC_PRES_ABOVE_GRND,DPT,70 -Specific humidity in boundary layer (30 mb mean),SPFH_ON_SPEC_PRES_ABOVE_GRND,SPFH,71 -RH in boundary layer (30 mb mean),RH_ON_SPEC_PRES_ABOVE_GRND,RH,72 -Moisture convergence in boundary layer (30 mb mean),MCONV_ON_SPEC_PRES_ABOVE_GRND,MCONV,88 -Precipitable water in boundary layer (30 mb mean),PWAT_ON_SPEC_PRES_ABOVE_GRND,PWAT,89 -U wind in boundary layer (30 mb mean),UGRD_ON_SPEC_PRES_ABOVE_GRND,UGRD,73 -V wind in boundary layer (30 mb mean),VGRD_ON_SPEC_PRES_ABOVE_GRND,VGRD,74 -Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,90 -**Pressure on sigma level 0.98230**,PRES_ON_SIGMA_LVL_0.98230,PRES,91 -**Temperature on sigma level 0.98230**,TMP_ON_SIGMA_LVL_0.98230,TMP,92 -**Specific humidity on sigma level 0.98230**,SPFH_ON_SIGMA_LVL_0.98230,SPFH,93 -**Relative humidity on sigma level 0.98230**,RH_ON_SIGMA_LVL_0.98230,RH,94 -**U-wind on sigma level 0.98230**,UGRD_ON_SIGMA_LVL_0.98230,UGRD,95 -**V-wind on sigma level 0.98230**,VGRD_ON_SIGMA_LVL_0.98230,VGRD,96 -**Temperature on sigma level 0.89671**,TMP_ON_SIGMA_LVL_0.89671,TMP,97 -**Temperature on sigma level 0.78483**,TMP_ON_SIGMA_LVL_0.78483,TMP,98 -Relative humidity on sigma layer (0.47_1.0* mean)RH_ON_SIGMA_LVL_0.47_1.0,RH,99 -Relative humidity on sigma layer (0.47_0.96 mean),RH_ON_SIGMA_LVL_0.47_0.96,RH,100 -Relative humidity on sigma layer (0.18_0.47 mean),RH_ON_SIGMA_LVL_0.18_0.47,RH,101 -Relative humidity on sigma layer (0.84_0.98 mean),RH_ON_SIGMA_LVL_0.84_0.98,RH,102 -Moisture convergence on sigma layer (0.85_1.0 mean),MCONV_ON_SIGMA_LVL_0.85_1.0,MCONV,103 -Precipitable water on sigma layer (0.33_1.0 mean),PWAT_ON_SIGMA_LVL_0.33_1.0,PWAT,104 -Visibility,VIS_ON_SURFACE,VIS,180 -Vegetation type,VGTYP_ON_SURFACE,VGTYP,218 -Soil type,SOTYP_ON_SURFACE,SOTYP,219 -Canopy conductance,CCOND_ON_SURFACE,CCOND,220 -PBL height,HPBL_ON_SURFACE,HPBL,221 -Slope type,SLTYP_ON_SURFACE,SLTYP,223 -Snow depth,SNOD_ON_SURFACE,SNOD,224 -Liquid soil moisture,SOILL_ON_DEPTH_BEL_LAND_SFC,SOILL,225 -Snow free albedo,SNFALB_ON_SURFACE,SNFALB,226 -Maximum snow albedo,MXSALB_ON_SURFACE,MXSALB,227 -Canopy water evaporation,EVCW_ON_SURFACE,EVCW,228 -Direct soil evaporation,EVBS_ON_SURFACE,EVBS,229 -Plant transpiration,TRANS_ON_SURFACE,TRANS,230 -Snow sublimation,SBSNO_ON_SURFACE,SBSNO,231 -Air dry soil moisture,SMDRY_ON_SURFACE,SMDRY,232 -Soil moist porosity,POROS_ON_SURFACE,POROS,233 -Minimum stomatal resistance,RSMIN_ON_SURFACE,RSMIN,234 -Number of root layers,RLYRS_ON_SURFACE,RLYRS,235 -Soil moist wilting point,WILT_ON_SURFACE,WILT,236 -Soil moist reference,SMREF_ON_SURFACE,SMREF,237 -Canopy conductance - solar component,RCS_ON_SURFACE,RCS,238 -Canopy conductance - temperature component,RCT_ON_SURFACE,RCT,239 -Canopy conductance - humidity component,RCQ_ON_SURFACE,RCQ,240 -Canopy conductance - soil component,RCSOL_ON_SURFACE,RCSOL,241 -Potential evaporation,PEVPR_ON_SURFACE,PEVPR,242 -Heat diffusivity on sigma surface,VEDH_ON_SIGMA_LVLS,VEDH,243 -Surface wind gust,GUST_ON_SURFACE,GUST,245 -Convective precipitation rate,CPRAT_ON_SURFACE,CPRAT,249 -Radar reflectivity at certain above ground heights,REFD_ON_SPEC_HGT_LVL_ABOVE_GRND,REFD,253 -MAPS Sea Level Pressure,MAPS_PRMSL_ON_MEAN_SEA_LVL,PRMSL,445 -Total soil moisture,SOILM_ON_DEPTH_BEL_LAND_SFC,SOILM,36 -Plant canopy surface water,CNWAT_ON_SURFACE,CNWAT,118 -Accumulated storm surface runoff,ACM_SSRUN_ON_SURFACE,SSRUN,122 -Accumulated baseflow runoff,ACM_BGRUN_ON_SURFACE,BGRUN,123 -Fraction of frozen precipitation,CPOFP_ON_SURFACE,CPOFP,172 -**Global Systems Division (GSD) Minimum updraft helicity 2-5km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 -**GSD Minimum updraft helicity 1-6 km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 -**GSD Maximum updraft helicity 0-2km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 -**GSD Minimum updraft helicity 0-2km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 -**GSD Maximum updraft helicity 0-3km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 -**GSD Minimum updraft helicity 0-3km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 -**GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 -**GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 -**GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 -**GSD Maximum hail diameter at k=1**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 -**Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 -GSD Cloud top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 -Averaged temperature tendency from grid scale latent heat release,AVE_LRGHR_ON_HYBRID_LVL,LRGHR,78 -Averaged temperature tendency from convective latent heat release,AVE_CNVHR_ON_HYBRID_LVL,CNVHR,79 -Average snow phase change heat flux,AVE_SNOHF_ON_SURFACE,SNOHF,136 -Accumulated potential evaporation,ACM_PEVAP_ON_SURFACE,PEVAP,137 -Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,350 -Maximum wind pressure level,PRES_ON_MAX_WIND,PRES,173 -Maximum wind height,HGT_ON_MAX_WIND,HGT,174 -U-component of maximum wind,UGRD_ON_MAX_WIND,UGRD,175 -V-component of maximum wind,VGRD_ON_MAX_WIND,VGRD,176 -**GSD cloud ceiling height**,GSD_HGT_ON_CLOUD_CEILING,HGT,408 -GSD cloud top height,GSD_HGT_ON_CLOUD_TOP,HGT,409 -**GSD visibility**,GSD_VIS_ON_SURFACE,VIS,410 -Wind energy potential,WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND,WMIXE,411 -U wind at 80 m above ground,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,UGRD,412 -V wind at 80 m above ground,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,VGRD,413 -Graupel on model surface,GRLE_ON_HYBRID_LVL,GRLE,415 -Graupel on pressure surface,GRLE_ON_ISOBARIC_SFC,GRLE,416 -**Continuous accumulated total precipitation**,CACM_APCP_ON_SURFACE,APCP,417 -**Continuous accumulated convective precipitation**,CACM_ACPCP_ON_SURFACE,ACPCP,418 -**Continuous accumulated grid-scale precipitation**,CACM_NCPCP_ON_SURFACE,NCPCP,419 -Maximum updraft helicity,MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,420 -Maximum 1km reflectivity,MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,MAXREF,421 -Maximum wind speed at 10m,MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,422 -Maximum updraft vertical velocity,MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa,MAXUVV,423 -Maximum downdraft vertical velocity,MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa,MAXDVV,424 -Mean vertical velocity,AVE_DZDT_ON_SIGMA_LVL_0.5-0.8,DZDT,425 -Radar echo top in KDT,HGT_ON_SPEC_HGT_LVL_ABOVE_GRND,HGT,426 -Updraft helicity,UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,427 -**Total column graupel**,TCOLG_ON_ENTIRE_ATMOS,TCOLG,428 -Column integrated maximum graupel,MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR,TCOLG,429 -U-component of 0-1km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VUCSH,430 -V-component of 0-1km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VVCSH,431 -U-component of 0-6km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VUCSH,432 -V-component of 0-6km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km,VVCSH,433 -Total precipitation accumulated over user-specified bucket,BUCKET_APCP_ON_SURFACE,APCP,434 -Convective precipitation accumulated over user-specified bucket,BUCKET_ACPCP_ON_SURFACE,ACPCP,435 -Grid-scale precipitation accumulated over user-specified bucket,BUCKET_NCPCP_ON_SURFACE,NCPCP,436 -Snow accumulated over user-specified bucket,BUCKET_WEASD_ON_SURFACE,WEASD,437 -Model level fraction of rain for Ferrier scheme,FRAIN_ON_HYBRID_LVL,FRAIN,185 -Model level fraction of ice for Ferrier scheme,FICE_ON_HYBRID_LVL,FICE,186 -Model level riming factor for Ferrier scheme,RIME_ON_HYBRID_LVL,RIME,187 -Model level total condensate for Ferrier scheme,TCOND_ON_HYBRID_LVL,TCOND,199 -Height of sigma surface,HGT_ON_SIGMA_LVLS,HGT,205 -Temperature on sigma surface,TMP_ON_SIGMA_LVLS,TMP,206 -Specific humidity on sigma surface,SPFH_ON_SIGMA_LVLS,SPFH,207 -U-wind on sigma surface,UGRD_ON_SIGMA_LVLS,UGRD,208 -V-wind on sigma surface,VGRD_ON_SIGMA_LVLS,VGRD,209 -Omega on sigma surface,VVEL_ON_SIGMA_LVLS,VVEL,210 -Cloud water on sigma surface,CLMR_ON_SIGMA_LVLS,CLMR,211 -Cloud ice on sigma surface,ICMR_ON_SIGMA_LVLS,ICMR,212 -Rain on sigma surface,RWMR_ON_SIGMA_LVLS,RWMR,213 -Snow on sigma surface,SNMR_ON_SIGMA_LVLS,SNMR,214 -Condensate on sigma surface,TCOND_ON_SIGMA_LVLS,TCOND,215 -Pressure on sigma surface,PRES_ON_SIGMA_LVLS,PRES,216 -Turbulent kinetic energy on sigma surface,TKE_ON_SIGMA_LVLS,TKE,217 -Cloud fraction on sigma surface,TCDC_ON_SIGMA_LVLS,TCDC,222 -Graupel on sigma surface,GRLE_ON_SIGMA_LVLS,GRLE,255 -LCL level pressure,PLPL_ON_SPEC_PRES_ABOVE_GRND,PLPL,246 -Lowest wet bulb zero height,HGT_ON_LWST_LVL_OF_WET_BULB_ZERO,HGT,247 -Leaf area index,LAI_ON_SURFACE,LAI,254 -Accumulated land surface model precipitation,ACM_LSPA_ON_SURFACE,LSPA,256 -In-flight icing,TIPD_ON_ISOBARIC_SFC,TIPD,257 -Clear air turbulence,TPFI_ON_ISOBARIC_SFC,TPFI,258 -Wind shear between shelter level and 2000 FT,VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND,VWSH,259 -Ceiling,HGT_ON_CLOUD_CEILING,HGT,260 -Flight restriction,VIS_ON_CLOUD_BASE,VIS,261 -Instantaneous clear sky incoming surface shortwave,INST_CSDSF_ON_SURFACE,CSDSF,262 -Pressure level riming factor for Ferrier scheme,RIME_ON_ISOBARIC_SFC,RIME,263 -Model level vertical velocity,DZDT_ON_HYBRID_LVL,DZDT,264 -Brightness temperature,SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD,SBT122,265 -Average albedo,AVE_ALBDO_ON_SURFACE,ALBDO,266 -Ozone on model surface,O3MR_ON_HYBRID_LVL,O3MR,267 -Ozone on pressure surface,O3MR_ON_ISOBARIC_SFC,O3MR,268 -Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,269 -Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,270 -Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,271 -Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,272 -**Sigma pressure thickness on model surface**,PRES_ON_HYBRID_LVL_LLM,PRES,273 -Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,274 -Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,275 -Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,282 -Composite rain radar reflectivity,REFZR_ON_ENTIRE_ATMOS,REFZR,276 -Composite ice radar reflectivity,REFZI_ON_ENTIRE_ATMOS,REFZI,277 -Composite radar reflectivity from convection,REFZC_ON_ENTIRE_ATMOS,REFZC,278 -Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,279 -Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,280 -Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,281 -**Pressure thickness on model surface**,PRES_ON_HYBRID_LVL_1L,PRES,283 -Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,284 -Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,285 -Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,286 -Height of lowest level super cool liquid water,HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,287 -Height of highest level super cool liquid water,HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR,HGT,288 -Richardson number planetary boundary layer height,HGT_ON_PLANETARY_BOUND_LYR,HGT,289 -Total column shortwave temperature tendency,SWHR_ON_ENTIRE_ATMOS,SWHR,290 -Total column longwave temperature tendency,LWHR_ON_ENTIRE_ATMOS,LWHR,291 -Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,292 -Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,293 -Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,294 -Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,295 -**Temperature on sigma levels**,TMP_ON_SIGMA_LVL_HPC,TMP,296 -Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,297 -Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,298 -Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,299 -Average low cloud fraction,AVE_TCDC_ON_LOW_CLOUD_LYR,TCDC,300 -Average mid cloud fraction,AVE_TCDC_ON_MID_CLOUD_LYR,TCDC,301 -Average high cloud fraction,AVE_TCDC_ON_HIGH_CLOUD_LYR,TCDC,302 -Average low cloud bottom pressure,AVE_PRES_ON_LOW_CLOUD_BOT_LVL,PRES,303 -Average low cloud top pressure,AVE_PRES_ON_LOW_CLOUD_TOP_LVL,PRES,304 -Average low cloud top temperature,AVE_TMP_ON_LOW_CLOUD_TOP_LVL,TMP,305 -Average mid cloud bottom pressure,AVE_PRES_ON_MID_CLOUD_BOT_LVL,PRES,306 -Average mid cloud top pressure,AVE_PRES_ON_MID_CLOUD_TOP_LVL,PRES,307 -Average mid cloud top temperature,AVE_TMP_ON_MID_CLOUD_TOP_LVL,TMP,308 -Average high cloud bottom pressure,AVE_PRES_ON_HIGH_CLOUD_BOT_LVL,PRES,309 -Average high cloud top pressure,AVE_PRES_ON_HIGH_CLOUD_TOP_LVL,PRES,310 -Average high cloud top temperature,AVE_TMP_ON_HIGH_CLOUD_TOP_LVL,TMP,311 -Total column relative humidity,RH_ON_ENTIRE_ATMOS_SINGLE_LYR,RH,312 -Cloud work function,AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR,CWORK,313 -Temperature at maximum wind level,TMP_ON_MAX_WIND,TMP,314 -Time averaged zonal gravity wave stress,AVE_U-GWD_ON_SURFACE,U-GWD,315 -Time averaged meridional gravity wave stress,AVE_V-GWD_ON_SURFACE,V-GWD,316 -Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,317 -Relative humidity on sigma layer (0.44-1.0* mean)RH_ON_SIGMA_LVL_0.44-1.0,RH,318 -Relative humidity on sigma layer (0.72-0.94 mean),RH_ON_SIGMA_LVL_0.72-0.94,RH,319 -Relative humidity on sigma layer (0.44-0.72 mean),RH_ON_SIGMA_LVL_0.44-0.72,RH,320 -**Temperature on sigma level 0.9950**,TMP_ON_SIGMA_LVL_0.9950,TMP,321 -**Potential temperature on sigma level 0.9950**,POT_ON_SIGMA_LVL_0.9950,POT,322 -**Relative humidity on sigma level 0.9950**,RH_ON_SIGMA_LVL_0.9950,RH,323 -**U-wind at sigma level 0.9950**,UGRD_ON_SIGMA_LVL_0.9950,UGRD,324 -**V-wind at sigma level 0.9950**,VGRD_ON_SIGMA_LVL_0.9950,VGRD,325 -**Omega at sigma level 0.9950**,VVEL_ON_SIGMA_LVL_0.9950,VVEL,326 -Simulated GOES 12 channel 2 brightness temperature,SBT122_ON_TOP_OF_ATMOS,SBT122,327 -Simulated GOES 12 channel 3 brightness temperature,SBT123_ON_TOP_OF_ATMOS,SBT123,328 -Simulated GOES 12 channel 4 brightness temperature,SBT124_ON_TOP_OF_ATMOS,SBT124,329 -Simulated GOES 12 channel 5 brightness temperature,SBT126_ON_TOP_OF_ATMOS,SBT126,330 -Cloud fraction on pressure surface,TCDC_ON_ISOBARIC_SFC,TCDC,331 -U-wind on theta surface,UGRD_ON_ISENTROPIC_LVL,UGRD,332 -V-wind on theta surface,VGRD_ON_ISENTROPIC_LVL,VGRD,333 -Temperature on theta surface,TMP_ON_ISENTROPIC_LVL,TMP,334 -Potential vorticity on theta surface,PVORT_ON_ISENTROPIC_LVL,PVORT,335 -Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 -Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 -**Lapse rate on theta surface**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 -U wind on constant PV surface,UGRD_ON_POT_VORT_SFC,UGRD,336 -V wind on constant PV surface,VGRD_ON_POT_VORT_SFC,VGRD,337 -Temperature on constant PV surface,TMP_ON_POT_VORT_SFC,TMP,338 -Height on constant PV surface,HGT_ON_POT_VORT_SFC,HGT,339 -Pressure on constant PV surface,PRES_ON_POT_VORT_SFC,PRES,340 -Wind shear on constant PV surface,VWSH_ON_POT_VORT_SFC,VWSH,341 -Planetary boundary layer cloud fraction,AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR,TCDC,342 -Average water runoff,ACM_WATR_ON_SURFACE,WATR,343 -Planetary boundary layer regime,PBLREG_ON_SURFACE,PBLREG,344 -Maximum 2m temperature,MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMAX,345 -Minimum 2m temperature,MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,TMIN,346 -Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,347 -Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 -Ice thickness,ICETK_ON_SURFACE,ICETK,349 -Shortwave temperature tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 -Longwave temperature tendency on pressure surface,LWHR_ON_ISOBARIC_SFC,LWHR,355 -Vertical diffusion temperature tendency on pressure surface,VDFHR_ON_ISOBARIC_SFC,VDFHR,356 -Deep convective temperature tendency on pressure surface,CNVHR_ON_ISOBARIC_SFC,CNVHR,357 -Shallow convective temperature tendency on pressure surface,SHAHR_ON_ISOBARIC_SFC,SHAHR,358 -Grid scale temperature tendency on pressure surface,LRGHR_ON_ISOBARIC_SFC,LRGHR,359 -Vertical diffusion moistening rate on pressure surface,VDFMR_ON_ISOBARIC_SFC,VDFMR,360 -Deep convective moistening rate on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 -Shallow convective moistening rate on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 -Grid scale moistening rate on pressure surface,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 -**Ozone vertical diffusion on pressure surface**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 -**Ozone production on pressure surface**,POZ_ON_ISOBARIC_SFC,POZ,365 -Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 -Mass weighted potential vorticity on pressure surface,PVMW_ON_ISOBARIC_SFC,PVMW,367 -**Snow temperature on pressure surface**,SNOT_ON_ISOBARIC_SFC,SNOT,368 -**Vertical diffusion zonal acceleration on pressure surface**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 -**Gravity wave drag zonal acceleration on pressure surface**,GWDU_ON_ISOBARIC_SFC,GWDU,370 -**Convective zonal momentum mixing acceleration on pressure surface**,CNVU_ON_ISOBARIC_SFC,CNVU,371 -**Vertical diffusion meridional acceleration on pressure surface**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 -**Gravity wave drag meridional acceleration on pressure surface**,GWDV_ON_ISOBARIC_SFC,GWDV,373 -**Convective meridional momentum mixing acceleration on pressure surface**,CNVV_ON_ISOBARIC_SFC,CNVV,374 -**Non-Convective Cloud Cover % on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 -Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 -Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 -Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 -**Temperature tendency by all physics on pressure surface**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 -**Vertical eddy diffusivity heat exchange on model surface**,VEDH_ON_HYBRID_LVL,VEDH,380 -Mixing height,MIXHT_ON_SURFACE,MIXHT,381 -Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,382 -Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,383 -Average clear-sky outgoing longwave at surface,AVE_CSULF_ON_SURFACE,CSULF,384 -Average clear-sky outgoing longwave at top of atmosphere,AVE_CSULF_ON_TOP_OF_ATMOS,CSULF,385 -Average clear-sky outgoing shortwave at surface,AVE_CSUSF_ON_SURFACE,CSUSF,386 -Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_ATMOS,CSUSF,387 -Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 -Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 -Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 -**Convective updraft mass flux on pressure surface**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 -**Convective downdraft mass flux on pressure surface**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 -Convective detrainment mass flux on pressure surface,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 -**Convective gravity drag zonal acceleration on pressure surface**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 -**Convective gravity drag meridional acceleration on pressure surface**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 -Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 -Field capacity,FLDCP_ON_SURFACE,FLDCP,397 -ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 -ICAO height at tropopause,ICAHT_ON_TROPOPAUSE,ICAHT,399 -Radar echo top,RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR,RETOP,400 -Time averaged surface Visible beam downward solar flux,AVE_VBDSF_ON_SURFACE,VBDSF,401 -Time averaged surface Visible diffuse downward solar flux,AVE_VDDSF_ON_SURFACE,VDDSF,402 -Time averaged surface Near IR beam downward solar flux,AVE_NBDSF_ON_SURFACE,NBDSF,403 -Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,NDDSF,404 -Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,405 -GSD Instant precipitation type on surface,GSD_INST_CRAIN_ON_SURFACE,CRAIN,407 -Dust 1 on pressure surface,DUST1_ON_ISOBARIC_LVL,MASSMR,438 -Dust 2 on pressure surface,DUST2_ON_ISOBARIC_LVL,MASSMR,439 -Dust 3 on pressure surface,DUST3_ON_ISOBARIC_LVL,MASSMR,440 -Dust 4 on pressure surface,DUST4_ON_ISOBARIC_LVL,MASSMR,441 -Dust 5 on pressure surface,DUST5_ON_ISOBARIC_LVL,MASSMR,442 -Equilibrium level height,HGT_ON_EQUIL_LVL,HGT,443 -Lightning,LTNG_ON_SURFACE,LTNG,444 -GOES west channel 2 brightness temperature,SBT112_ON_TOP_OF_ATMOS,SBT112,446 -GOES west channel 3 brightness temperature,SBT113_ON_TOP_OF_ATMOS,SBT113,447 -GOES west channel 4 brightness temperature,SBT114_ON_TOP_OF_ATMOS,SBT114,448 -GOES west channel 5 brightness temperature,SBT115_ON_TOP_OF_ATMOS,SBT115,449 -In flight icing from NCAR algorithm,ICIP_ON_ISOBARIC_SFC,ICIP,450 -Specific humidity at flight levels,SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,SPFH,451 -Virtual temperature based convective available potential energy (CAPE),VTCAPE_ON_SURFACE,CAPE,452 -Virtual temperature based convective inhibition (CIN),VTCIN_ON_SURFACE,CIN,453 -Virtual temperature on model surfaces,Not currently available for grib2,NA,909 -Virtual temperature on pressure surfaces,Not currently available for grib2,NA,910 -Virtual temperature on flight levels,Not currently available for grib2,NA,911 -Ventilation rate,VRATE_ON_PLANETARY_BOUND_LYR,VRATE,454 -Haines index,HINDEX_ON_SURFACE,HINDEX,455 -**GTG EDR turbulence on pressure surface**,EDPARM_ON_ISOBARIC_SFC,EDPARM,464 -**GTG CAT turbulence on pressure surface**,CAT_ON_ISOBARIC_SFC,CATEDR,465 -**GTG MWT turbulence on pressure surface**,MWTURB_ON_ISOBARIC_SFC,MWTURB,466 -**GTG EDR turbulence at specific altitude above mean sea level**,EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,EDPARM,467 -**GTG CAT turbulence at specific altitude above mean sea level**,CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,CATEDR,468 -**GTG MWT turbulence at specific altitude above mean sea level**,MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,MWTURB,469 -**GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 -**GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 -**GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 -**Horizontal extent of cumulonimbus (CB) %**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 -**Height of base of cumulonimbus**,ICAHT_ON_CB_BASE,ICAHT,474 -**Height of top of cumulonimbus**,ICAHT_ON_CB_TOP,ICAHT,475 -**GTG EDR turbulence on standard atmospheric isobaric levels**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 -**GTG CAT turbulence on standard atmospheric isobaric levels**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 -**GTG MWT turbulence on standard atmospheric isobaric levels**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 -**Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 -**GFIP in-flight icing severity on pressure surface**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 -**Total icing potential diagnostic on standard atmospheric isobaric surface**,ICIP_ON_ICAO_STD_SFC,ICIP,481 -Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,482 -Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,500 -Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,501 -Time-averaged 10m temperature,AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,502 -Time-averaged mass exchange coefficient,AVE_AKHS_ON_SURFACE,AKHS,503 -Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,504 -Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,505 -Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,506 -Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,507 -**Maximum instantaneous precipitation rate on surface**,MAX_PRATE_ON_SURFACE,PRATE,508 -**Maximum specific humidity at 2m**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 -**Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 -**Aerodynamic conductance on surface**,ACOND_ON_SURFACE,ACOND,512 -**Canopy water evaporation on surface**,AVE_EVCW_ON_SURFACE,EVCW,513 -**Direct surface evaporation from bare soil**,AVE_EVBS_ON_SURFACE,EVBS,514 -**Transpiration on surface**,AVE_TRANS_ON_SURFACE,TRANS,515 -**Sublimation on surface**,AVE_SBSNO_ON_SURFACE,SBSNO,516 -**Potential evaporation rate on surface**,AVE_PEVPR_ON_SURFACE,PEVPR,517 -**Height on standard atmospheric isobaric levels**,HGT_ON_ICAO_STD_SFC,HGT,518 -**Temperature on standard atmospheric isobaric levels**,TMP_ON_ICAO_STD_SFC,TMP,519 -**U-component wind on standard atmospheric isobaric levels**,UGRD_ON_ICAO_STD_SFC,UGRD,520 -**V-component wind on standard atmospheric isobaric levels**,VGRD_ON_ICAO_STD_SFC,VGRD,521 -**Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 -**Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 -**Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 -**Bucket snow precipitation on surface**,BUCKET1_WEASD_ON_SURFACE,WEASD,529 -**Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 -**Simulated Brightness Temperature for ABI GOES-18 Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 -**Simulated Brightness Temperature for ABI GOES-18 Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 -**Simulated Brightness Temperature for ABI GOES-18 Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 -**Simulated Brightness Temperature for ABI GOES-18 Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 -**Simulated Brightness Temperature for ABI GOES-18 Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 -**Simulated Brightness Temperature for ABI GOES-18 Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 -**Simulated Brightness Temperature for ABI GOES-18 Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 -**Simulated Brightness Temperature for ABI GOES-18 Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 -**Simulated Brightness Temperature for ABI GOES-18 Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 -**Simulated Brightness Temperature for ABI GOES-18 Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 -**GSD shelter level potential temperature**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 -**GSD shelter level dewpoint depression**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 -**GSD shelter level surface equivalent potential temperature**,GSD_EPOT_ON_SURFACE,EPOT,548 -**Foundation temperature**,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 -**Categorical snow on surface**,CSNOW_ON_SURFACE,CSNOW,551 -**Categorical ice pellets on surface**,CICEP_ON_SURFACE,CICEP,552 -**Categorical freezing rain on surface**,CFRZR_ON_SURFACE,CFRZR,553 -**average Categorical snow on surface**,AVE_CSNOW_ON_SURFACE,CSNOW,555 -**average Categorical ice pellets on surface**,AVE_CICEP_ON_SURFACE,CICEP,556 -**average Categorical freezing rain on surface**,AVE_CFRZR_ON_SURFACE,CFRZR,557 -**GSD_Categorical snow on surface**,GSD_CSNOW_ON_SURFACE,CSNOW,559 -**GSD_Categorical ice pellets on surface**,GSD_CICEP_ON_SURFACE,CICEP,560 -**GSD_Categorical freezing rain on surface**,GSD_CFRZR_ON_SURFACE,CFRZR,561 -**GSD_average Categorical snow on surface**,GSD_AVE_CSNOW_ON_SURFACE,CSNOW,563 -**GSD_average Categorical ice pellets on surface**,GSD_AVE_CICEP_ON_SURFACE,CICEP,564 -**GSD_average Categorical freezing rain on surface**,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 -**Best boundary layer CAPE**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 -**Best boundary layer CIN**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 -**GFS sea level pressure**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 -**GFS average total cloud fraction**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 -**GFS total cloud fraction**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 -Simulated GOES 12 channel 2 brightness temperature with satellite angle correction,NON_NADIR_SBT122_ON_TOP_OF_ATMOS,SBT122,456 -Simulated GOES 12 channel 3 brightness temperature with satellite angle correction,NON_NADIR_SBT123_ON_TOP_OF_ATMOS,SBT123,457 -Simulated GOES 12 channel 4 brightness temperature with satellite angle correction,NON_NADIR_SBT124_ON_TOP_OF_ATMOS,SBT124,458 -Simulated GOES 12 channel 5 brightness temperature with satellite angle correction,NON_NADIR_SBT126_ON_TOP_OF_ATMOS,SBT126,459 -Simulated GOES 11 channel 2 brightness temperature with satellite angle correction,SBT112_ON_TOP_OF_ATMOS,SBT112,460 -Simulated GOES 11 channel 3 brightness temperature with satellite angle correction,SBT113_ON_TOP_OF_ATMOS,SBT113,461 -Simulated GOES 11 channel 4 brightness temperature with satellite angle correction,SBT114_ON_TOP_OF_ATMOS,SBT114,462 -Simulated GOES 11 channel 5 brightness temperature with satellite angle correction,SBT115_ON_TOP_OF_ATMOS,SBT115,463 -Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,872 -Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,868 -Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,483 -Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,484 -Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,485 -Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,486 -**GSD experimental ceiling diagnostic**,GSD_EXP_CEILING,CEIL,487 -**Simulated Brightness Temperature for TMI TRMM channel 6 on top of atmosphere**,TMITB6_ON_TOP_OF_ATMOS,AMSRE9,488 -**Simulated Brightness Temperature for TMI TRMM channel 7 on top of atmosphere**,TMITB7_ON_TOP_OF_ATMOS,AMSRE10,489 -**Simulated Brightness Temperature for TMI TRMM channel 8 on top of atmosphere**,TMITB8_ON_TOP_OF_ATMOS,AMSRE11,490 -**Simulated Brightness Temperature for TMI TRMM channel 9 on top of atmosphere**,TMITB9_ON_TOP_OF_ATMOS,AMSRE12,491 -**Simulated Brightness Temperature for SSMI TB channel 4 on top of atmosphere**,SSMITB4_ON_TOP_OF_ATMOS,AMSRE9,492 -**Simulated Brightness Temperature for SSMI TB channel 5 on top of atmosphere**,SSMITB5_ON_TOP_OF_ATMOS,AMSRE10,493 -**Simulated Brightness Temperature for SSMI TB channel 6 on top of atmosphere**,SSMITB6_ON_TOP_OF_ATMOS,AMSRE11,494 -**Simulated Brightness Temperature for SSMI TB channel 7 on top of atmosphere**,SSMITB7_ON_TOP_OF_ATMOS,AMSRE12,495 -**Simulated Brightness Temperature for SSMIS TB channel 15 on top of atmosphere**,SSMISTB15_ON_TOP_OF_ATMOS,AMSRE9,496 -**Simulated Brightness Temperature for SSMIS TB channel 16 on top of atmosphere**,SSMISTB16_ON_TOP_OF_ATMOS,AMSRE10,497 -**Simulated Brightness Temperature for SSMIS TB channel 17 on top of atmosphere**,SSMISTB17_ON_TOP_OF_ATMOS,AMSRE11,498 -**Simulated Brightness Temperature for SSMIS TB channel 18 on top of atmosphere**,SSMISTB18_ON_TOP_OF_ATMOS,AMSRE12,499 -**Flight-level u-component wind**,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 -**Flight-level v-component wind**,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 -**Flight level specific humidity**,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 -**Flight level pressure**,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 -**Flight level icing**,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 -**Entire Atmosphere Vertically Integrated Liquid (kg/m-2)**,VIL_ON_ENTIRE_ATMOS,VIL,581 -**Mixed-layer CAPE**,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 -**Mixed-layer CIN**,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 -**Most unstable CAPE**,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 -**Most unstable CIN**,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 -**Flight level temperature**,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 -**Flight level icing**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 -**Ice growth rate**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 -**GFS 2D aerosol optical depth at 550 nm**,AER_OPT_GFS_at550,AOTK,600 -**GFS 2D dust aerosol optical depth at 550 nm**,DUST_AER_OPT_GFS_at550,AOTK,601 -**GFS 2D seasalt aerosol optical depth at 550 nm**,SEASALT_AER_OPT_GFS_at550,AOTK,602 -**GFS 2D sulfate aerosol optical depth at 550 nm**,SULFATE_AER_OPT_GFS_at550,AOTK,603 -**GFS 2D organic carbon aerosol optical depth at 550 nm**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 -**GFS 2D black carbon aerosol optical depth at 550 nm**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 -**Aerosol extinction coefficient on model surface**,AECOEF_ON_HYBRID_LVL,AECOFF,606 -**Asymmetry factor on model surface**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 -**Single scattering albedo on model surface**,SSALBK_ON_HYBRID_LVL,SSALBK,608 -**Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 -**Dust aerosol optical depth at 550nm**,DUST_AER_OPT_DEP_at550,AOTK,610 -**Seasalt aerosol optical depth at 550nm**,SEASALT_AER_OPT_DEP_at550,AOTK,611 -**Sulfate aerosol optical depth at 550nm**,SULFATE_AER_OPT_DEP_at550,AOTK,612 -**Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 -**Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 -**Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 -**Black carbon column mass density**,BC_COL_MASS_DEN,COLMD,616 -**Organic carbon column mass density**,OC_COL_MASS_DEN,COLMD,617 -**Sulfate column mass density**,SULF_COL_MASS_DEN,COLMD,618 -**Aerosol surface PM10 mass concentration (ug/m3)**,PM10_SFC_MASS_CON,PMTC,619 -**Aerosol surface PM2.5 mass concentration (ug/m3)**,PM25_SFC_MASS_CON,PMTF,620 -**Total aerosol PM10 column mass density**,PM10_COL_MASS_DEN,COLMD,621 -**Total aerosol (PM2.5) column mass density**,PM25_COL_MASS_DEN,COLMD,622 -**Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 -**Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 -**Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 -**Aerosol optical depth at 860nm**,AER_OPT_DEP_at860,AOTK,626 -**Aerosol optical depth at 1630nm**,AER_OPT_DEP_at1630,AOTK,627 -**Aerosol optical depth at 11100nm**,AER_OPT_DEP_at11100,AOTK,628 -**Dust 1 on model surface**,DUST1_ON_HYBRID_LVL,PMTF,629 -**Dust 2 on model surface**,DUST2_ON_HYBRID_LVL,PMTF,630 -**Dust 3 on model surface**,DUST3_ON_HYBRID_LVL,PMTC,631 -**Dust 4 on model surface**,DUST4_ON_HYBRID_LVL,PMTC,632 -**Dust 5 on model surface**,DUST5_ON_HYBRID_LVL,PMTC,633 -**Seasalt 1 on model surface**,SEASALT1_ON_HYBRID_LVL,PMTF,634 -**Seasalt 2 on model surface**,SEASALT2_ON_HYBRID_LVL,PMTF,635 -**Seasalt 3 on model surface**,SEASALT3_ON_HYBRID_LVL,PMTC,636 -**Seasalt 4 on model surface**,SEASALT4_ON_HYBRID_LVL,PMTC,637 -**Seasalt 5 on model surface**,SEASALT5_ON_HYBRID_LVL,PMTC,638 -**SO4 on model surface**,SO4_ON_HYBRID_LVL,PMTF,639 -**Hydrophobic organic carbon on model surface**,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 -**Hydrophilic organic carbon on model surface**,OCPHILIC_ON_HYBRID_LVL,PMTF,641 -**Hydrophobic black carbon on model surface**,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 -**Hydrophilic black carbon on model surface**,BCPHILIC_ON_HYBRID_LVL,PMTF,643 -**Air density on model surface**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 -**Layer thickness on model surface**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 -**Dust PM2.5 column mass density**,DUST_COL_MASS_DEN,COLMD,646 -**Sea salt PM2.5 column mass density**,SEAS_COL_MASS_DEN,COLMD,647 -**Aerosol single scattering albedo at 340 nm**,SINGLE_SCAT_ALBD_at340,SSALBK,648 -**Aersol asymmetry factor at 340nm**,AER_ASYM_FACTOR_at340,ASYSFK,649 -**Total aerosol scattering optical depth at 550nm**,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 -**Dust aerosol scattering optical depth at 550nm**,DUST_AER_SCAT_OPT_DEP_at550,SCTAOTK,651 -**Seasalt aerosol scattering optical depth at 550nm**,SEASALT_AER_SCAT_OPT_DEP_at550,SCTAOTK,652 -**Sulfate aerosol scattering optical depth at 550nm**,SULFATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,653 -**Organic carbon aerosol scattering optical depth at 550nm**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 -**Black carbon aerosol scattering optical depth at 550nm**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 -**Angstrom exponent**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 -**NO3 column mass density**,NO3_COL_MASS_DEN,COLMD,657 -**NH4 column mass density**,NH4_COL_MASS_DEN,COLMD,658 -**Dust emission flux**,DUST_EMISSION_FLUX,AEMFLX,659 -**Dust sedimentation flux**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 -**Dust dry deposition flux**,DUST DRY DEPOSITION,DDMFLX,661 -**Dust wet deposition flux**,DUST WET DEPOSITION,WLSMFLX,662 -**Seasalt emission flux**,SEASALT_EMISSION_FLUX,AEMFLX,663 -**Seasalt sedimentation flux**,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 -**Seasalt dry deposition flux**,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 -**Seasalt wet deposition flux**,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 -**Black carbon emission flux**,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 -**Black carbon sedimentation flux**,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 -**Black carbon dry deposition flux**,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 -**Black carbon wet deposition flux**,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 -**Organic carbon emission flux**,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 -**Organic carbon sedimentation flux**,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 -**Organic carbon dry deposition flux**,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 -**Organic carbon wet deposition flux**,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 -**Sulfate emission flux**,SULFATE_EMISSION_FLUX,AEMFLX,675 -**Sulfate sedimentation flux**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 -**Sulfate dry deposition flux**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 -**Sulfate wet deposition flux**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 -**Dust scavenging flux**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 -**Seasalt scavenging flux**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 -**Black carbon scavenging flux**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 -**Organic carbon scavenging flux**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 -**Seasalt coarse aersol mass density concentration on model surface**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 -**Seasalt 2.5 mass density concentration on model surface**,SEAS25_SFC_MASS_CON,PMTF,684 -**Dust 10 mass density concentration on model surface**,DUST10_SFC_MASS_CON,PMTC,685 -**Dust 2.5 mass density concentration on model surface**,DUST25_SFC_MASS_CON,PMTF,686 -**Nitrate aerosol scattering optimal depth at 550nm**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 -**NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 -**NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 -**Sulfate aerosol surface mass density concentration**,SU_AER_SFC_MASS_CON,MASSDEN,689 -**Instantaneous sulfate aerosol surface mass concentration**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 -**Instantaneous organic carbon aerosol surface mass concentration**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 -**Instantaneous black carbon aerosol surface mass concentration**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 -**Instantaneous coarse dust aerosol surface mass concentration**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 -**Instantaneous fine dust aerosol surface mass concentration**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 -**Instantaneous coarse seasalt aerosol surface mass concentration**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 -**Instantaneous fine seasalt aerosol surface mass concentration**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 -**Instantaneous coarse aerosol surface mass concentration**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 -**Instantaneous fine aerosol surface mass concentration**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 -**Mie-based aerosol optical depth at 550nm**,MIE_OPT_DEP_at550,AOTK,699 -**GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 -**GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 -**GSD Max lightning threat 1**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 -**GSD Max lightning threat 2**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 -**GSD Max lightning threat 3**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 -GSD Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 -GSD Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 -GSD Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 -GSD Convective Activity Vertical Hydrometeor Flux,GSD_NCA_WQ_ON_ENTIRE_ATMOS,NCAWQ,708 -GSD Convective Initiation Reflectivity,GSD_NCI_REFL_ON_ENTIRE_ATMOS,TSEC,709 -GSD Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 -**Experimental cloud base height**,GSD_EXP_CEILING_2,CEIL,711 -**AQM aerosol optical depth at 550 nm**,AER_OPT_AQM_at550,AOTK,712 -**Instantaneous all-sky outgoing shortwave flux at model top**,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 -**GSD accumulated depth of snowfall**,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 -**Minimum green vegetation fraction**,VEG_MIN_ON_SURFACE,VEGMIN,726 -**GSD updraft helicity**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 -**Max hail diameter at surface from WRF HAILCAST algorithm**,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 -**Maximum green vegetation fraction**,VEG_MAX_ON_SURFACE,VEGMAX,729 -**Time-averaged 10 M wind speed**,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 -**Time-averaged 10 M u-component wind**,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 -**Time-averaged 10 M v-component wind**,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 -**Time-averaged downward short-wave radiation flux**,GSD_AVE_DSWRF_ON_SURFACE,DSWRF,733 -**Time-averaged visible beam downward solar flux**,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 -**Total column aerosol optical depth**,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 -**Total column fire smoke**,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 -**Smoke on model surface**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 -**Smoke on pressure surface**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 -**Smoke at 8m above ground**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 -**Instantaneous mean fire radiative power (FRP)**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 -**Total column dust**,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 -**Dust on model surface**,DUST_ON_HYBRID_LVL,MASSDEN,742 -**Dust on pressure surface**,DUST_ON_ISOBARIC_SFC,MASSDEN,743 -**Dust at 8m above ground**,DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,744 -**Biomass burning emissions**,BIOMASS_BURNING_EMISSIONS,AEMFLX,745 -**Accumulated graupel**,ACM_GRAUPEL_ON_SURFACE,FROZR,746 -Number concentration for cloud water drops on hybrid level,GSD_NCCD_ON_HYBRID_LVL,NCONCD,747 -**Radar reflectivity at 1km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,REFD,748 -RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER,GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS,RH_PWAT,749 -**Water vapor mixing ratio on model surface**,GSD_WV_MIXR_ON_HYBRID_LVL,MIXR,750 -**Virtual potential temperature on model surface**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 -Number concentration for ice particles on hybrid level,GSD_NCIP_ON_HYBRID_LVL,NCIP,752 -GSD pressure on level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 -**Number concentration of rain drops on model surface**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 -Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 -GSD pressure on highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 -**GSD radar reflectivity at 4km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 -**GSD convective cloud top height**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 -**GSD shelter mixing ratio**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 -**GSD snow temperature**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 -**GSD surface mixing ratio**,GSD_MIXR_ON_SURFACE,MIXR,762 -**GSD mixing ration on level of free convection (LFC)**,GSD_MIXR_ON_LFC,MIXR,763 -**Instantaneous clear-sky downwelling longwave at the surface**,CSDLF_ON_SURFACE,CSDLF,764 -**Instantaneous clear-sky upwelling longwave at the surface**,CSULF_ON_SURFACE,CSULF,765 -**GSD water-friendly aerosol number concentration on model surface**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 -**GSD ice-friendly aerosol number concentration on model surface**,GSD_NCIFA_ON_HYBRID_LVL,PMTC,767 -Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level),GSD_ECHOTOP_ON_CLOUD_TOP,RETOP,768 -**GSD Vertically integrated liquid in kg/m^2**,GSD_VIL_ON_ENTIRE_ATMOS,VIL,769 -**GSD Vertically integrated liquid based on reflectivity factor in kg/m^2**,GSD_RADARVIL_ON_ENTIRE_ATMOS,RADARVIL,770 -**Instantaneous shortwave surface downward direct normal irradiance**,INST_SWDDNI_ON_SURFACE,VBDSF,772 -**Instantaneous shortwave surface downward diffuse irradiance**,INST_SWDDIF_ON_SURFACE,VDDSF,773 -**Model-state cloud fraction (unprocessed) on model surface**,FRACCC_ON_HYBRID_LVL,FRACCC,774 -Bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 -Height on highest tropospheric -10C level,`HGT_ON_HGHST_TROP_-10C_LVL`,HGT,776 -Relative humidity on highest tropospheric -10C level,`RH_ON_HGHST_TROP_-10C_LVL`,RH,777 -Pressure on highest tropospheric -10C level,`PRES_ON_HGHST_TROP_-10C_LVL`,PRES,778 -Height on highest tropospheric -20C level,`HGT_ON_HGHST_TROP_-20C_LVL`,HGT,779 -Relative humidity on highest tropospheric -20C level,`RH_ON_HGHST_TROP_-20C_LVL`,RH,780 -Pressure on highest tropospheric -20C level,`PRES_ON_HGHST_TROP_-20C_LVL`,PRES,781 -**Accumulated freezing rain**,ACM_FRAIN_ON_SURFACE,FRZR,782 -Maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 -Maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 -Maximum reflectivity on -10C surface,`MAX_REF_ON_ISOTHERMAL_-10C`,REFD,785 -**GSD maximum cloud fraction in (PBL + 1 km)**,TCDC_ON_BOUND_LYR,TCDC,799 -**Shelter level apparent temperature**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 -SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 -**Simulated Brightness Temperature for SSMIS-F17 Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 -**Simulated Brightness Temperature for SSMIS-F17 Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 -**Simulated Brightness Temperature for SSMIS-F17 Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 -**Simulated Brightness Temperature for SSMIS-F17 Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 -SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 -SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 -Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,876 -Hourly max relative vorticity on hybrid level 1,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1,RELV,890 -**Radar reflectivity at -10C**,REFD_ON_ISOTHERMAL,REFD,912 -**1h precipitation comparison to Flash Flood Guidance (FFG) thresholds**,1H_FFG_EXCEEDANCE,FFLDRO,913 -**Total accumulated precipitation comparison to FFG thresholds**,ACM_FFG_EXCEEDANCE,FFLDRO,914 -**1h precipitation comparison with 2-year Average Recurrence Interval (ARI) threshold**,1H_2YARI_EXCEEDANCE,GWLOWS,915 -**Total accumulated precipitation comparison with 2-year ARI threshold**,ACM_2YARI_EXCEEDANCE,GWLOWS,916 -**1h precipitation comparison with 5-year ARI threshold**,1H_5YARI_EXCEEDANCE,GWLOWS,917 -**Total accumulated precipitation comparison with 5-year ARI threshold**,ACM_5YARI_EXCEEDANCE,GWLOWS,918 -**1h precipitation comparison with 10-year ARI threshold**,1H_10YARI_EXCEEDANCE,GWLOWS,919 -**Total accumulated precipitation comparison with 10-year ARI threshold**,ACM_10YARI_EXCEEDANCE,GWLOWS,920 -**1h precipitation comparison with 100-year ARI threshold**,1H_100YARI_EXCEEDANCE,GWLOWS,921 -**Total accumulated precipitation comparison with 100-year ARI threshold**,ACM_100YARI_EXCEEDANCE,GWLOWS,922 -Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,927 -Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,928 -Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,929 -Simulated GOES 16 band 10 brightness temperature,SBTA1610_ON_TOP_OF_ATMOS,SBTA1610,930 -Simulated GOES 16 band 11 brightness temperature,SBTA1611_ON_TOP_OF_ATMOS,SBTA1611,931 -Simulated GOES 16 band 12 brightness temperature,SBTA1612_ON_TOP_OF_ATMOS,SBTA1612,932 -Simulated GOES 16 band 13 brightness temperature,SBTA1613_ON_TOP_OF_ATMOS,SBTA1613,933 -Simulated GOES 16 band 14 brightness temperature,SBTA1614_ON_TOP_OF_ATMOS,SBTA1614,934 -Simulated GOES 16 band 15 brightness temperature,SBTA1615_ON_TOP_OF_ATMOS,SBTA1615,935 -Simulated GOES 16 band 16 brightness temperature,SBTA1616_ON_TOP_OF_ATMOS,SBTA1616,936 -Simulated GOES 17 band 7 brightness temperature,SBTA177_ON_TOP_OF_ATMOS,SBTA177,937 -Simulated GOES 17 band 8 brightness temperature,SBTA178_ON_TOP_OF_ATMOS,SBTA178,938 -Simulated GOES 17 band 9 brightness temperature,SBTA179_ON_TOP_OF_ATMOS,SBTA179,939 -Simulated GOES 17 band 10 brightness temperature,SBTA1710_ON_TOP_OF_ATMOS,SBTA1710,940 -Simulated GOES 17 band 11 brightness temperature,SBTA1711_ON_TOP_OF_ATMOS,SBTA1711,941 -Simulated GOES 17 band 12 brightness temperature,SBTA1712_ON_TOP_OF_ATMOS,SBTA1712,942 -Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA1713,943 -Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,944 -Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,945 -Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,946 -**CAPE on 0-3 km above ground**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 -**CIN on 0-3 km above ground**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 -**LFC height**,HGT_ON_LFC,HGT,952 -**Effective storm relative helicity**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 -**Downdraft CAPE**,DOWNWARD_CAPE,DCAPE,954 -**Dendritic layer depth**,DENDRITIC_LAYER_DEPTH,LAYTH,955 -**Enhanced stretching potential**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 -**Critical angle**,CRITICAL_ANGLE,DCAPE,957 -Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,958 -Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,959 -Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,960 -Simulated GOES R band 10 brightness temperature,SBTAGR10_ON_TOP_OF_ATMOS,SBTAGR10,961 -Simulated GOES R band 11 brightness temperature,SBTAGR11_ON_TOP_OF_ATMOS,SBTAGR11,962 -Simulated GOES R band 12 brightness temperature,SBTAGR12_ON_TOP_OF_ATMOS,SBTAGR12,963 -Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR13,964 -Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,965 -Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,966 -Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,967 -**Sea ice skin temperature**,ICETMP_ON_SURFACE,ICETMP,968 -Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,969 -Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,970 -Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,971 -Simulated Himawari-8 band 10 brightness temperature,SBTAHI10_ON_TOP_OF_ATMOS,SBTAHI10,972 -Simulated Himawari-8 band 11 brightness temperature,SBTAHI11_ON_TOP_OF_ATMOS,SBTAHI11,973 -Simulated Himawari-8 band 12 brightness temperature,SBTAHI12_ON_TOP_OF_ATMOS,SBTAHI12,974 -Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBTAHI13,975 -Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,976 -Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,977 -Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,978 -**Effective surface height on effective layer bottom (m)**,EFSH_ON_EFBL,EFSH,979 -**Effective surface height on effective layer top (m)**,EFSH_ON_EFTL,EFSH,980 -**Temperature at EL top**,ELMELT_ON_EFTL,ELMELT,982 -**U-inflow based to 50% EL shear vector**,UESH_ON_EFL,UESH,983 -**V-inflow based to 50% EL shear vector**,VESH_ON_EFL,VESH,984 -**Inflow based (ESFC) to (50%) EL shear magnitude**,ESHR_ON_EFL,ESHR,985 -**U-component Bunkers effective right motion**,UEID_ON_EFL,UEID,986 -**V-component Bunkers effective right motion**,VEID_ON_EFL,VEID,987 -**Effective layer helicity**,E3KH_ON_EFL,E3KH,988 -**Effective layer significant tornado parameter with CIN**,STPC_ON_EFL,STPC,989 -**Fixed layer tornado parameter**,SIGT_ON_EFL,SIGT,990 -**Effective layer supercell composite parameter**,SCCP_ON_EFL,SCCP,991 -**Mixed Layer (100 mb) virtual LFC**,MLFC_ON_EFL,MLFC,992 -**Significant hail parameter**,SIGH_ON_EFL,SIGH,993 -**Average ozone concentration on model surface**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 -**Average PM25 on model surface**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 -**Land fraction**,LAND_FRAC,LANDFRC,996 -**Instantaneous precipitation advected heat flux**,INST_PREC_ADVEC_HEAT,PAHFLX,997 -**Water storage in aquifer**,WATER_AQUIFER,WATERSA,998 -**Accumulated evaporation of intercepted water**,ACM_EIWATER_ON_SURFACE,EIWATER,999 -**Accumulated plant transpiration on surface**,ACM_PLANTTR_ON_SURFACE,PLANTTR,1000 -**Accumulated soil surface evaporation**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 -**Average precipitation advected heat flux**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 -**Bucket freezing rain on surface**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 -**Accumulated snowfall on surface**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 -**Bucket snowfall on surface**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 -**Snow density solid-liquid ratio on surface**,SDEN_ON_SURFACE,SDEN,1006 -**Icing probability on flight levels**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 -**Supercooled large droplet icing on flight levels**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 -**Icing severity category on flight levels**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 -**WMO icing severity category on flight levels**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 -**Total column coarse articulate matter (PM)**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 -**Coarse particulate matter on model surface**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 -**Coarse particulate matter on pressure surface**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 -**Coarse particulate matter at 8m above ground**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 \ No newline at end of file diff --git a/docs/UPP_GRIB2_Table.rst b/docs/UPP_GRIB2_Table.rst deleted file mode 100644 index d4514a673..000000000 --- a/docs/UPP_GRIB2_Table.rst +++ /dev/null @@ -1,15 +0,0 @@ -:orphan: - -******************************** -GRIB2 Fields Produced by UPP -******************************** - -GRIB2 fields produced by UPP (column 1), abbreviated names -used in the *postcntrl.xml* file (column 2), corresponding standard -grib2 pname (column 3), and corresponding array location UPP -uses to store the variable in parallel arrays (column 4). - -.. csv-table:: - :file: UPP_GRIB2_Table.csv - :widths: 25, 30, 15, 15 - :header-rows: 1 diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index 6d922ca01..994c01ca0 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -370,7 +370,7 @@ Mass weighted potential vorticity on pressure surface,PVMW_ON_ISOBARIC_SFC,PVMW, **Vertical diffusion meridional acceleration on pressure surface**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 **Gravity wave drag meridional acceleration on pressure surface**,GWDV_ON_ISOBARIC_SFC,GWDV,373 **Convective meridional momentum mixing acceleration on pressure surface**,CNVV_ON_ISOBARIC_SFC,CNVV,374 -**Non-Convective Cloud Cover % on pressure surface**,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 +Non-Convective Cloud Cover % on pressure surface,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 @@ -423,7 +423,7 @@ Maximum downdraft vertical velocity,MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa,MAXDV Mean vertical velocity,AVE_DZDT_ON_SIGMA_LVL_0.5-0.8,DZDT,425 Radar echo top in KDT,HGT_ON_SPEC_HGT_LVL_ABOVE_GRND,HGT,426 Updraft helicity,UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,427 -**Total column graupel**,TCOLG_ON_ENTIRE_ATMOS,TCOLG,428 +Total column integrated graupel,TCOLG_ON_ENTIRE_ATMOS,TCOLG,428 Column integrated maximum graupel,MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR,TCOLG,429 U-component of 0-1km level wind shear,VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VUCSH,430 V-component of 0-1km level wind shear,VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,VVCSH,431 @@ -459,21 +459,21 @@ Simulated GOES 11 channel 2 brightness temperature with satellite angle correcti Simulated GOES 11 channel 3 brightness temperature with satellite angle correction,SBT113_ON_TOP_OF_ATMOS,SBT113,461 Simulated GOES 11 channel 4 brightness temperature with satellite angle correction,SBT114_ON_TOP_OF_ATMOS,SBT114,462 Simulated GOES 11 channel 5 brightness temperature with satellite angle correction,SBT115_ON_TOP_OF_ATMOS,SBT115,463 -**GTG EDR turbulence on pressure surface**,EDPARM_ON_ISOBARIC_SFC,EDPARM,464 -**GTG CAT turbulence on pressure surface**,CAT_ON_ISOBARIC_SFC,CATEDR,465 -**GTG MWT turbulence on pressure surface**,MWTURB_ON_ISOBARIC_SFC,MWTURB,466 -**GTG EDR turbulence at specific altitude above mean sea level**,EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,EDPARM,467 -**GTG CAT turbulence at specific altitude above mean sea level**,CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,CATEDR,468 -**GTG MWT turbulence at specific altitude above mean sea level**,MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,MWTURB,469 -**GTG EDR turbulence on model surface**,EDPARM_ON_HYBRID_LVL,EDPARM,470 -**GTG CAT turbulence on model surface**,CAT_ON_HYBRID_LVL,CATEDR,471 -**GTG MWT turbulence on model surface**,MWTURB_ON_HYBRID_LVL,MWTURB,472 +GTG eddy dissipation parameter (EDR) on pressure surface,EDPARM_ON_ISOBARIC_SFC,EDPARM,464 +GTG clean air turbulence (CAT) on pressure surface,CAT_ON_ISOBARIC_SFC,CATEDR,465 +GTG mountain wave turbulence (MWT) on pressure surface,MWTURB_ON_ISOBARIC_SFC,MWTURB,466 +GTG eddy dissipation parameter (EDR) at specific altitude above mean sea level,EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,EDPARM,467 +GTG clean air turbulence (CAT) at specific altitude above mean sea level,CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,CATEDR,468 +GTG mountain wave turbulence (MWT) at specific altitude above mean sea level,MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,MWTURB,469 +GTG eddy dissipation parameter (EDR) on model surface,EDPARM_ON_HYBRID_LVL,EDPARM,470 +GTG clean air turbulence (CAT) on model surface,CAT_ON_HYBRID_LVL,CATEDR,471 +GTG mountain wave turbulence (MWT) on model surface,MWTURB_ON_HYBRID_LVL,MWTURB,472 **Horizontal extent of cumulonimbus (CB) %**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 -**Height of base of cumulonimbus**,ICAHT_ON_CB_BASE,ICAHT,474 -**Height of top of cumulonimbus**,ICAHT_ON_CB_TOP,ICAHT,475 -**GTG EDR turbulence on standard atmospheric isobaric levels**,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 -**GTG CAT turbulence on standard atmospheric isobaric levels**,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 -**GTG MWT turbulence on standard atmospheric isobaric levels**,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 +Standard atmosphere reference height of base of cumulonimbus,ICAHT_ON_CB_BASE,ICAHT,474 +Standard atmosphere reference height of top of cumulonimbus,ICAHT_ON_CB_TOP,ICAHT,475 +GTG eddy dissipation parameter (EDR) on standard atmospheric isobaric levels,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 +GTG clean air turbulence (CAT) on standard atmospheric isobaric levels,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 +GTG mountain wave turbulence (MWT) on standard atmospheric isobaric levels,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 **Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 **GFIP in-flight icing severity on pressure surface**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 **Total icing potential diagnostic on standard atmospheric isobaric surface**,ICIP_ON_ICAO_STD_SFC,ICIP,481 @@ -508,7 +508,7 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 **Aerodynamic conductance on surface**,ACOND_ON_SURFACE,ACOND,512 **Canopy water evaporation on surface**,AVE_EVCW_ON_SURFACE,EVCW,513 -**Direct surface evaporation from bare soil**,AVE_EVBS_ON_SURFACE,EVBS,514 +Direct evaporation from bare soil on surface,AVE_EVBS_ON_SURFACE,EVBS,514 **Transpiration on surface**,AVE_TRANS_ON_SURFACE,TRANS,515 **Sublimation on surface**,AVE_SBSNO_ON_SURFACE,SBSNO,516 **Potential evaporation rate on surface**,AVE_PEVPR_ON_SURFACE,PEVPR,517 @@ -519,7 +519,7 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 **Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 **Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 -**Bucket snow precipitation on surface**,BUCKET1_WEASD_ON_SURFACE,WEASD,529 +Bucket water equivalent accumulated snow depth on surface,BUCKET1_WEASD_ON_SURFACE,WEASD,529 **Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 **Simulated Brightness Temperature for ABI GOES-18 Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 **Simulated Brightness Temperature for ABI GOES-18 Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 @@ -534,7 +534,7 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **GSD shelter level potential temperature**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 **GSD shelter level dewpoint depression**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 **GSD shelter level surface equivalent potential temperature**,GSD_EPOT_ON_SURFACE,EPOT,548 -**Foundation temperature**,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 +Foundation sea surface temperature on surface,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 **Categorical snow on surface**,CSNOW_ON_SURFACE,CSNOW,551 **Categorical ice pellets on surface**,CICEP_ON_SURFACE,CICEP,552 **Categorical freezing rain on surface**,CFRZR_ON_SURFACE,CFRZR,553 @@ -550,8 +550,8 @@ Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,5 **Best boundary layer CAPE**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 **Best boundary layer CIN**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 **GFS sea level pressure**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 -**GFS average total cloud fraction**,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 -**GFS total cloud fraction**,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 +GFS average convective cloud fraction,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 +GFS convective cloud fraction,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 GFS Soil temperature at the bottom of soil layers,GFS_TMP_ON_DEPTH_BEL_LAND_SFC_3m,TMP,571 **GFS lifted index on surface**,GFS_LFTX_ON_SURFACE,LFTX,572 **GFS lifted index on surface - best**,GFS_4LFTX_ON_SURFACE,4LFTX,573 @@ -576,7 +576,7 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **GFS 2D sulfate aerosol optical depth at 550 nm**,SULFATE_AER_OPT_GFS_at550,AOTK,603 **GFS 2D organic carbon aerosol optical depth at 550 nm**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 **GFS 2D black carbon aerosol optical depth at 550 nm**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 -**Aerosol extinction coefficient on model surface**,AECOEF_ON_HYBRID_LVL,AECOFF,606 +Aerosol extinction coefficient on model surface,AECOEF_ON_HYBRID_LVL,AECOEF,606 **Asymmetry factor on model surface**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 **Single scattering albedo on model surface**,SSALBK_ON_HYBRID_LVL,SSALBK,608 **Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 @@ -586,13 +586,13 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 **Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 **Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 -**Black carbon column mass density**,BC_COL_MASS_DEN,COLMD,616 -**Organic carbon column mass density**,OC_COL_MASS_DEN,COLMD,617 -**Sulfate column mass density**,SULF_COL_MASS_DEN,COLMD,618 -**Aerosol surface PM10 mass concentration (ug/m3)**,PM10_SFC_MASS_CON,PMTC,619 -**Aerosol surface PM2.5 mass concentration (ug/m3)**,PM25_SFC_MASS_CON,PMTF,620 -**Total aerosol PM10 column mass density**,PM10_COL_MASS_DEN,COLMD,621 -**Total aerosol (PM2.5) column mass density**,PM25_COL_MASS_DEN,COLMD,622 +Black carbon column integrated mass density,BC_COL_MASS_DEN,COLMD,616 +Organic carbon column integrated mass density,OC_COL_MASS_DEN,COLMD,617 +Sulfate column integrated mass density,SULF_COL_MASS_DEN,COLMD,618 +Aerosol surface particulate matter (PM) 10 mass concentration (ug/m3),PM10_SFC_MASS_CON,PMTC,619 +Aerosol surface particulate matter (PM) 2.5 mass concentration (ug/m3),PM25_SFC_MASS_CON,PMTF,620 +Total aerosol particulate matter (PM) 10 column integrated mass density,PM10_COL_MASS_DEN,COLMD,621 +Total aerosol particulate matter (PM) 2.5 column integrated mass density,PM25_COL_MASS_DEN,COLMD,622 **Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 **Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 **Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 @@ -616,8 +616,8 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Hydrophilic black carbon on model surface**,BCPHILIC_ON_HYBRID_LVL,PMTF,643 **Air density on model surface**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 **Layer thickness on model surface**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 -**Dust PM2.5 column mass density**,DUST_COL_MASS_DEN,COLMD,646 -**Sea salt PM2.5 column mass density**,SEAS_COL_MASS_DEN,COLMD,647 +Dust particulate matter (PM) 2.5 column integrated mass density,DUST_COL_MASS_DEN,COLMD,646 +Sea salt particulate matter (PM) 2.5 column integrated mass density,SEAS_COL_MASS_DEN,COLMD,647 **Aerosol single scattering albedo at 340 nm**,SINGLE_SCAT_ALBD_at340,SSALBK,648 **Aersol asymmetry factor at 340nm**,AER_ASYM_FACTOR_at340,ASYSFK,649 **Total aerosol scattering optical depth at 550nm**,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 @@ -627,25 +627,25 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Organic carbon aerosol scattering optical depth at 550nm**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 **Black carbon aerosol scattering optical depth at 550nm**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 **Angstrom exponent**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 -**NO3 column mass density**,NO3_COL_MASS_DEN,COLMD,657 -**NH4 column mass density**,NH4_COL_MASS_DEN,COLMD,658 -**Dust emission flux**,DUST_EMISSION_FLUX,AEMFLX,659 +NO3 column integrated mass density,NO3_COL_MASS_DEN,COLMD,657 +NH4 column integrated mass density,NH4_COL_MASS_DEN,COLMD,658 +Dust emission mass flux,DUST_EMISSION_FLUX,AEMFLX,659 **Dust sedimentation flux**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 **Dust dry deposition flux**,DUST DRY DEPOSITION,DDMFLX,661 **Dust wet deposition flux**,DUST WET DEPOSITION,WLSMFLX,662 -**Seasalt emission flux**,SEASALT_EMISSION_FLUX,AEMFLX,663 +Seasalt emission mass flux,SEASALT_EMISSION_FLUX,AEMFLX,663 **Seasalt sedimentation flux**,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 **Seasalt dry deposition flux**,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 **Seasalt wet deposition flux**,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 -**Black carbon emission flux**,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 +Black carbon emission mass flux,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 **Black carbon sedimentation flux**,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 **Black carbon dry deposition flux**,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 **Black carbon wet deposition flux**,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 -**Organic carbon emission flux**,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 +Organic carbon emission mass flux,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 **Organic carbon sedimentation flux**,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 **Organic carbon dry deposition flux**,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 **Organic carbon wet deposition flux**,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 -**Sulfate emission flux**,SULFATE_EMISSION_FLUX,AEMFLX,675 +Sulfate emission mass flux,SULFATE_EMISSION_FLUX,AEMFLX,675 **Sulfate sedimentation flux**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 **Sulfate dry deposition flux**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 **Sulfate wet deposition flux**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 @@ -657,7 +657,7 @@ Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 **Seasalt 2.5 mass density concentration on model surface**,SEAS25_SFC_MASS_CON,PMTF,684 **Dust 10 mass density concentration on model surface**,DUST10_SFC_MASS_CON,PMTC,685 **Dust 2.5 mass density concentration on model surface**,DUST25_SFC_MASS_CON,PMTF,686 -**Nitrate aerosol scattering optimal depth at 550nm**,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 +Nitrate aerosol scattering optical depth at 550nm,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 **NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 **NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 **Sulfate aerosol surface mass density concentration**,SU_AER_SFC_MASS_CON,MASSDEN,689 From 3cc1284133db178565a2175ad6d861d34094d1c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 26 Jun 2023 16:59:23 -0400 Subject: [PATCH 40/44] rm ** from checked table entries --- docs/UPP_GRIB2_Table_byID.csv | 396 +++++++++++++++++----------------- 1 file changed, 198 insertions(+), 198 deletions(-) diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index 994c01ca0..d8ececf88 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -87,14 +87,14 @@ Accumulated total precipitation,ACM_APCP_ON_SURFACE,APCP,87 Moisture convergence in boundary layer (30 mb mean),MCONV_ON_SPEC_PRES_ABOVE_GRND,MCONV,88 Precipitable water in boundary layer (30 mb mean),PWAT_ON_SPEC_PRES_ABOVE_GRND,PWAT,89 Omega in boundary layer (30 mb mean),VVEL_ON_SPEC_PRES_ABOVE_GRND,VVEL,90 -**Pressure on sigma level 0.98230**,PRES_ON_SIGMA_LVL_0.98230,PRES,91 -**Temperature on sigma level 0.98230**,TMP_ON_SIGMA_LVL_0.98230,TMP,92 -**Specific humidity on sigma level 0.98230**,SPFH_ON_SIGMA_LVL_0.98230,SPFH,93 -**Relative humidity on sigma level 0.98230**,RH_ON_SIGMA_LVL_0.98230,RH,94 -**U-wind on sigma level 0.98230**,UGRD_ON_SIGMA_LVL_0.98230,UGRD,95 -**V-wind on sigma level 0.98230**,VGRD_ON_SIGMA_LVL_0.98230,VGRD,96 -**Temperature on sigma level 0.89671**,TMP_ON_SIGMA_LVL_0.89671,TMP,97 -**Temperature on sigma level 0.78483**,TMP_ON_SIGMA_LVL_0.78483,TMP,98 +Pressure on sigma level 0.98230,PRES_ON_SIGMA_LVL_0.98230,PRES,91 +Temperature on sigma level 0.98230,TMP_ON_SIGMA_LVL_0.98230,TMP,92 +Specific humidity on sigma level 0.98230,SPFH_ON_SIGMA_LVL_0.98230,SPFH,93 +Relative humidity on sigma level 0.98230,RH_ON_SIGMA_LVL_0.98230,RH,94 +U-wind on sigma level 0.98230,UGRD_ON_SIGMA_LVL_0.98230,UGRD,95 +V-wind on sigma level 0.98230,VGRD_ON_SIGMA_LVL_0.98230,VGRD,96 +Temperature on sigma level 0.89671,TMP_ON_SIGMA_LVL_0.89671,TMP,97 +Temperature on sigma level 0.78483,TMP_ON_SIGMA_LVL_0.78483,TMP,98 Relative humidity on sigma layer (0.47_1.0* mean)RH_ON_SIGMA_LVL_0.47_1.0,RH,99 Relative humidity on sigma layer (0.47_0.96 mean),RH_ON_SIGMA_LVL_0.47_0.96,RH,100 Relative humidity on sigma layer (0.18_0.47 mean),RH_ON_SIGMA_LVL_0.18_0.47,RH,101 @@ -268,7 +268,7 @@ Surface zonal momentum flux,AVE_UFLX_ON_SURFACE,UFLX,269 Surface meridional momentum flux,AVE_VFLX_ON_SURFACE,VFLX,270 Average precipitation rate,AVE_PRATE_ON_SURFACE,PRATE,271 Average convective precipitation rate,AVE_CPRAT_ON_SURFACE,CPRAT,272 -**Sigma pressure thickness on model surface**,PRES_ON_HYBRID_LVL_LLM,PRES,273 +Sigma pressure thickness on model surface,PRES_ON_HYBRID_LVL_LLM,PRES,273 Instantaneous outgoing longwave at top of atmosphere,INST_ULWRF_ON_TOP_OF_ATMOS,ULWRF,274 Total spectrum brightness temperature,BRTMP_ON_TOP_OF_ATMOS,BRTMP,275 Composite rain radar reflectivity,REFZR_ON_ENTIRE_ATMOS,REFZR,276 @@ -278,7 +278,7 @@ Rain radar reflecting angle,REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZR,279 Ice radar reflecting angle,REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZI,280 Convection radar reflecting angle,REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND,REFZC,281 Model top pressure,PRES_ON_TOP_OF_ATMOS,PRES,282 -**Pressure thickness on model surface**,PRES_ON_HYBRID_LVL_1L,PRES,283 +Pressure thickness on model surface,PRES_ON_HYBRID_LVL_1L,PRES,283 Model level vertical velocity,DZDT_ON_ISOBARIC_SFC,DZDT,284 Column integrated super cool liquid water,TCLSW_ON_ENTIRE_ATMOS,TCLSW,285 Column integrated melting ice,TCOLM_ON_ENTIRE_ATMOS,TCOLM,286 @@ -291,7 +291,7 @@ Total column gridded temperature tendency,AVE_LRGHR_ON_ENTIRE_ATMOS,LRGHR,292 Total column convective temperature tendency,AVE_CNVHR_ON_ENTIRE_ATMOS,CNVHR,293 Radiative flux temperature tendency on pressure level,TTRAD_ON_ISOBARIC_SFC,TTRAD,294 Column integrated moisture convergence,MCONV_ON_ENTIRE_ATMOS,MCONV,295 -**Temperature on sigma levels**,TMP_ON_SIGMA_LVL_HPC,TMP,296 +Temperature on sigma levels,TMP_ON_SIGMA_LVL_HPC,TMP,296 Time averaged clear sky incoming UV-B shortwave,AVE_CDUVB_ON_SURFACE,CDUVB,297 Time averaged incoming UV-B shortwave,AVE_DUVB_ON_SURFACE,DUVB,298 Total column ozone,TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR,TOZNE,299 @@ -316,12 +316,12 @@ Average precipitation type,AVE_CRAIN_ON_SURFACE,CRAIN,317 Relative humidity on sigma layer (0.44-1.0 mean),RH_ON_SIGMA_LVL_0.44-1.0,RH,318 Relative humidity on sigma layer (0.72-0.94 mean),RH_ON_SIGMA_LVL_0.72-0.94,RH,319 Relative humidity on sigma layer (0.44-0.72 mean),RH_ON_SIGMA_LVL_0.44-0.72,RH,320 -**Temperature on sigma level 0.9950**,TMP_ON_SIGMA_LVL_0.9950,TMP,321 -**Potential temperature on sigma level 0.9950**,POT_ON_SIGMA_LVL_0.9950,POT,322 -**Relative humidity on sigma level 0.9950**,RH_ON_SIGMA_LVL_0.9950,RH,323 -**U-wind at sigma level 0.9950**,UGRD_ON_SIGMA_LVL_0.9950,UGRD,324 -**V-wind at sigma level 0.9950**,VGRD_ON_SIGMA_LVL_0.9950,VGRD,325 -**Omega at sigma level 0.9950**,VVEL_ON_SIGMA_LVL_0.9950,VVEL,326 +Temperature on sigma level 0.9950,TMP_ON_SIGMA_LVL_0.9950,TMP,321 +Potential temperature on sigma level 0.9950,POT_ON_SIGMA_LVL_0.9950,POT,322 +Relative humidity on sigma level 0.9950,RH_ON_SIGMA_LVL_0.9950,RH,323 +U-wind at sigma level 0.9950,UGRD_ON_SIGMA_LVL_0.9950,UGRD,324 +V-wind at sigma level 0.9950,VGRD_ON_SIGMA_LVL_0.9950,VGRD,325 +Omega at sigma level 0.9950,VVEL_ON_SIGMA_LVL_0.9950,VVEL,326 Simulated GOES 12 channel 2 brightness temperature,SBT122_ON_TOP_OF_ATMOS,SBT122,327 Simulated GOES 12 channel 3 brightness temperature,SBT123_ON_TOP_OF_ATMOS,SBT123,328 Simulated GOES 12 channel 4 brightness temperature,SBT124_ON_TOP_OF_ATMOS,SBT124,329 @@ -346,7 +346,7 @@ Maximum 2m RH,MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MAXRH,347 Minimum 2m RH,MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MINRH,348 Ice thickness,ICETK_ON_SURFACE,ICETK,349 Highest freezing level relative humidity,RH_ON_HGHST_TROP_FRZ_LVL,RH,350 -**Lapse rate on theta surface**,LAPR_ON_ISENTROPIC_LVL,LAPR,351 +Lapse rate on theta surface,LAPR_ON_ISENTROPIC_LVL,LAPR,351 Relative humidity on theta surface,RH_ON_ISENTROPIC_LVL,RH,352 Montgomery streamfunction on theta surface,MNTSF_ON_ISENTROPIC_LVL,MNTSF,353 Shortwave temperature tendency on pressure surface,SWHR_ON_ISOBARIC_SFC,SWHR,354 @@ -359,23 +359,23 @@ Vertical diffusion moistening rate on pressure surface,VDFMR_ON_ISOBARIC_SFC,VDF Deep convective moistening rate on pressure surface,CNVMR_ON_ISOBARIC_SFC,CNVMR,361 Shallow convective moistening rate on pressure surface,SHAMR_ON_ISOBARIC_SFC,SHAMR,362 Grid scale moistening rate on pressure surface,LRGMR_ON_ISOBARIC_SFC,LRGMR,363 -**Ozone vertical diffusion on pressure surface**,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 -**Ozone production on pressure surface**,POZ_ON_ISOBARIC_SFC,POZ,365 +Ozone vertical diffusion on pressure surface,VDFOZ_ON_ISOBARIC_SFC,VDFOZ,364 +Ozone production on pressure surface,POZ_ON_ISOBARIC_SFC,POZ,365 Ozone tendency on pressure surface,TOZ_ON_ISOBARIC_SFC,TOZ,366 Mass weighted potential vorticity on pressure surface,PVMW_ON_ISOBARIC_SFC,PVMW,367 -**Snow temperature on pressure surface**,SNOT_ON_ISOBARIC_SFC,SNOT,368 -**Vertical diffusion zonal acceleration on pressure surface**,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 -**Gravity wave drag zonal acceleration on pressure surface**,GWDU_ON_ISOBARIC_SFC,GWDU,370 -**Convective zonal momentum mixing acceleration on pressure surface**,CNVU_ON_ISOBARIC_SFC,CNVU,371 -**Vertical diffusion meridional acceleration on pressure surface**,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 -**Gravity wave drag meridional acceleration on pressure surface**,GWDV_ON_ISOBARIC_SFC,GWDV,373 -**Convective meridional momentum mixing acceleration on pressure surface**,CNVV_ON_ISOBARIC_SFC,CNVV,374 +Snow temperature on pressure surface,SNOT_ON_ISOBARIC_SFC,SNOT,368 +Vertical diffusion zonal acceleration on pressure surface,VDFUA_ON_ISOBARIC_SFC,VDFUA,369 +Gravity wave drag zonal acceleration on pressure surface,GWDU_ON_ISOBARIC_SFC,GWDU,370 +Convective zonal momentum mixing acceleration on pressure surface,CNVU_ON_ISOBARIC_SFC,CNVU,371 +Vertical diffusion meridional acceleration on pressure surface,VDFVA_ON_ISOBARIC_SFC,VDFVA,372 +Gravity wave drag meridional acceleration on pressure surface,GWDV_ON_ISOBARIC_SFC,GWDV,373 +Convective meridional momentum mixing acceleration on pressure surface,CNVV_ON_ISOBARIC_SFC,CNVV,374 Non-Convective Cloud Cover % on pressure surface,CDLYR_ON_ISOBARIC_SFC,CDLYR,375 Simulated GOES 12 channel 3 brightness count,SBC123_ON_TOP_OF_ATMOS,SBC123,376 Simulated GOES 12 channel 4 brightness count,SBC124_ON_TOP_OF_ATMOS,SBC124,377 Omega on theta surface,VVEL_ON_ISENTROPIC_LVL,VVEL,378 -**Temperature tendency by all physics on pressure surface**,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 -**Vertical eddy diffusivity heat exchange on model surface**,VEDH_ON_HYBRID_LVL,VEDH,380 +Temperature tendency by all physics on pressure surface,TTDIA_ON_ISOBARIC_SFC,TTDIA,379 +Vertical eddy diffusivity heat exchange on model surface,VEDH_ON_HYBRID_LVL,VEDH,380 Mixing height,MIXHT_ON_SURFACE,MIXHT,381 Average clear-sky incoming longwave at surface,AVE_CSDLF_ON_SURFACE,CSDLF,382 Average clear-sky incoming shortwave at surface,AVE_CSDSF_ON_SURFACE,CSDSF,383 @@ -386,11 +386,11 @@ Average clear-sky outgoing shortwave at top of atmosphere,AVE_CSUSF_ON_TOP_OF_AT Average incoming shortwave at top of atmosphere,AVE_DSWRF_ON_TOP_OF_ATMOS,DSWRF,388 Transport wind u-component,UGRD_ON_PLANETARY_BOUND_LYR,UGRD,389 Transport wind v-component,VGRD_ON_PLANETARY_BOUND_LYR,VGRD,390 -**Convective updraft mass flux on pressure surface**,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 -**Convective downdraft mass flux on pressure surface**,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 +Convective updraft mass flux on pressure surface,CNVUMF_ON_ISOBARIC_SFC,CNVUMF,391 +Convective downdraft mass flux on pressure surface,CNVDMF_ON_ISOBARIC_SFC,CNVDMF,392 Convective detrainment mass flux on pressure surface,CNVEMF_ON_ISOBARIC_SFC,CNVEMF,393 -**Convective gravity drag zonal acceleration on pressure surface**,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 -**Convective gravity drag meridional acceleration on pressure surface**,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 +Convective gravity drag zonal acceleration on pressure surface,CNVWDU_ON_ISOBARIC_SFC,CNVWDU,394 +Convective gravity drag meridional acceleration on pressure surface,CNVWDV_ON_ISOBARIC_SFC,CNVWDV,395 Sunshine duration,SUNSD_ON_SURFACE,SUNSD,396 Field capacity,FLDCP_ON_SURFACE,FLDCP,397 ICAO height at maximum wind level,ICAHT_ON_MAX_WIND,ICAHT,398 @@ -403,18 +403,18 @@ Time averaged surface Near IR diffuse downward solar flux,AVE_NDDSF_ON_SURFACE,N Average snowfall rate,AVE_SRWEQ_ON_SURFACE,SRWEQ,405 GSD Cloud top pressure,GSD_PRES_ON_CLOUD_TOP,PRES,406 GSD Instant precipitation type on surface,GSD_INST_CRAIN_ON_SURFACE,CRAIN,407 -**GSD cloud ceiling height**,GSD_HGT_ON_CLOUD_CEILING,HGT,408 +GSD cloud ceiling height,GSD_HGT_ON_CLOUD_CEILING,HGT,408 GSD cloud top height,GSD_HGT_ON_CLOUD_TOP,HGT,409 -**GSD visibility**,GSD_VIS_ON_SURFACE,VIS,410 +GSD visibility,GSD_VIS_ON_SURFACE,VIS,410 Wind energy potential,WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND,WMIXE,411 U wind at 80 m above ground,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,UGRD,412 V wind at 80 m above ground,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND,VGRD,413 2 M mixing ratio,Not currently available for grib2,NA,414 Graupel on model surface,GRLE_ON_HYBRID_LVL,GRLE,415 Graupel on pressure surface,GRLE_ON_ISOBARIC_SFC,GRLE,416 -**Continuous accumulated total precipitation**,CACM_APCP_ON_SURFACE,APCP,417 -**Continuous accumulated convective precipitation**,CACM_ACPCP_ON_SURFACE,ACPCP,418 -**Continuous accumulated grid-scale precipitation**,CACM_NCPCP_ON_SURFACE,NCPCP,419 +Continuous accumulated total precipitation,CACM_APCP_ON_SURFACE,APCP,417 +Continuous accumulated convective precipitation,CACM_ACPCP_ON_SURFACE,ACPCP,418 +Continuous accumulated grid-scale precipitation,CACM_NCPCP_ON_SURFACE,NCPCP,419 Maximum updraft helicity,MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MXUPHL,420 Maximum 1km reflectivity,MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,MAXREF,421 Maximum wind speed at 10m,MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,422 @@ -468,33 +468,33 @@ GTG mountain wave turbulence (MWT) at specific altitude above mean sea level,MWT GTG eddy dissipation parameter (EDR) on model surface,EDPARM_ON_HYBRID_LVL,EDPARM,470 GTG clean air turbulence (CAT) on model surface,CAT_ON_HYBRID_LVL,CATEDR,471 GTG mountain wave turbulence (MWT) on model surface,MWTURB_ON_HYBRID_LVL,MWTURB,472 -**Horizontal extent of cumulonimbus (CB) %**,CBHE_ON_ENTIRE_ATMOS,CBHE,473 +Horizontal extent of cumulonimbus (CB) %,CBHE_ON_ENTIRE_ATMOS,CBHE,473 Standard atmosphere reference height of base of cumulonimbus,ICAHT_ON_CB_BASE,ICAHT,474 Standard atmosphere reference height of top of cumulonimbus,ICAHT_ON_CB_TOP,ICAHT,475 GTG eddy dissipation parameter (EDR) on standard atmospheric isobaric levels,EDPARM_GTG_ON_ICAO_STD_SFC,EDPARM,476 GTG clean air turbulence (CAT) on standard atmospheric isobaric levels,CAT_GTG_ON_ICAO_STD_SFC,CATEDR,477 GTG mountain wave turbulence (MWT) on standard atmospheric isobaric levels,MWTURB_GTG_ON_ICAO_STD_SFC,MWTURB,478 -**Icing severity on standard atmospheric isobaric levels**,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 -**GFIP in-flight icing severity on pressure surface**,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 -**Total icing potential diagnostic on standard atmospheric isobaric surface**,ICIP_ON_ICAO_STD_SFC,ICIP,481 +Icing severity on standard atmospheric isobaric levels,ICESEV_ON_ICAO_STD_SFC,ICESEV,479 +GFIP in-flight icing severity on pressure surface,ICESEV_ON_ISOBARIC_SFC,ICESEV,480 +Total icing potential diagnostic on standard atmospheric isobaric surface,ICIP_ON_ICAO_STD_SFC,ICIP,481 Pressure at flight levels,PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,PRES,482 Simulated AMSR-E channel 9 brightness temperature,AMSRE9_ON_TOP_OF_ATMOS,AMSRE9,483 Simulated AMSR-E channel 10 brightness temperature,AMSRE10_ON_TOP_OF_ATMOS,AMSRE10,484 Simulated AMSR-E channel 11 brightness temperature,AMSRE11_ON_TOP_OF_ATMOS,AMSRE11,485 Simulated AMSR-E channel 12 brightness temperature,AMSRE12_ON_TOP_OF_ATMOS,AMSRE12,486 -**GSD experimental ceiling diagnostic**,GSD_EXP_CEILING,CEIL,487 -**Simulated Brightness Temperature for TMI TRMM channel 6 on top of atmosphere**,TMITB6_ON_TOP_OF_ATMOS,AMSRE9,488 -**Simulated Brightness Temperature for TMI TRMM channel 7 on top of atmosphere**,TMITB7_ON_TOP_OF_ATMOS,AMSRE10,489 -**Simulated Brightness Temperature for TMI TRMM channel 8 on top of atmosphere**,TMITB8_ON_TOP_OF_ATMOS,AMSRE11,490 -**Simulated Brightness Temperature for TMI TRMM channel 9 on top of atmosphere**,TMITB9_ON_TOP_OF_ATMOS,AMSRE12,491 -**Simulated Brightness Temperature for SSMI TB channel 4 on top of atmosphere**,SSMITB4_ON_TOP_OF_ATMOS,AMSRE9,492 -**Simulated Brightness Temperature for SSMI TB channel 5 on top of atmosphere**,SSMITB5_ON_TOP_OF_ATMOS,AMSRE10,493 -**Simulated Brightness Temperature for SSMI TB channel 6 on top of atmosphere**,SSMITB6_ON_TOP_OF_ATMOS,AMSRE11,494 -**Simulated Brightness Temperature for SSMI TB channel 7 on top of atmosphere**,SSMITB7_ON_TOP_OF_ATMOS,AMSRE12,495 -**Simulated Brightness Temperature for SSMIS TB channel 15 on top of atmosphere**,SSMISTB15_ON_TOP_OF_ATMOS,AMSRE9,496 -**Simulated Brightness Temperature for SSMIS TB channel 16 on top of atmosphere**,SSMISTB16_ON_TOP_OF_ATMOS,AMSRE10,497 -**Simulated Brightness Temperature for SSMIS TB channel 17 on top of atmosphere**,SSMISTB17_ON_TOP_OF_ATMOS,AMSRE11,498 -**Simulated Brightness Temperature for SSMIS TB channel 18 on top of atmosphere**,SSMISTB18_ON_TOP_OF_ATMOS,AMSRE12,499 +GSD experimental ceiling diagnostic,GSD_EXP_CEILING,CEIL,487 +Simulated Brightness Temperature for TMI TRMM channel 6 on top of atmosphere,TMITB6_ON_TOP_OF_ATMOS,AMSRE9,488 +Simulated Brightness Temperature for TMI TRMM channel 7 on top of atmosphere,TMITB7_ON_TOP_OF_ATMOS,AMSRE10,489 +Simulated Brightness Temperature for TMI TRMM channel 8 on top of atmosphere,TMITB8_ON_TOP_OF_ATMOS,AMSRE11,490 +Simulated Brightness Temperature for TMI TRMM channel 9 on top of atmosphere,TMITB9_ON_TOP_OF_ATMOS,AMSRE12,491 +Simulated Brightness Temperature for SSMI TB channel 4 on top of atmosphere,SSMITB4_ON_TOP_OF_ATMOS,AMSRE9,492 +Simulated Brightness Temperature for SSMI TB channel 5 on top of atmosphere,SSMITB5_ON_TOP_OF_ATMOS,AMSRE10,493 +Simulated Brightness Temperature for SSMI TB channel 6 on top of atmosphere,SSMITB6_ON_TOP_OF_ATMOS,AMSRE11,494 +Simulated Brightness Temperature for SSMI TB channel 7 on top of atmosphere,SSMITB7_ON_TOP_OF_ATMOS,AMSRE12,495 +Simulated Brightness Temperature for SSMIS TB channel 15 on top of atmosphere,SSMISTB15_ON_TOP_OF_ATMOS,AMSRE9,496 +Simulated Brightness Temperature for SSMIS TB channel 16 on top of atmosphere,SSMISTB16_ON_TOP_OF_ATMOS,AMSRE10,497 +Simulated Brightness Temperature for SSMIS TB channel 17 on top of atmosphere,SSMISTB17_ON_TOP_OF_ATMOS,AMSRE11,498 +Simulated Brightness Temperature for SSMIS TB channel 18 on top of atmosphere,SSMISTB18_ON_TOP_OF_ATMOS,AMSRE12,499 Time-averaged percentage snow cover,AVE_SNOWC_ON_SURFACE,SNOWC,500 Time-averaged surface pressure,AVE_PRES_ON_SURFACE,PRES,501 Time-averaged 10m temperature,AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,502 @@ -503,89 +503,89 @@ Time-averaged wind exchange coefficient,AVE_AKMS_ON_SURFACE,AKMS,504 Temperature at 10m,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,TMP,505 Maximum U-component wind at 10m,MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,506 Maximum V-component wind at 10m,MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,507 -**Maximum instantaneous precipitation rate on surface**,MAX_PRATE_ON_SURFACE,PRATE,508 -**Maximum specific humidity at 2m**,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 -**Minimum specific humidity at 2m**,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 -**Aerodynamic conductance on surface**,ACOND_ON_SURFACE,ACOND,512 -**Canopy water evaporation on surface**,AVE_EVCW_ON_SURFACE,EVCW,513 +Maximum instantaneous precipitation rate on surface,MAX_PRATE_ON_SURFACE,PRATE,508 +Maximum specific humidity at 2m,MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMAX,510 +Minimum specific humidity at 2m,MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,QMIN,511 +Aerodynamic conductance on surface,ACOND_ON_SURFACE,ACOND,512 +Canopy water evaporation on surface,AVE_EVCW_ON_SURFACE,EVCW,513 Direct evaporation from bare soil on surface,AVE_EVBS_ON_SURFACE,EVBS,514 -**Transpiration on surface**,AVE_TRANS_ON_SURFACE,TRANS,515 -**Sublimation on surface**,AVE_SBSNO_ON_SURFACE,SBSNO,516 -**Potential evaporation rate on surface**,AVE_PEVPR_ON_SURFACE,PEVPR,517 -**Height on standard atmospheric isobaric levels**,HGT_ON_ICAO_STD_SFC,HGT,518 -**Temperature on standard atmospheric isobaric levels**,TMP_ON_ICAO_STD_SFC,TMP,519 -**U-component wind on standard atmospheric isobaric levels**,UGRD_ON_ICAO_STD_SFC,UGRD,520 -**V-component wind on standard atmospheric isobaric levels**,VGRD_ON_ICAO_STD_SFC,VGRD,521 -**Bucket total precipitation on surface**,BUCKET1_APCP_ON_SURFACE,APCP,526 -**Bucket convective precipitation on surface**,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 -**Bucket large scale precipitation on surface**,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 +Transpiration on surface,AVE_TRANS_ON_SURFACE,TRANS,515 +Sublimation on surface,AVE_SBSNO_ON_SURFACE,SBSNO,516 +Potential evaporation rate on surface,AVE_PEVPR_ON_SURFACE,PEVPR,517 +Height on standard atmospheric isobaric levels,HGT_ON_ICAO_STD_SFC,HGT,518 +Temperature on standard atmospheric isobaric levels,TMP_ON_ICAO_STD_SFC,TMP,519 +U-component wind on standard atmospheric isobaric levels,UGRD_ON_ICAO_STD_SFC,UGRD,520 +V-component wind on standard atmospheric isobaric levels,VGRD_ON_ICAO_STD_SFC,VGRD,521 +Bucket total precipitation on surface,BUCKET1_APCP_ON_SURFACE,APCP,526 +Bucket convective precipitation on surface,BUCKET1_ACPCP_ON_SURFACE,ACPCP,527 +Bucket large scale precipitation on surface,BUCKET1_NCPCP_ON_SURFACE,NCPCP,528 Bucket water equivalent accumulated snow depth on surface,BUCKET1_WEASD_ON_SURFACE,WEASD,529 -**Bucket graupel precipitation on surface**,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 -**Simulated Brightness Temperature for ABI GOES-18 Band-7**,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 -**Simulated Brightness Temperature for ABI GOES-18 Band-8**,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 -**Simulated Brightness Temperature for ABI GOES-18 Band-9**,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 -**Simulated Brightness Temperature for ABI GOES-18 Band-10**,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 -**Simulated Brightness Temperature for ABI GOES-18 Band-11**,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 -**Simulated Brightness Temperature for ABI GOES-18 Band-12**,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 -**Simulated Brightness Temperature for ABI GOES-18 Band-13**,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 -**Simulated Brightness Temperature for ABI GOES-18 Band-14**,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 -**Simulated Brightness Temperature for ABI GOES-18 Band-15**,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 -**Simulated Brightness Temperature for ABI GOES-18 Band-16**,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 -**GSD shelter level potential temperature**,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 -**GSD shelter level dewpoint depression**,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 -**GSD shelter level surface equivalent potential temperature**,GSD_EPOT_ON_SURFACE,EPOT,548 +Bucket graupel precipitation on surface,BUCKET1_GRAUPEL_ON_SURFACE,FROZR,530 +Simulated Brightness Temperature for ABI GOES-18 Band-7,SBTA187_ON_TOP_OF_ATMOS,SBTA187,531 +Simulated Brightness Temperature for ABI GOES-18 Band-8,SBTA188_ON_TOP_OF_ATMOS,SBTA188,532 +Simulated Brightness Temperature for ABI GOES-18 Band-9,SBTA189_ON_TOP_OF_ATMOS,SBTA189,533 +Simulated Brightness Temperature for ABI GOES-18 Band-10,SBTA1810_ON_TOP_OF_ATMOS,SBTA1810,534 +Simulated Brightness Temperature for ABI GOES-18 Band-11,SBTA1811_ON_TOP_OF_ATMOS,SBTA1811,535 +Simulated Brightness Temperature for ABI GOES-18 Band-12,SBTA1812_ON_TOP_OF_ATMOS,SBTA1812,536 +Simulated Brightness Temperature for ABI GOES-18 Band-13,SBTA1813_ON_TOP_OF_ATMOS,SBTA1813,537 +Simulated Brightness Temperature for ABI GOES-18 Band-14,SBTA1814_ON_TOP_OF_ATMOS,SBTA1814,538 +Simulated Brightness Temperature for ABI GOES-18 Band-15,SBTA1815_ON_TOP_OF_ATMOS,SBTA1815,539 +Simulated Brightness Temperature for ABI GOES-18 Band-16,SBTA1816_ON_TOP_OF_ATMOS,SBTA1816,540 +GSD shelter level potential temperature,GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,POT,546 +GSD shelter level dewpoint depression,GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,DEPR,547 +GSD shelter level surface equivalent potential temperature,GSD_EPOT_ON_SURFACE,EPOT,548 Foundation sea surface temperature on surface,FDNSSTMP_ON_SURFACE,FDNSSTMP,549 -**Categorical snow on surface**,CSNOW_ON_SURFACE,CSNOW,551 -**Categorical ice pellets on surface**,CICEP_ON_SURFACE,CICEP,552 -**Categorical freezing rain on surface**,CFRZR_ON_SURFACE,CFRZR,553 -**average Categorical snow on surface**,AVE_CSNOW_ON_SURFACE,CSNOW,555 -**average Categorical ice pellets on surface**,AVE_CICEP_ON_SURFACE,CICEP,556 -**average Categorical freezing rain on surface**,AVE_CFRZR_ON_SURFACE,CFRZR,557 -**GSD_Categorical snow on surface**,GSD_CSNOW_ON_SURFACE,CSNOW,559 -**GSD_Categorical ice pellets on surface**,GSD_CICEP_ON_SURFACE,CICEP,560 -**GSD_Categorical freezing rain on surface**,GSD_CFRZR_ON_SURFACE,CFRZR,561 -**GSD_average Categorical snow on surface**,GSD_AVE_CSNOW_ON_SURFACE,CSNOW,563 -**GSD_average Categorical ice pellets on surface**,GSD_AVE_CICEP_ON_SURFACE,CICEP,564 -**GSD_average Categorical freezing rain on surface**,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 -**Best boundary layer CAPE**,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 -**Best boundary layer CIN**,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 -**GFS sea level pressure**,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 +Categorical snow on surface,CSNOW_ON_SURFACE,CSNOW,551 +Categorical ice pellets on surface,CICEP_ON_SURFACE,CICEP,552 +Categorical freezing rain on surface,CFRZR_ON_SURFACE,CFRZR,553 +Average categorical snow on surface,AVE_CSNOW_ON_SURFACE,CSNOW,555 +Average categorical ice pellets on surface,AVE_CICEP_ON_SURFACE,CICEP,556 +Average categorical freezing rain on surface,AVE_CFRZR_ON_SURFACE,CFRZR,557 +GSD_Categorical snow on surface,GSD_CSNOW_ON_SURFACE,CSNOW,559 +GSD_Categorical ice pellets on surface,GSD_CICEP_ON_SURFACE,CICEP,560 +GSD_Categorical freezing rain on surface,GSD_CFRZR_ON_SURFACE,CFRZR,561 +GSD_average Categorical snow on surface,GSD_AVE_CSNOW_ON_SURFACE,CSNOW,563 +GSD_average Categorical ice pellets on surface,GSD_AVE_CICEP_ON_SURFACE,CICEP,564 +GSD_average Categorical freezing rain on surface,GSD_AVE_CFRZR_ON_SURFACE,CFRZR,565 +Best boundary layer CAPE,BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,566 +Best boundary layer CIN,BEST_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,567 +GFS sea level pressure,GFS_PRES_ON_MEAN_SEA_LVL,PRES,568 GFS average convective cloud fraction,GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,569 GFS convective cloud fraction,GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR,TCDC,570 GFS Soil temperature at the bottom of soil layers,GFS_TMP_ON_DEPTH_BEL_LAND_SFC_3m,TMP,571 -**GFS lifted index on surface**,GFS_LFTX_ON_SURFACE,LFTX,572 -**GFS lifted index on surface - best**,GFS_4LFTX_ON_SURFACE,4LFTX,573 -**Soil temperature in between each of soil layers**,GFS_TMP_ON_DEPTH_BEL_LAND_SFC,TMP,574 +GFS lifted index on surface,GFS_LFTX_ON_SURFACE,LFTX,572 +GFS lifted index on surface - best,GFS_4LFTX_ON_SURFACE,4LFTX,573 +Soil temperature in between each of soil layers,GFS_TMP_ON_DEPTH_BEL_LAND_SFC,TMP,574 Column integrated cloud water,CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR,CWAT,575 -**Flight-level u-component wind**,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 -**Flight-level v-component wind**,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 -**Flight level specific humidity**,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 -**Flight level pressure**,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 -**Flight level icing**,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 -**Entire Atmosphere Vertically Integrated Liquid (kg/m-2)**,VIL_ON_ENTIRE_ATMOS,VIL,581 -**Mixed-layer CAPE**,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 -**Mixed-layer CIN**,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 -**Most unstable CAPE**,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 -**Most unstable CIN**,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 -**Flight level temperature**,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 -**Flight level icing**,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 -**Ice growth rate**,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 -**GFS 2D aerosol optical depth at 550 nm**,AER_OPT_GFS_at550,AOTK,600 -**GFS 2D dust aerosol optical depth at 550 nm**,DUST_AER_OPT_GFS_at550,AOTK,601 -**GFS 2D seasalt aerosol optical depth at 550 nm**,SEASALT_AER_OPT_GFS_at550,AOTK,602 -**GFS 2D sulfate aerosol optical depth at 550 nm**,SULFATE_AER_OPT_GFS_at550,AOTK,603 -**GFS 2D organic carbon aerosol optical depth at 550 nm**,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 -**GFS 2D black carbon aerosol optical depth at 550 nm**,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 +Flight-level u-component wind,UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,UGRD,576 +Flight-level v-component wind,VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,VGRD,577 +Flight level specific humidity,SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,SPFH,578 +Flight level pressure,PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,PRES,579 +Flight level icing,ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT,ICI,580 +Entire Atmosphere Vertically Integrated Liquid (kg/m-2),VIL_ON_ENTIRE_ATMOS,VIL,581 +Mixed-layer CAPE,MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,582 +Mixed-layer CIN,MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,583 +Most unstable CAPE,UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND,CAPE,584 +Most unstable CIN,UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND,CIN,585 +Flight level temperature,TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,TMP,586 +Flight level icing,ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT,ICI,587 +Ice growth rate,ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,ICEG,588 +GFS 2D aerosol optical depth at 550 nm,AER_OPT_GFS_at550,AOTK,600 +GFS 2D dust aerosol optical depth at 550 nm,DUST_AER_OPT_GFS_at550,AOTK,601 +GFS 2D seasalt aerosol optical depth at 550 nm,SEASALT_AER_OPT_GFS_at550,AOTK,602 +GFS 2D sulfate aerosol optical depth at 550 nm,SULFATE_AER_OPT_GFS_at550,AOTK,603 +GFS 2D organic carbon aerosol optical depth at 550 nm,ORGANIC_CARBON_AER_OPT_GFS_at550,AOTK,604 +GFS 2D black carbon aerosol optical depth at 550 nm,BLACK_CARBON_AER_OPT_GFS_at550,AOTK,605 Aerosol extinction coefficient on model surface,AECOEF_ON_HYBRID_LVL,AECOEF,606 -**Asymmetry factor on model surface**,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 -**Single scattering albedo on model surface**,SSALBK_ON_HYBRID_LVL,SSALBK,608 -**Aerosol optical depth at 550nm**,AER_OPT_DEP_at550,AOTK,609 -**Dust aerosol optical depth at 550nm**,DUST_AER_OPT_DEP_at550,AOTK,610 -**Seasalt aerosol optical depth at 550nm**,SEASALT_AER_OPT_DEP_at550,AOTK,611 -**Sulfate aerosol optical depth at 550nm**,SULFATE_AER_OPT_DEP_at550,AOTK,612 -**Organic carbon aerosol optical depth at 550nm**,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 -**Black carbon aerosol optical depth at 550nm**,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 -**Nitrate aerosol optical depth at 550nm**,NITRATE_AER_OPT_DEP_at550,AOTK,615 +Asymmetry factor on model surface,ASYSFK_ON_HYBRID_LVL,ASYSFK,607 +Single scattering albedo on model surface,SSALBK_ON_HYBRID_LVL,SSALBK,608 +Aerosol optical depth at 550nm,AER_OPT_DEP_at550,AOTK,609 +Dust aerosol optical depth at 550nm,DUST_AER_OPT_DEP_at550,AOTK,610 +Seasalt aerosol optical depth at 550nm,SEASALT_AER_OPT_DEP_at550,AOTK,611 +Sulfate aerosol optical depth at 550nm,SULFATE_AER_OPT_DEP_at550,AOTK,612 +Organic carbon aerosol optical depth at 550nm,ORGANIC_CARBON_AER_OPT_DEP_at550,AOTK,613 +Black carbon aerosol optical depth at 550nm,BLACK_CARBON_AER_OPT_DEP_at550,AOTK,614 +Nitrate aerosol optical depth at 550nm,NITRATE_AER_OPT_DEP_at550,AOTK,615 Black carbon column integrated mass density,BC_COL_MASS_DEN,COLMD,616 Organic carbon column integrated mass density,OC_COL_MASS_DEN,COLMD,617 Sulfate column integrated mass density,SULF_COL_MASS_DEN,COLMD,618 @@ -593,84 +593,84 @@ Aerosol surface particulate matter (PM) 10 mass concentration (ug/m3),PM10_SFC_M Aerosol surface particulate matter (PM) 2.5 mass concentration (ug/m3),PM25_SFC_MASS_CON,PMTF,620 Total aerosol particulate matter (PM) 10 column integrated mass density,PM10_COL_MASS_DEN,COLMD,621 Total aerosol particulate matter (PM) 2.5 column integrated mass density,PM25_COL_MASS_DEN,COLMD,622 -**Aerosol optical depth at 340nm**,AER_OPT_DEP_at340,AOTK,623 -**Aerosol optical depth at 440nm**,AER_OPT_DEP_at440,AOTK,624 -**Aerosol optical depth at 660nm**,AER_OPT_DEP_at660,AOTK,625 -**Aerosol optical depth at 860nm**,AER_OPT_DEP_at860,AOTK,626 -**Aerosol optical depth at 1630nm**,AER_OPT_DEP_at1630,AOTK,627 -**Aerosol optical depth at 11100nm**,AER_OPT_DEP_at11100,AOTK,628 -**Dust 1 on model surface**,DUST1_ON_HYBRID_LVL,PMTF,629 -**Dust 2 on model surface**,DUST2_ON_HYBRID_LVL,PMTF,630 -**Dust 3 on model surface**,DUST3_ON_HYBRID_LVL,PMTC,631 -**Dust 4 on model surface**,DUST4_ON_HYBRID_LVL,PMTC,632 -**Dust 5 on model surface**,DUST5_ON_HYBRID_LVL,PMTC,633 -**Seasalt 1 on model surface**,SEASALT1_ON_HYBRID_LVL,PMTF,634 -**Seasalt 2 on model surface**,SEASALT2_ON_HYBRID_LVL,PMTF,635 -**Seasalt 3 on model surface**,SEASALT3_ON_HYBRID_LVL,PMTC,636 -**Seasalt 4 on model surface**,SEASALT4_ON_HYBRID_LVL,PMTC,637 -**Seasalt 5 on model surface**,SEASALT5_ON_HYBRID_LVL,PMTC,638 -**SO4 on model surface**,SO4_ON_HYBRID_LVL,PMTF,639 -**Hydrophobic organic carbon on model surface**,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 -**Hydrophilic organic carbon on model surface**,OCPHILIC_ON_HYBRID_LVL,PMTF,641 -**Hydrophobic black carbon on model surface**,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 -**Hydrophilic black carbon on model surface**,BCPHILIC_ON_HYBRID_LVL,PMTF,643 -**Air density on model surface**,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 -**Layer thickness on model surface**,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 +Aerosol optical depth at 340nm,AER_OPT_DEP_at340,AOTK,623 +Aerosol optical depth at 440nm,AER_OPT_DEP_at440,AOTK,624 +Aerosol optical depth at 660nm,AER_OPT_DEP_at660,AOTK,625 +Aerosol optical depth at 860nm,AER_OPT_DEP_at860,AOTK,626 +Aerosol optical depth at 1630nm,AER_OPT_DEP_at1630,AOTK,627 +Aerosol optical depth at 11100nm,AER_OPT_DEP_at11100,AOTK,628 +Dust 1 on model surface,DUST1_ON_HYBRID_LVL,PMTF,629 +Dust 2 on model surface,DUST2_ON_HYBRID_LVL,PMTF,630 +Dust 3 on model surface,DUST3_ON_HYBRID_LVL,PMTC,631 +Dust 4 on model surface,DUST4_ON_HYBRID_LVL,PMTC,632 +Dust 5 on model surface,DUST5_ON_HYBRID_LVL,PMTC,633 +Seasalt 1 on model surface,SEASALT1_ON_HYBRID_LVL,PMTF,634 +Seasalt 2 on model surface,SEASALT2_ON_HYBRID_LVL,PMTF,635 +Seasalt 3 on model surface,SEASALT3_ON_HYBRID_LVL,PMTC,636 +Seasalt 4 on model surface,SEASALT4_ON_HYBRID_LVL,PMTC,637 +Seasalt 5 on model surface,SEASALT5_ON_HYBRID_LVL,PMTC,638 +SO4 on model surface,SO4_ON_HYBRID_LVL,PMTF,639 +Hydrophobic organic carbon on model surface,OCPHOBIC_ON_HYBRID_LVL,PMTF,640 +Hydrophilic organic carbon on model surface,OCPHILIC_ON_HYBRID_LVL,PMTF,641 +Hydrophobic black carbon on model surface,BCPHOBIC_ON_HYBRID_LVL,PMTF,642 +Hydrophilic black carbon on model surface,BCPHILIC_ON_HYBRID_LVL,PMTF,643 +Air density on model surface,AIR_DENSITY_ON_HYBRID_LVL,DEN,644 +Layer thickness on model surface,LAYER_THICKNESS_ON_HYBRID_LVL,THICK,645 Dust particulate matter (PM) 2.5 column integrated mass density,DUST_COL_MASS_DEN,COLMD,646 Sea salt particulate matter (PM) 2.5 column integrated mass density,SEAS_COL_MASS_DEN,COLMD,647 -**Aerosol single scattering albedo at 340 nm**,SINGLE_SCAT_ALBD_at340,SSALBK,648 -**Aersol asymmetry factor at 340nm**,AER_ASYM_FACTOR_at340,ASYSFK,649 -**Total aerosol scattering optical depth at 550nm**,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 -**Dust aerosol scattering optical depth at 550nm**,DUST_AER_SCAT_OPT_DEP_at550,SCTAOTK,651 -**Seasalt aerosol scattering optical depth at 550nm**,SEASALT_AER_SCAT_OPT_DEP_at550,SCTAOTK,652 -**Sulfate aerosol scattering optical depth at 550nm**,SULFATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,653 -**Organic carbon aerosol scattering optical depth at 550nm**,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 -**Black carbon aerosol scattering optical depth at 550nm**,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 -**Angstrom exponent**,ANGSTROM_EXP_at440_860,ANGSTEXP,656 +Aerosol single scattering albedo at 340 nm,SINGLE_SCAT_ALBD_at340,SSALBK,648 +Aersol asymmetry factor at 340nm,AER_ASYM_FACTOR_at340,ASYSFK,649 +Total aerosol scattering optical depth at 550nm,AER_SCAT_OPT_DEP_at550,SCTAOTK,650 +Dust aerosol scattering optical depth at 550nm,DUST_AER_SCAT_OPT_DEP_at550,SCTAOTK,651 +Seasalt aerosol scattering optical depth at 550nm,SEASALT_AER_SCAT_OPT_DEP_at550,SCTAOTK,652 +Sulfate aerosol scattering optical depth at 550nm,SULFATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,653 +Organic carbon aerosol scattering optical depth at 550nm,ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,654 +Black carbon aerosol scattering optical depth at 550nm,BLACK_CARBON_AER_SCAT_OPT_DEP_at550,SCTAOTK,655 +Angstrom exponent,ANGSTROM_EXP_at440_860,ANGSTEXP,656 NO3 column integrated mass density,NO3_COL_MASS_DEN,COLMD,657 NH4 column integrated mass density,NH4_COL_MASS_DEN,COLMD,658 Dust emission mass flux,DUST_EMISSION_FLUX,AEMFLX,659 -**Dust sedimentation flux**,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 -**Dust dry deposition flux**,DUST DRY DEPOSITION,DDMFLX,661 -**Dust wet deposition flux**,DUST WET DEPOSITION,WLSMFLX,662 +Dust sedimentation flux,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 +Dust dry deposition flux,DUST DRY DEPOSITION,DDMFLX,661 +Dust wet deposition flux,DUST WET DEPOSITION,WLSMFLX,662 Seasalt emission mass flux,SEASALT_EMISSION_FLUX,AEMFLX,663 -**Seasalt sedimentation flux**,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 -**Seasalt dry deposition flux**,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 -**Seasalt wet deposition flux**,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 +Seasalt sedimentation flux,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 +Seasalt dry deposition flux,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 +Seasalt wet deposition flux,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 Black carbon emission mass flux,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 -**Black carbon sedimentation flux**,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 -**Black carbon dry deposition flux**,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 -**Black carbon wet deposition flux**,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 +Black carbon sedimentation flux,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 +Black carbon dry deposition flux,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 +Black carbon wet deposition flux,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 Organic carbon emission mass flux,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 -**Organic carbon sedimentation flux**,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 -**Organic carbon dry deposition flux**,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 -**Organic carbon wet deposition flux**,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 +Organic carbon sedimentation flux,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 +Organic carbon dry deposition flux,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 +Organic carbon wet deposition flux,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 Sulfate emission mass flux,SULFATE_EMISSION_FLUX,AEMFLX,675 -**Sulfate sedimentation flux**,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 -**Sulfate dry deposition flux**,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 -**Sulfate wet deposition flux**,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 -**Dust scavenging flux**,DUST_SCAVENGING_FLUX,WDCPMFLX,679 -**Seasalt scavenging flux**,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 -**Black carbon scavenging flux**,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 -**Organic carbon scavenging flux**,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 -**Seasalt coarse aersol mass density concentration on model surface**,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 -**Seasalt 2.5 mass density concentration on model surface**,SEAS25_SFC_MASS_CON,PMTF,684 -**Dust 10 mass density concentration on model surface**,DUST10_SFC_MASS_CON,PMTC,685 -**Dust 2.5 mass density concentration on model surface**,DUST25_SFC_MASS_CON,PMTF,686 +Sulfate sedimentation flux,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 +Sulfate dry deposition flux,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 +Sulfate wet deposition flux,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 +Dust scavenging flux,DUST_SCAVENGING_FLUX,WDCPMFLX,679 +Seasalt scavenging flux,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 +Black carbon scavenging flux,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 +Organic carbon scavenging flux,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 +Seasalt coarse aersol mass density concentration on model surface,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 +Seasalt 2.5 mass density concentration on model surface,SEAS25_SFC_MASS_CON,PMTF,684 +Dust 10 mass density concentration on model surface,DUST10_SFC_MASS_CON,PMTC,685 +Dust 2.5 mass density concentration on model surface,DUST25_SFC_MASS_CON,PMTF,686 Nitrate aerosol scattering optical depth at 550nm,NITRATE_AER_SCAT_OPT_DEP_at550,SCTAOTK,687 -**NO3 on model surface**,NO3_ON_HYBRID_LVL,PMTF,688 -**NH4 on model surface**,NH4_ON_HYBRID_LVL,PMTF,689 -**Sulfate aerosol surface mass density concentration**,SU_AER_SFC_MASS_CON,MASSDEN,689 -**Instantaneous sulfate aerosol surface mass concentration**,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 -**Instantaneous organic carbon aerosol surface mass concentration**,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 -**Instantaneous black carbon aerosol surface mass concentration**,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 -**Instantaneous coarse dust aerosol surface mass concentration**,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 -**Instantaneous fine dust aerosol surface mass concentration**,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 -**Instantaneous coarse seasalt aerosol surface mass concentration**,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 -**Instantaneous fine seasalt aerosol surface mass concentration**,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 -**Instantaneous coarse aerosol surface mass concentration**,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 -**Instantaneous fine aerosol surface mass concentration**,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 -**Mie-based aerosol optical depth at 550nm**,MIE_OPT_DEP_at550,AOTK,699 +NO3 on model surface,NO3_ON_HYBRID_LVL,PMTF,688 +NH4 on model surface,NH4_ON_HYBRID_LVL,PMTF,689 +Sulfate aerosol surface mass density concentration,SU_AER_SFC_MASS_CON,MASSDEN,689 +Instantaneous sulfate aerosol surface mass concentration,INST_SU_AER_SFC_MASS_CON,MASSDEN,690 +Instantaneous organic carbon aerosol surface mass concentration,INST_OC_AER_SFC_MASS_CON,MASSDEN,691 +Instantaneous black carbon aerosol surface mass concentration,INST_BC_AER_SFC_MASS_CON,MASSDEN,692 +Instantaneous coarse dust aerosol surface mass concentration,INST_DU_CR_AER_SFC_MASS_CON,MASSDEN,693 +Instantaneous fine dust aerosol surface mass concentration,INST_DU_FN_AER_SFC_MASS_CON,MASSDEN,694 +Instantaneous coarse seasalt aerosol surface mass concentration,INST_SS_CR_AER_SFC_MASS_CON,MASSDEN,695 +Instantaneous fine seasalt aerosol surface mass concentration,INST_SS_FN_AER_SFC_MASS_CON,MASSDEN,696 +Instantaneous coarse aerosol surface mass concentration,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 +Instantaneous fine aerosol surface mass concentration,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 +Mie-based aerosol optical depth at 550nm,MIE_OPT_DEP_at550,AOTK,699 **GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 **GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 **GSD Max lightning threat 1**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 From 5372ba7e44dee48c4963e0e6d3ac147983f671e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Fri, 30 Jun 2023 15:27:54 -0400 Subject: [PATCH 41/44] add MASS flux --- docs/UPP_GRIB2_Table_byID.csv | 38 +++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index d8ececf88..3a4d722f4 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -630,29 +630,29 @@ Angstrom exponent,ANGSTROM_EXP_at440_860,ANGSTEXP,656 NO3 column integrated mass density,NO3_COL_MASS_DEN,COLMD,657 NH4 column integrated mass density,NH4_COL_MASS_DEN,COLMD,658 Dust emission mass flux,DUST_EMISSION_FLUX,AEMFLX,659 -Dust sedimentation flux,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 -Dust dry deposition flux,DUST DRY DEPOSITION,DDMFLX,661 -Dust wet deposition flux,DUST WET DEPOSITION,WLSMFLX,662 +Dust sedimentation mass flux,DUST_SEDIMENTATION_FLUX,SEDMFLX,660 +Dust dry deposition mass flux,DUST DRY DEPOSITION,DDMFLX,661 +Dust wet deposition mass flux,DUST WET DEPOSITION,WLSMFLX,662 Seasalt emission mass flux,SEASALT_EMISSION_FLUX,AEMFLX,663 -Seasalt sedimentation flux,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 -Seasalt dry deposition flux,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 -Seasalt wet deposition flux,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 +Seasalt sedimentation mass flux,SEASALT_SEDIMENTATION_FLUX,SEDMFLX,664 +Seasalt dry deposition mass flux,SEASALT_DRY_DEPOSITION_FLUX,DDMFLX,665 +Seasalt wet deposition mass flux,SEASALT_WET_DEPOSITION_FLUX,WLSMFLX,666 Black carbon emission mass flux,BLACK_CARBON_EMISSION_FLUX,AEMFLX,667 -Black carbon sedimentation flux,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 -Black carbon dry deposition flux,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 -Black carbon wet deposition flux,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 +Black carbon sedimentation mass flux,BLACK_CARBON_SEDIMENTATION_FLUX,SEDMFLX,668 +Black carbon dry deposition mass flux,BLACK_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,669 +Black carbon wet deposition mass flux,BLACK_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,670 Organic carbon emission mass flux,ORGANIC_CARBON_EMISSION_FLUX,AEMFLX,671 -Organic carbon sedimentation flux,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 -Organic carbon dry deposition flux,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 -Organic carbon wet deposition flux,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 +Organic carbon sedimentation mass flux,ORGANIC_CARBON_SEDIMENTATION_FLUX,SEDMFLX,672 +Organic carbon dry deposition mass flux,ORGANIC_CARBON_DRY_DEPOSITION_FLUX,DDMFLX,673 +Organic carbon wet deposition mass flux,ORGANIC_CARBON_WET_DEPOSITION_FLUX,WLSMFLX,674 Sulfate emission mass flux,SULFATE_EMISSION_FLUX,AEMFLX,675 -Sulfate sedimentation flux,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 -Sulfate dry deposition flux,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 -Sulfate wet deposition flux,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 -Dust scavenging flux,DUST_SCAVENGING_FLUX,WDCPMFLX,679 -Seasalt scavenging flux,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 -Black carbon scavenging flux,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 -Organic carbon scavenging flux,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 +Sulfate sedimentation mass flux,SULFATE_SEDIMENTATION_FLUX,SEDMFLX,676 +Sulfate dry deposition mass flux,SULFATE_DRY_DEPOSITION_FLUX,DDMFLX,677 +Sulfate wet deposition mass flux,SULFATE_WET_DEPOSITION_FLUX,WLSMFLX,678 +Dust scavenging mass flux,DUST_SCAVENGING_FLUX,WDCPMFLX,679 +Seasalt scavenging mass flux,SEASALT_SCAVENGING_FLUX,WDCPMFLX,680 +Black carbon scavenging mass flux,BLACK_CARBON_SCAVENGING_FLUX,WDCPMFLX,681 +Organic carbon scavenging mass flux,ORGANIC_CARBON_SCAVENGING_FLUX,WDCPMFLX,682 Seasalt coarse aersol mass density concentration on model surface,SS_CR_AER_SFC_MASS_CON,MASSDEN,683 Seasalt 2.5 mass density concentration on model surface,SEAS25_SFC_MASS_CON,PMTF,684 Dust 10 mass density concentration on model surface,DUST10_SFC_MASS_CON,PMTC,685 From ccf0ee95ccc3f3ddc3aba6a9da7fdd2287c6b816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 3 Jul 2023 11:42:03 -0400 Subject: [PATCH 42/44] minor grib2 table edits --- docs/UPP_GRIB2_Table_byID.csv | 246 +++++++++++++++++----------------- 1 file changed, 123 insertions(+), 123 deletions(-) diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index 3a4d722f4..0f63d2c1b 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -671,68 +671,68 @@ Instantaneous fine seasalt aerosol surface mass concentration,INST_SS_FN_AER_SFC Instantaneous coarse aerosol surface mass concentration,INST_CR_AER_SFC_MASS_CON,MASSDEN,697 Instantaneous fine aerosol surface mass concentration,INST_FN_AER_SFC_MASS_CON,MASSDEN,698 Mie-based aerosol optical depth at 550nm,MIE_OPT_DEP_at550,AOTK,699 -**GSD Max updraft helicity at 1-6 km layer above ground**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 -**GSD updraft helicity at 1-6 km layer above ground**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 -**GSD Max lightning threat 1**,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 -**GSD Max lightning threat 2**,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 -**GSD Max lightning threat 3**,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 +GSD Max updraft helicity at 1-6 km layer above ground,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MXUPHL,700 +GSD updraft helicity at 1-6 km layer above ground,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,UPHL,701 +GSD Max lightning threat 1,GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,702 +GSD Max lightning threat 2,GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND,LTNGSD,703 +GSD Max lightning threat 3,GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS,LTNG,704 GSD Convective Initiation Lightning,GSD_NCI_LTG_ON_ENTIRE_ATMOS,NCILTG,705 GSD Convective Activity Lightning,GSD_NCA_LTG_ON_ENTIRE_ATMOS,NCALTG,706 GSD Convective Initiation Vertical Hydrometeor Flux,GSD_NCI_WQ_ON_ENTIRE_ATMOS,NCIWQ,707 GSD Convective Activity Vertical Hydrometeor Flux,GSD_NCA_WQ_ON_ENTIRE_ATMOS,NCAWQ,708 GSD Convective Initiation Reflectivity,GSD_NCI_REFL_ON_ENTIRE_ATMOS,TSEC,709 GSD Convective Activity Reflectivity,GSD_NCA_REFL_ON_ENTIRE_ATMOS,TSEC,710 -**Experimental cloud base height**,GSD_EXP_CEILING_2,CEIL,711 -**AQM aerosol optical depth at 550 nm**,AER_OPT_AQM_at550,AOTK,712 -**Instantaneous all-sky outgoing shortwave flux at model top**,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 -**GSD accumulated depth of snowfall**,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 -**Minimum green vegetation fraction**,VEG_MIN_ON_SURFACE,VEGMIN,726 -**GSD updraft helicity**,GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 -**Max hail diameter at surface from WRF HAILCAST algorithm**,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 -**Maximum green vegetation fraction**,VEG_MAX_ON_SURFACE,VEGMAX,729 -**Time-averaged 10 M wind speed**,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 -**Time-averaged 10 M u-component wind**,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 -**Time-averaged 10 M v-component wind**,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 -**Time-averaged downward short-wave radiation flux**,GSD_AVE_DSWRF_ON_SURFACE,DSWRF,733 -**Time-averaged visible beam downward solar flux**,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 -**Total column aerosol optical depth**,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 -**Total column fire smoke**,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 -**Smoke on model surface**,SMOKE_ON_HYBRID_LVL,MASSDEN,737 -**Smoke on pressure surface**,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 -**Smoke at 8m above ground**,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 -**Instantaneous mean fire radiative power (FRP)**,MEAN_FIRE_RDIATV_PWR,CFNSF,740 -**Total column dust**,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 -**Dust on model surface**,DUST_ON_HYBRID_LVL,MASSDEN,742 -**Dust on pressure surface**,DUST_ON_ISOBARIC_SFC,MASSDEN,743 -**Dust at 8m above ground**,DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,744 -**Biomass burning emissions**,BIOMASS_BURNING_EMISSIONS,AEMFLX,745 -**Accumulated graupel**,ACM_GRAUPEL_ON_SURFACE,FROZR,746 +Experimental cloud base height,GSD_EXP_CEILING_2,CEIL,711 +AQM aerosol optical depth at 550 nm,AER_OPT_AQM_at550,AOTK,712 +Instantaneous all-sky outgoing shortwave flux at model top,INST_USWRF_ON_TOP_OF_ATMOS,USWRF,719 +GSD accumulated depth of snowfall,GSD_ACM_SNOD_ON_SURFACE,ASNOW,725 +Minimum green vegetation fraction,VEG_MIN_ON_SURFACE,VEGMIN,726 +GSD updraft helicity (2-5 km),GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,UPHL,727 +Max hail diameter at surface from WRF HAILCAST algorithm,GSD_HAILCAST_HAIL_DIAMETER,HAIL,728 +Maximum green vegetation fraction,VEG_MAX_ON_SURFACE,VEGMAX,729 +Time-averaged 10 M wind speed,AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,WIND,730 +Time-averaged 10 M u-component wind,AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,UGRD,731 +Time-averaged 10 M v-component wind,AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,VGRD,732 +Time-averaged downward short-wave radiation flux,GSD_AVE_DSWRF_ON_SURFACE,DSWRF,733 +Time-averaged visible beam downward solar flux,GSD_AVE_SWDDNI_ON_SURFACE,VBDSF,734 +Total column aerosol optical depth,AOD_ON_ENTIRE_ATMOS_SINGLE_LYR,AOTK,735 +Total column fire smoke,SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,736 +Smoke on model surface,SMOKE_ON_HYBRID_LVL,MASSDEN,737 +Smoke on pressure surface,SMOKE_ON_ISOBARIC_SFC,MASSDEN,738 +Smoke at 8m above ground,SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,739 +Instantaneous mean fire radiative power (FRP),MEAN_FIRE_RDIATV_PWR,CFNSF,740 +Total column dust,DUST_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,741 +Dust on model surface,DUST_ON_HYBRID_LVL,MASSDEN,742 +Dust on pressure surface,DUST_ON_ISOBARIC_SFC,MASSDEN,743 +Dust at 8m above ground,DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,744 +Biomass burning emissions,BIOMASS_BURNING_EMISSIONS,AEMFLX,745 +Accumulated graupel,ACM_GRAUPEL_ON_SURFACE,FROZR,746 Number concentration for cloud water drops on hybrid level,GSD_NCCD_ON_HYBRID_LVL,NCONCD,747 -**Radar reflectivity at 1km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,REFD,748 -RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER,GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS,RH_PWAT,749 -**Water vapor mixing ratio on model surface**,GSD_WV_MIXR_ON_HYBRID_LVL,MIXR,750 -**Virtual potential temperature on model surface**,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 +Radar reflectivity at 1km above ground,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km,REFD,748 +Relative humidity with respect to precipitable water,GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS,RH_PWAT,749 +Water vapor mixing ratio on model surface,GSD_WV_MIXR_ON_HYBRID_LVL,MIXR,750 +Virtual potential temperature on model surface,GSD_VPTMP_ON_HYBRID_LVL,VPTMP,751 Number concentration for ice particles on hybrid level,GSD_NCIP_ON_HYBRID_LVL,NCIP,752 GSD pressure on level of 0 deg (C) isotherm,GSD_PRES_ON_0C_ISOTHERM,PRES,753 -**Number concentration of rain drops on model surface**,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 +Number concentration of rain drops on model surface,GSD_NCRAIN_ON_HYBRID_LVL,NCRAIN,754 Hourly Wildfire Potential on surface,HWP_ON_SURFACE,FWINX,755 GSD pressure on highest tropospheric freezing level,GSD_PRES_ON_HGHST_TROP_FRZ_LVL,PRES,756 -**GSD radar reflectivity at 4km above ground**,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 -**GSD convective cloud top height**,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 -**GSD shelter mixing ratio**,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 -**GSD snow temperature**,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 -**GSD surface mixing ratio**,GSD_MIXR_ON_SURFACE,MIXR,762 -**GSD mixing ration on level of free convection (LFC)**,GSD_MIXR_ON_LFC,MIXR,763 -**Instantaneous clear-sky downwelling longwave at the surface**,CSDLF_ON_SURFACE,CSDLF,764 -**Instantaneous clear-sky upwelling longwave at the surface**,CSULF_ON_SURFACE,CSULF,765 -**GSD water-friendly aerosol number concentration on model surface**,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 -**GSD ice-friendly aerosol number concentration on model surface**,GSD_NCIFA_ON_HYBRID_LVL,PMTC,767 +GSD radar reflectivity at 4km above ground,GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km,REFD,757 +GSD convective cloud top height,GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL,HGT,758 +GSD shelter mixing ratio,GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,MIXR,760 +GSD snow temperature,GSD_INSIDE_SNOW_TMP_ON_SURFACE,TMP,761 +GSD surface mixing ratio,GSD_MIXR_ON_SURFACE,MIXR,762 +GSD mixing ration on level of free convection (LFC),GSD_MIXR_ON_LFC,MIXR,763 +Instantaneous clear-sky downwelling longwave at the surface,CSDLF_ON_SURFACE,CSDLF,764 +Instantaneous clear-sky upwelling longwave at the surface,CSULF_ON_SURFACE,CSULF,765 +GSD water-friendly aerosol number concentration on model surface,GSD_NCWFA_ON_HYBRID_LVL,PMTF,766 +GSD ice-friendly aerosol number concentration on model surface,GSD_NCIFA_ON_HYBRID_LVL,PMTC,767 Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level),GSD_ECHOTOP_ON_CLOUD_TOP,RETOP,768 -**GSD Vertically integrated liquid in kg/m^2**,GSD_VIL_ON_ENTIRE_ATMOS,VIL,769 -**GSD Vertically integrated liquid based on reflectivity factor in kg/m^2**,GSD_RADARVIL_ON_ENTIRE_ATMOS,RADARVIL,770 -**Instantaneous shortwave surface downward direct normal irradiance**,INST_SWDDNI_ON_SURFACE,VBDSF,772 -**Instantaneous shortwave surface downward diffuse irradiance**,INST_SWDDIF_ON_SURFACE,VDDSF,773 -**Model-state cloud fraction (unprocessed) on model surface**,FRACCC_ON_HYBRID_LVL,FRACCC,774 +GSD Vertically integrated liquid in kg/m^2,GSD_VIL_ON_ENTIRE_ATMOS,VIL,769 +GSD Vertically integrated liquid based on reflectivity factor in kg/m^2,GSD_RADARVIL_ON_ENTIRE_ATMOS,RADARVIL,770 +Instantaneous shortwave surface downward direct normal irradiance,INST_SWDDNI_ON_SURFACE,VBDSF,772 +Instantaneous shortwave surface downward diffuse irradiance,INST_SWDDIF_ON_SURFACE,VDDSF,773 +Model-state cloud fraction (unprocessed) on model surface,FRACCC_ON_HYBRID_LVL,FRACCC,774 Bucket graupel precipitation on surface,BUCKET_GRAUPEL_ON_SURFACE,FROZR,775 Height on highest tropospheric -10C level,`HGT_ON_HGHST_TROP_-10C_LVL`,HGT,776 Relative humidity on highest tropospheric -10C level,`RH_ON_HGHST_TROP_-10C_LVL`,RH,777 @@ -740,28 +740,28 @@ Pressure on highest tropospheric -10C level,`PRES_ON_HGHST_TROP_-10C_LVL`,PRES,7 Height on highest tropospheric -20C level,`HGT_ON_HGHST_TROP_-20C_LVL`,HGT,779 Relative humidity on highest tropospheric -20C level,`RH_ON_HGHST_TROP_-20C_LVL`,RH,780 Pressure on highest tropospheric -20C level,`PRES_ON_HGHST_TROP_-20C_LVL`,PRES,781 -**Accumulated freezing rain**,ACM_FRAIN_ON_SURFACE,FRZR,782 +Accumulated freezing rain,ACM_FRAIN_ON_SURFACE,FRZR,782 Maximum u wind on 10 meter above ground,MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXUW,783 Maximum v wind on 10 meter above ground,MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m,MAXVW,784 Maximum reflectivity on -10C surface,`MAX_REF_ON_ISOTHERMAL_-10C`,REFD,785 -**Global Systems Division (GSD) Minimum updraft helicity 2-5km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 -**GSD Minimum updraft helicity 1-6 km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 -**GSD Maximum updraft helicity 0-2km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 -**GSD Minimum updraft helicity 0-2km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 -**GSD Maximum updraft helicity 0-3km**,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 -**GSD Minimum updraft helicity 0-3km**,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 -**GSD Maximum relative vertical vorticity 0-2 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 -**GSD Maximum relative vertical vorticity 0-1 km**,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 -**GSD Maximum hail diameter in column**,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 -**GSD Maximum hail diameter at k=1**,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 -**Experimental cloud base pressure**,GSD_PRES1_ON_CLOUD_BASE,PRES,798 -**GSD maximum cloud fraction in (PBL + 1 km)**,TCDC_ON_BOUND_LYR,TCDC,799 -**Shelter level apparent temperature**,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 +Global Systems Division (GSD) Minimum updraft helicity 2-5km,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km,MNUPHL,786 +GSD Minimum updraft helicity 1-6 km,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km,MNUPHL,787 +GSD Maximum updraft helicity 0-2km,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MXUPHL,788 +GSD Minimum updraft helicity 0-2km,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,MNUPHL,789 +GSD Maximum updraft helicity 0-3km,GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MXUPHL,790 +GSD Minimum updraft helicity 0-3km,GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km,MNUPHL,791 +GSD Maximum relative vertical vorticity 0-2 km,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km,RELV,792 +GSD Maximum relative vertical vorticity 0-1 km,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km,RELV,793 +GSD Maximum hail diameter in column,GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER,HAIL,794 +GSD Maximum hail diameter at k=1,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAIL,795 +GSD Experimental cloud base pressure,GSD_PRES1_ON_CLOUD_BASE,PRES,798 +GSD maximum cloud fraction in (PBL + 1 km),TCDC_ON_BOUND_LYR,TCDC,799 +Shelter level apparent temperature,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 -**Simulated Brightness Temperature for SSMIS-F17 Channel 15**,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 -**Simulated Brightness Temperature for SSMIS-F17 Channel 16**,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 -**Simulated Brightness Temperature for SSMIS-F17 Channel 17**,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 -**Simulated Brightness Temperature for SSMIS-F17 Channel 18**,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 +Simulated Brightness Temperature for SSMIS-F17 Channel 15,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 +Simulated Brightness Temperature for SSMIS-F17 Channel 16,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 +Simulated Brightness Temperature for SSMIS-F17 Channel 17,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 +Simulated Brightness Temperature for SSMIS-F17 Channel 18,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,868 @@ -771,17 +771,17 @@ Hourly max relative vorticity on hybrid level 1,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL Virtual temperature on model surfaces,Not currently available for grib2,NA,909 Virtual temperature on pressure surfaces,Not currently available for grib2,NA,910 Virtual temperature on flight levels,Not currently available for grib2,NA,911 -**Radar reflectivity at -10C**,REFD_ON_ISOTHERMAL,REFD,912 -**1h precipitation comparison to Flash Flood Guidance (FFG) thresholds**,1H_FFG_EXCEEDANCE,FFLDRO,913 -**Total accumulated precipitation comparison to FFG thresholds**,ACM_FFG_EXCEEDANCE,FFLDRO,914 -**1h precipitation comparison with 2-year Average Recurrence Interval (ARI) threshold**,1H_2YARI_EXCEEDANCE,GWLOWS,915 -**Total accumulated precipitation comparison with 2-year ARI threshold**,ACM_2YARI_EXCEEDANCE,GWLOWS,916 -**1h precipitation comparison with 5-year ARI threshold**,1H_5YARI_EXCEEDANCE,GWLOWS,917 -**Total accumulated precipitation comparison with 5-year ARI threshold**,ACM_5YARI_EXCEEDANCE,GWLOWS,918 -**1h precipitation comparison with 10-year ARI threshold**,1H_10YARI_EXCEEDANCE,GWLOWS,919 -**Total accumulated precipitation comparison with 10-year ARI threshold**,ACM_10YARI_EXCEEDANCE,GWLOWS,920 -**1h precipitation comparison with 100-year ARI threshold**,1H_100YARI_EXCEEDANCE,GWLOWS,921 -**Total accumulated precipitation comparison with 100-year ARI threshold**,ACM_100YARI_EXCEEDANCE,GWLOWS,922 +Radar reflectivity at -10C,REFD_ON_ISOTHERMAL,REFD,912 +1h precipitation comparison to Flash Flood Guidance (FFG) thresholds,1H_FFG_EXCEEDANCE,FFLDRO,913 +Total accumulated precipitation comparison to FFG thresholds,ACM_FFG_EXCEEDANCE,FFLDRO,914 +1h precipitation comparison with 2-year Average Recurrence Interval (ARI) threshold,1H_2YARI_EXCEEDANCE,GWLOWS,915 +Total accumulated precipitation comparison with 2-year ARI threshold,ACM_2YARI_EXCEEDANCE,GWLOWS,916 +1h precipitation comparison with 5-year ARI threshold,1H_5YARI_EXCEEDANCE,GWLOWS,917 +Total accumulated precipitation comparison with 5-year ARI threshold,ACM_5YARI_EXCEEDANCE,GWLOWS,918 +1h precipitation comparison with 10-year ARI threshold,1H_10YARI_EXCEEDANCE,GWLOWS,919 +Total accumulated precipitation comparison with 10-year ARI threshold,ACM_10YARI_EXCEEDANCE,GWLOWS,920 +1h precipitation comparison with 100-year ARI threshold,1H_100YARI_EXCEEDANCE,GWLOWS,921 +Total accumulated precipitation comparison with 100-year ARI threshold,ACM_100YARI_EXCEEDANCE,GWLOWS,922 Simulated GOES 16 band 7 brightness temperature,SBTA167_ON_TOP_OF_ATMOS,SBTA167,927 Simulated GOES 16 band 8 brightness temperature,SBTA168_ON_TOP_OF_ATMOS,SBTA168,928 Simulated GOES 16 band 9 brightness temperature,SBTA169_ON_TOP_OF_ATMOS,SBTA169,929 @@ -802,14 +802,14 @@ Simulated GOES 17 band 13 brightness temperature,SBTA1713_ON_TOP_OF_ATMOS,SBTA17 Simulated GOES 17 band 14 brightness temperature,SBTA1714_ON_TOP_OF_ATMOS,SBTA1714,944 Simulated GOES 17 band 15 brightness temperature,SBTA1715_ON_TOP_OF_ATMOS,SBTA1715,945 Simulated GOES 17 band 16 brightness temperature,SBTA1716_ON_TOP_OF_ATMOS,SBTA1716,946 -**CAPE on 0-3 km above ground**,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 -**CIN on 0-3 km above ground**,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 -**LFC height**,HGT_ON_LFC,HGT,952 -**Effective storm relative helicity**,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 -**Downdraft CAPE**,DOWNWARD_CAPE,DCAPE,954 -**Dendritic layer depth**,DENDRITIC_LAYER_DEPTH,LAYTH,955 -**Enhanced stretching potential**,ENHANCED_STRETCHING_POTENTIAL,ESP,956 -**Critical angle**,CRITICAL_ANGLE,DCAPE,957 +CAPE on 0-3 km above ground,CAPE_ON_0_3KM_ABOVE_GRND,CAPE,950 +CIN on 0-3 km above ground,CIN_ON_0_3KM_ABOVE_GRND,CIN,951 +Level of free convection (LFC) height,HGT_ON_LFC,HGT,952 +Effective storm relative helicity,EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND,EFHL,953 +Downdraft CAPE,DOWNWARD_CAPE,DCAPE,954 +Dendritic layer depth,DENDRITIC_LAYER_DEPTH,LAYTH,955 +Enhanced stretching potential,ENHANCED_STRETCHING_POTENTIAL,ESP,956 +Critical angle,CRITICAL_ANGLE,DCAPE,957 Simulated GOES R band 7 brightness temperature,SBTAGR7_ON_TOP_OF_ATMOS,SBTAGR7,958 Simulated GOES R band 8 brightness temperature,SBTAGR8_ON_TOP_OF_ATMOS,SBTAGR8,959 Simulated GOES R band 9 brightness temperature,SBTAGR9_ON_TOP_OF_ATMOS,SBTAGR9,960 @@ -820,7 +820,7 @@ Simulated GOES R band 13 brightness temperature,SBTAGR13_ON_TOP_OF_ATMOS,SBTAGR1 Simulated GOES R band 14 brightness temperature,SBTAGR14_ON_TOP_OF_ATMOS,SBTAGR14,965 Simulated GOES R band 15 brightness temperature,SBTAGR15_ON_TOP_OF_ATMOS,SBTAGR15,966 Simulated GOES R band 16 brightness temperature,SBTAGR16_ON_TOP_OF_ATMOS,SBTAGR16,967 -**Sea ice skin temperature**,ICETMP_ON_SURFACE,ICETMP,968 +Sea ice skin temperature,ICETMP_ON_SURFACE,ICETMP,968 Simulated Himawari-8 band 7 brightness temperature,SBTAHI7_ON_TOP_OF_ATMOS,SBTAHI7,969 Simulated Himawari-8 band 8 brightness temperature,SBTAHI8_ON_TOP_OF_ATMOS,SBTAHI8,970 Simulated Himawari-8 band 9 brightness temperature,SBTAHI9_ON_TOP_OF_ATMOS,SBTAHI9,971 @@ -831,38 +831,38 @@ Simulated Himawari-8 band 13 brightness temperature,SBTAHI13_ON_TOP_OF_ATMOS,SBT Simulated Himawari-8 band 14 brightness temperature,SBTAHI14_ON_TOP_OF_ATMOS,SBTAHI14,976 Simulated Himawari-8 band 15 brightness temperature,SBTAHI15_ON_TOP_OF_ATMOS,SBTAHI15,977 Simulated Himawari-8 band 16 brightness temperature,SBTAHI16_ON_TOP_OF_ATMOS,SBTAHI16,978 -**Effective surface height on effective layer bottom (m)**,EFSH_ON_EFBL,EFSH,979 -**Effective surface height on effective layer top (m)**,EFSH_ON_EFTL,EFSH,980 -**Temperature at EL top**,ELMELT_ON_EFTL,ELMELT,982 -**U-inflow based to 50% EL shear vector**,UESH_ON_EFL,UESH,983 -**V-inflow based to 50% EL shear vector**,VESH_ON_EFL,VESH,984 -**Inflow based (ESFC) to (50%) EL shear magnitude**,ESHR_ON_EFL,ESHR,985 -**U-component Bunkers effective right motion**,UEID_ON_EFL,UEID,986 -**V-component Bunkers effective right motion**,VEID_ON_EFL,VEID,987 -**Effective layer helicity**,E3KH_ON_EFL,E3KH,988 -**Effective layer significant tornado parameter with CIN**,STPC_ON_EFL,STPC,989 -**Fixed layer tornado parameter**,SIGT_ON_EFL,SIGT,990 -**Effective layer supercell composite parameter**,SCCP_ON_EFL,SCCP,991 -**Mixed Layer (100 mb) virtual LFC**,MLFC_ON_EFL,MLFC,992 -**Significant hail parameter**,SIGH_ON_EFL,SIGH,993 -**Average ozone concentration on model surface**,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 -**Average PM25 on model surface**,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 -**Land fraction**,LAND_FRAC,LANDFRC,996 -**Instantaneous precipitation advected heat flux**,INST_PREC_ADVEC_HEAT,PAHFLX,997 -**Water storage in aquifer**,WATER_AQUIFER,WATERSA,998 -**Accumulated evaporation of intercepted water**,ACM_EIWATER_ON_SURFACE,EIWATER,999 -**Accumulated plant transpiration on surface**,ACM_PLANTTR_ON_SURFACE,PLANTTR,1000 -**Accumulated soil surface evaporation**,ACM_SOILSE_ON_SURFACE,SOILSE,1001 -**Average precipitation advected heat flux**,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 -**Bucket freezing rain on surface**,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 -**Accumulated snowfall on surface**,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 -**Bucket snowfall on surface**,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 -**Snow density solid-liquid ratio on surface**,SDEN_ON_SURFACE,SDEN,1006 -**Icing probability on flight levels**,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 -**Supercooled large droplet icing on flight levels**,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 -**Icing severity category on flight levels**,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 -**WMO icing severity category on flight levels**,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 -**Total column coarse articulate matter (PM)**,COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 -**Coarse particulate matter on model surface**,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 -**Coarse particulate matter on pressure surface**,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 -**Coarse particulate matter at 8m above ground**,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 \ No newline at end of file +Effective surface height on effective layer bottom (m),EFSH_ON_EFBL,EFSH,979 +Effective surface height on effective layer top (m),EFSH_ON_EFTL,EFSH,980 +Equilibrium temperature on effective layer (EL) top,ELMELT_ON_EFTL,ELMELT,982 +U-inflow based to 50% EL shear vector,UESH_ON_EFL,UESH,983 +V-inflow based to 50% EL shear vector,VESH_ON_EFL,VESH,984 +Inflow based (ESFC) to (50%) EL shear magnitude,ESHR_ON_EFL,ESHR,985 +U-component Bunkers effective right motion,UEID_ON_EFL,UEID,986 +V-component Bunkers effective right motion,VEID_ON_EFL,VEID,987 +Effective layer helicity,E3KH_ON_EFL,E3KH,988 +Effective layer significant tornado parameter with CIN,STPC_ON_EFL,STPC,989 +Fixed layer tornado parameter,SIGT_ON_EFL,SIGT,990 +Effective layer supercell composite parameter,SCCP_ON_EFL,SCCP,991 +Mixed Layer (100 mb) virtual LFC,MLFC_ON_EFL,MLFC,992 +Significant hail parameter,SIGH_ON_EFL,SIGH,993 +Average ozone concentration on model surface,AVE_OZCON_ON_HYBRID_LVL,OZCON,994 +Average particulate matter 2.5 (PM25) on model surface,AVE_PM25TOT_ON_HYBRID_LVL,PMTF,995 +Land fraction,LAND_FRAC,LANDFRC,996 +Instantaneous precipitation advected heat flux,INST_PREC_ADVEC_HEAT,PAHFLX,997 +Water storage in aquifer,WATER_AQUIFER,WATERSA,998 +Accumulated evaporation of intercepted water,ACM_EIWATER_ON_SURFACE,EIWATER,999 +Accumulated plant transpiration on surface,ACM_PLANTTR_ON_SURFACE,PLANTTR,1000 +Accumulated soil surface evaporation,ACM_SOILSE_ON_SURFACE,SOILSE,1001 +Average precipitation advected heat flux,AVE_PREC_ADVEC_HEAT,PAHFLX,1002 +Bucket freezing rain on surface,BUCKET_FRAIN_ON_SURFACE,FRZR,1003 +Accumulated snowfall on surface,ACM_SNOWFALL_ON_SURFACE,TSNOWP,1004 +Bucket snowfall on surface,BUCKET_SNOWFALL_ON_SURFACE,TSNOWP,1005 +Snow density solid-liquid ratio on surface,SDEN_ON_SURFACE,SDEN,1006 +Icing probability on flight levels,ICE_PROB_IFI_FLIGHT_LEVEL,ICPRB,1007 +Supercooled large droplet icing on flight levels,SLD_IFI_FLIGHT_LEVEL,SIPD,1008 +Icing severity category on flight levels,ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICSEV,1009 +WMO icing severity category on flight levels,WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL,ICESEV,1010 +Total column coarse particulate matter (PM),COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR,COLMD,1011 +Coarse particulate matter on model surface,COARSEPM_ON_HYBRID_LVL,MASSDEN,1012 +Coarse particulate matter on pressure surface,COARSEPM_ON_ISOBARIC_SFC,MASSDEN,1013 +Coarse particulate matter at 8m above ground,COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m,MASSDEN,1014 \ No newline at end of file From bafaebe666b123eae821985fa01135ab1977776c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 3 Jul 2023 12:42:26 -0400 Subject: [PATCH 43/44] update defs for 909-911; remove ssmis fields --- docs/UPP_GRIB2_Table_byID.csv | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/docs/UPP_GRIB2_Table_byID.csv b/docs/UPP_GRIB2_Table_byID.csv index 0f63d2c1b..dd09e3d39 100644 --- a/docs/UPP_GRIB2_Table_byID.csv +++ b/docs/UPP_GRIB2_Table_byID.csv @@ -757,20 +757,13 @@ GSD Maximum hail diameter at k=1,GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER,HAI GSD Experimental cloud base pressure,GSD_PRES1_ON_CLOUD_BASE,PRES,798 GSD maximum cloud fraction in (PBL + 1 km),TCDC_ON_BOUND_LYR,TCDC,799 Shelter level apparent temperature,APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m,APTMP,808 -SSMIS F16 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,818 -Simulated Brightness Temperature for SSMIS-F17 Channel 15,SSMS1715_ON_TOP_OF_ATMOS,SSMS1715,825 -Simulated Brightness Temperature for SSMIS-F17 Channel 16,SSMS1716_ON_TOP_OF_ATMOS,SSMS1716,826 -Simulated Brightness Temperature for SSMIS-F17 Channel 17,SSMS1717_ON_TOP_OF_ATMOS,SSMS1717,827 -Simulated Brightness Temperature for SSMIS-F17 Channel 18,SSMS1718_ON_TOP_OF_ATMOS,SSMS1718,828 -SSMIS F18 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,832 -SSMIS F20 (183H 19H 19V 37H 37V 85H 85V),Not currently available for grib2,NA,846 Simulated GOES 13 channel 2 brightness temperature with satellite angle correction,Not currently available for grib2,NA,868 Simulated GOES 15 channel 5 brightness temperature with satellite angle correction,Not currently available for grib2,NA,872 Seviri brightness temperature channels 5-11,Not currently available for grib2,NA,876 Hourly max relative vorticity on hybrid level 1,GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1,RELV,890 -Virtual temperature on model surfaces,Not currently available for grib2,NA,909 -Virtual temperature on pressure surfaces,Not currently available for grib2,NA,910 -Virtual temperature on flight levels,Not currently available for grib2,NA,911 +Virtual temperature on model surfaces,VTMP_ON_HYBRID_LVL,VTMP,909 +Virtual temperature on pressure surfaces,VTMP_ON_ISOBARIC_SFC,VTMP,910 +Virtual temperature on flight levels,VTMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL,VTMP,911 Radar reflectivity at -10C,REFD_ON_ISOTHERMAL,REFD,912 1h precipitation comparison to Flash Flood Guidance (FFG) thresholds,1H_FFG_EXCEEDANCE,FFLDRO,913 Total accumulated precipitation comparison to FFG thresholds,ACM_FFG_EXCEEDANCE,FFLDRO,914 From b7c19c98b52b1952662bea288f1782d195fb6547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgspetro-NOAA=E2=80=9D?= Date: Mon, 3 Jul 2023 12:49:24 -0400 Subject: [PATCH 44/44] add 909, 910, and 911 to post_avbflds --- parm/post_avblflds.xml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/parm/post_avblflds.xml b/parm/post_avblflds.xml index 1e910e4c1..7c1e8fbcd 100755 --- a/parm/post_avblflds.xml +++ b/parm/post_avblflds.xml @@ -7465,6 +7465,33 @@ 5.0 + + 909 + VTMP_ON_HYBRID_LVL + Virtual temperature on model surfaces + VTMP + hybrid_lvl + 4.0 + + + + 910 + VTMP_ON_ISOBARIC_SFC + Virtual temperature on pressure surfaces + VTMP + isobaric_sfc + 4.0 + + + + 911 + VTMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + Virtual temperature on flight levels + VTMP + spec_alt_above_mean_sea_lvl + 4.0 + + 912 REFD_ON_ISOTHERMAL