A major source of error in ADCIRC can come from the accuracy and representation of the wind and pressure fields.
In order to allow ADCIRC access to high quality and efficiently stored inputs the following features were added to the existing NWS12 functionality in order to develop the newer NetCDF version (NWS13).
- Moving storm-centered grids
- Grids that can change size
- Curvilinear grids
- Arbitrary # of grid overlays
- New ADCIRC moving interpolation code
- Arbitrary & irregular timesteps
Some future-proofing attempts:
- Multi-resolution representation of tropical cyclone wind fields
- Be able to introduce additional meteorological parameters using the same format/NWS input
- Possibility to include wind stresses?
- Alternative reference heights?
- Ice information?
- Rainfall?

Example of grid domains for multiple independent wind/pressure overlays, including storm-following
Notes regarding the format #
- Decoupling the yi/xi dimensions from lat/lon allows lat and lon to be 2-d “mesh-grid” arrays
- Regular grids and Curvilinear array encoding supported
- Support for non-evenly spaced grids as long as they can be expressed in a 2-d “mesh-grid”
- Support for grids that change spatial resolution and/or position in time
- as long as yi/xi array dimensions are consistent
- Each group (sub-grid/overlay) independently define timesteps including start and stop times
- NetCDF-CF Encoding supported fill value (and NetCDF packing/compression by scale/offset), and IEEE NaN floats supported
NetCDF File Schema #
This description assumes some familiarity with NetCDF, HDF or other similar self-describing binary file formats, and in particular features like “groups” available in HDF5 and NetCDF4.
Understanding of NetCDF conventions like Climate Forecast (CF) may also be helpful. For more information about NetCDF please visit the links below.
- https://www.unidata.ucar.edu/software/netcdf/
- https://www.hdfgroup.org/
- https://cfconventions.org/
- https://github.com/Unidata/netcdf4-python
- https://github.com/pydata/xarray
Conventions for NWS13 #
Overview of a file’s contents
- Group(s) – 1 group per grid or overlay
- Variables – U10/V10, PSFC
- Dimensions – time, yi, xi
- Attributes – grid rank/priority
Global Attributes #
group_order
: space separated list of group names reflecting their appropriate rank/orderconventions
: should include “OWI-NWS13“ (Climate Forecast conventions (CF) seemingly don’t support NC groups)
Group Attributes #
rank
: integer representing the order of overlay/precedence in application to nodes
Group Dimensions #
time
– length of time dimensionyi
– number of rows in spatial grid descriptionxi
– number of columns in spatial grid description
Group Variables #
U10
(time, yi, xi), U-component of 10m WS (m/s)V10
(time, yi, xi), V-component of 10m WS (m/s)PSFC
(time, yi, xi), Surface Pressure (mb)lon
(yi, xi) or (time, yi, xi), Longitude in Decimal Degreeslat
(yi, xi) or (time, yi, xi), Latitude in Decimal Degreestime
(time), Datetime-number with units of “minutes from YYYY-mm-dd HH:MM:SS”clon
andclat
(time), optional storm center coordinates for Powell drag
These parameters are specified above as required name
(array dimensions), description including required units if applicable.
Example ncdump -h
output CDM
#
|
|