varinfo.yaml

From WikiROMS
Revision as of 17:12, 29 April 2022 by Arango (talk | contribs)
(change visibility) (diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
ROMS I/O Metadata File: varinfo.yaml


The varinfo.yaml file specifies ROMS input and output fields metadata. Starting svn revision -r 1902 released on March 1, 2022, the ROMS metadata is managed with a YAML file, and the regular text file varinfo.dat is deprecated. The YAML files are simple, easy to follow, elegant, portable, and expandable. ROMS can now process YAML files with its parser module, yaml_parser.F. Therefore, there is no need to use third-party YAML parsers. Basically, varinfo.yaml has the following structure:

svn_repository: $URL$
convention: CF 1.10

#shortwave: &SWRAD swrad_daily
shortwave: &SWRAD swrad

metadata:

- variable: temp # Input/Output
standard_name: sea_water_potential_temperature
long_name: potential temperature
units: Celsius # [Celsius]
field: temperature
time: ocean_time
index_code: idTvar(itemp)
type: r3dvar
add_offset: 0.0d0
scale: 1.0d0

- variable: *SWRAD # Input/Output
standard_name: net_downward_shortwave_flux_at_sea_water_surface
long_name: solar shortwave radiation flux
units: watt meter-2 # Input: [Watt/m2]
field: shortwave radiation # [Celsius m/s]
time: srf_time # Output: [Watt/m2]
index_code: idSrad
type: r2dvar
add_offset: 0.0d0
scale: 1.0d0

The field key and value pair in the YAML blocking list is as follows:

  • variable: is the variable name (shortname) as defined in input/output NetCDF files. If you have a forcing NetCDF file that uses a different variable name, you don’t need to rename the variable in the forcing file. Just change it value in varinfo.yaml.
  • standard_name: is the variable standard_name NetCDF attribute, which follows CF conventions. A list of all standard_name attribute are shown below.
  • long_name: is the variable long_name NetCDF attribute.
  • units: is the variable units NetCDF attribute. It is a tricky key/value pair in ROMS. In output NetCDF files, it describes the units of output attribute and data.
  • field: is the variable field NetCDF attribute. It is a user-customizable attribute that can be used to create labels during post-processing for plotting, visualization, and so on. It can be in any language represented by the 255 ASCII sets of characters, letters, symbols, and signs).
  • time: is the variable associated time NetCDF attribute, if record dependency. If your NetCDF file uses a different name from the default you don’t need to rename it in the NetCDF file, you can modify varinfo.yaml. However, it is not necessary nowadays because ROMS inquiry.F module search for the variable time attribute internally, and use that time variable during the processing. In such case, the value in varinfo.yaml is ignored and overwritten.
  • index_code is an internal and unique ROMS descriptor index for the information arrays. You cannot change it value because it used internally in ROMS to manage metadata.
  • type: is the variable staggered Arakawa C-grid type:


C-grid Type Description
nulvar non-grided variable
p2dvar 2D Ψ-variable, grid cell corners
r2dvar 2D ρ-variable, grid cell center
u2dvar 2D U-variable, grid cell x-edges
v2dvar 2D V-variable, grid cell y-edges
p3dvar 3D Ψ-variable, grid cell corners
r3dvar 3D ρ-variable, grid cell center
u3dvar 3D U-variable, grid cell x-edges
v3dvar 3D V-variable, grid cell y-edges
w3dvar 3D W-variable, grid cell y-edges
b3dvar 3D BED-sediment variable, grid cell center
l3dvar 3D spectral light variable, grid cell center
l4dvar 4D spectral light variable, grid cell center


  • add_offset is the value to be added to input NetCDF data. Currently, not used.
  • scale is the factor to multiply input data for units conversion purposes.


YAML allows alias and anchor to avoid repetition. However, here is used to select the desired option for input shortwave radiation data. If processing daily values, the input variable is specified by the anchor &SWRAD and its value swrad_daily is used to replace the alias token *SWRAD. In this case, the DIURNAL_SRFLUX option needs to be activated in ROMS to modulate the shortwave radiation by the local daily cycle at each timestep. Notice, that this strategy is commented by default. In YAML, single or multiple line comments start with a hash #. Also, comment after a key/value pair is allowed. All comments are skipped during processing.

Input Fields Scaling

For variables that are used on input only, such as meteorological data, we have assumed a convention that the units keyword describe the units that you have in your NetCDF file. It does not strictly describe the units ROMS assumes internally (though this is generally true if the scale factor is 1.0d0). The scale value can be used to make ROMS modify the data during input to be consistent with ROMS internal units without the need to re-create a new forcing file with adjusted units.

For example, ROMS assumes surface air pressure is given in millibars. The COARE bulk formulae in bulk_flux.F demand this. If your input file is in Pascals you can convert these using the scale entry. You would set its to 0.01d0 because 1 Pascal = 0.01 millibar. In general, the rule is:

ROMS_internal_units = (your_units) x (scale) + add_offset

If you change the scale factor in your varinfo.yaml, We recommend you change the units string to be consistent with your data file, and insert a comment to remind yourself what you’ve done in using a new scale factor. You can append a comment using a hash # after any entry in varinfo.yaml.

Here is a table of common conversions that might be required:

Index Code Variable Long Name Required Units Other Units Add Offset Scale
idPair Pair surface air pressure millibar Pascal 0.0d0 0.01d0
idTair Tair surface air temperature Celsius Kelvin -273.15d0 1.0d0
idQair Qair surface air relative humidity Fraction Percent 0.0d0 0.01d0
idCfrac cloud cloud fraction Fraction Percent 0.0d0 0.01d0
idSrad swrad solar shortwave radiation flux Watts meter-2 Joule second-1 meter-2 0.0d0 1.0d0
idrain rain precipitation flux kilogram m-2 second-1 meter second-1 0.0d0 1/rhow (0.001d0 m3/kg)
idsfwf swflux surface net freshwater flux (E-P) meter second-1 meter second-1 0.0d0 1.0d0
idUsms sustr surface u-momentum stress newton meter-2 dyne centimeter-2 0.0d0 0.1d0



Input and output variables

Some field metadata described in varinfo.yaml are both input and output variables. The model state variables zeta, ubar, vbar, u, v, temp, salt, and passive tracers are obviously in this category. Also, certain surface flux variables can be either input forcing data, or output results computed internally.

For example, in some ROMS configurations when BULK_FLUX is activated, surface u-stresses (sustr and svstr) are output fields computed internally in the surface boundary layer formulation. Such fields are written to the output history NetCDF file if Hout(idUsms) = T and Hout(idVsms) = T in the roms.in file. Otherwise, in other configurations sustr and svstr are input that drives the surface momentum forcing directly.

The scale factor is only used on input. It is ignored on output and data are always written in default ROMS internal units with a few exceptions: namely, heat fluxes and surface and bottom stresses. The output scale factors applied can be seen in the source code (e.g., wrt_his.F). This re-scaling is made to give geophysically meaningful units of Watt/m2 for heat, and N/m2 (or Pa) for stresses.

CAUTION: You must be very careful here if you start tinkering with varinfo.yaml entries for mixed I/O variables.

For example, if you intend surface wind stress, sustr (taux), as input but have a data file in dynes/cm2 (equals to 0.1 N/m2 or Pa), you need to convert these to ROMS internal units of kinematic stress taux/rho0 of m2/s2. The scale factor is 0.1/1025 = 9.8x10-5 where the numerator 0.1 converts dynes/cm2 to Pa and the reference density of seawater is 1025 kg/m3.

The conversion of momentum stress (in Pa) and heat flux (in Watts/m2) to kinematic units (of m2/s2 and degC m/s, respectively) is why the report of Min/Max values sent to standard output shows different values to those you have in your input NetCDF file. You should always carefully inspect the range of data values read when working with a new model set-up or new forcing netCDF files to ensure that the data you are reading is what you expect.

If you intend sustr to be an output you should keep the units string as newton meter-2 because this string will be the units attribute in the output NetCDF file. The scale value is irrelevant because it will not be applied on output. You can’t use it to alter the units of the output.

If you specify sustr as input and output (which you can do: ROMS will read forcing sustr from a forcing NetCDF file and write sustr to history, quicksave, averages, and stations.) even if you do a scale factor conversion you’d better keep the scale keyword units as Newton meter-2 so that the output files have the correct metadata in the NetCDF attributes.

Surface fluxes of salinity and passive tracers are always written in units of tracer_units m/s. It is not converted to an equivalent freshwater flux. The variable swflux is an input variable only. You can do the conversion yourself if you wish using a suitable surface salinity value. We do not do this conversion within ROMS to perform a tracer budget analysis. You would want fluxes in tracer units.

However, if you are using the BULK_FLUXES option, you can have the computed evaporation rate (in kg m/s) saved to the output file, and perform a freshwater budget calculation accordingly.

We don’t recommend mixing the units of state variables on input and output. A user could give an initial condition file with sea level zeta in centimeters by setting the scale to 0.01. The output history, averages, restart, and other files will nevertheless be written with zeta in units of meters. So you would want the units keyword string to reflect this. The risk here is that if you subsequently restart the model from one of these files, you would need to remember to re-set the scale for zeta in varinfo.yaml.

Note that if you specify stresses or heat fluxes with analytical functions, they must be converted to kinematic units within analytical.F. That is, stresses in Pa must be divided by rho0, and heat fluxes by rho0*cp.

A nifty varinfo.yaml trick

The variable keyword does not have to be unique. You can direct more than one index_code identifier to read the data from the same NetCDF variable in the input files. The scale value allow you to apply different scaling to each.

For example, suppose you wish to specify a constant value for the open boundary values for biological tracers. Rather than make a NetCDF file with data for all of NO3_west, NH4_west, phyt_west, and etc, you could make a NetCDF file with a single variable named, say ONES_west, which is filled with nothing but 1.0 for all time coordinate values.

In varinfo.yaml, there must still be one entry for each unique index_code but you can have each entry point to the same ONES_west data. Assign the value you want for each variable in the scale entry. This scale will be multiplied by the 1.0 on input to set the open boundary values.

- variable: ONES_west # Input
standard_name: mole_concentration_of_ammonium_expressed_as_nitrogen_in_sea_water
long_name: ammonium western boundary condition
units: millimole_nitrogen meter-3 # [millimole/m3]
field: NH4 western-boundary
time: NH4_time
index_code: idTbry(iwest,iNH4_)
type: nulvar
add_offset: 0.0d0
scale: 0.1d0 # make all values equal to 0.1 millimole meter-3

- variable: ONES_west # Input
standard_name: mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water
long_name: phytoplankton western boundary condition
units: millimole_nitrogen meter-3 # [millimole/m3]
field: phytoplankton western-boundary
time: phyt_time
index_code: idTbry(iwest,iPhyt)
type: nulvar
add_offset: 0.0d0
scale: 0.08d0 # make all values equal to 0.08 millimole meter-3

Metadata: standard_name

The following table shows the standard_name attributes that are used in ROMS output NetCDF files. They follow CF conventions. However, we needed to create lots of them because are not available in the CF tables but followed their established syntax.

Variable standard_name
active_layer_thickness sea_bed_active_layer_thickness
aice sea_ice_area_fraction
AKk vertical_diffusion_coefficient_of_turbulent_kinetic_energy_of_sea_water
AKp vertical_diffusion_coefficient_of_turbulent_length_scale_of_sea_water
AKs vertical_diffusion_coefficient_of_salinity_in_sea_water
AKt vertical_diffusion_coefficient_of_temperature_in_sea_water
AKv vertical_viscosity_coefficient_of_sea_water
alkalinity sea_water_alkalinity_expressed_as_mole_equivalent
alkalinity_east sea_water_alkalinity_expressed_as_mole_equivalent
alkalinity_west sea_water_alkalinity_expressed_as_mole_equivalent
alkalinity_north sea_water_alkalinity_expressed_as_mole_equivalent
alkalinity_south sea_water_alkalinity_expressed_as_mole_equivalent
Bac_C<n> mole_concentration_of_bateria_expressed_as_carbon_group_<n>_in_sea_water
Bac_F<n> mole_concentration_of_bateria_expressed_as_iron_group_<n>_in_sea_water
Bac_N<n> mole_concentration_of_bateria_expressed_as_nitrogen_group_<n>_in_sea_water
Bac_P<n> mole_concentration_of_bateria_expressed_as_phosphorus_group_<n>_in_sea_water
bath sea_floor_depth
bedload_Umud_<nn> sea_bottom_bedload_x_flux_of_cohesive_sediment_<nn>
bedload_Usand_<nn> sea_bottom_bedload_x_flux_of_noncohesive_sediment_<nn>
bedload_Vmud_<nn> sea_bottom_bedload_y_flux_of_cohesive_sediment_<nn>
bedload_Vsand_<nn> sea_bottom_bedload_y_flux_of_noncohesive_sediment_<nn>
bed_age sea_bed_sediment_layer_age
bed_biodiff sea_bottom_biodiffusivity_in_bed_layer
bed_porosity sea_bed_sediment_layer_porosity
bed_tau_crit sea_bottom_critical_shields_stress_in_bed_layer
bed_thickness sea_bed_sediment_layer_thickness
bed_wave_amp sea_bottom_wave_excursion_amplitude
BgError_value background_error_standard_deviation_at_observation_locations
BgThresh_value number_of_standard_deviation_threshold_for_background_quality_control
bhflux sea_bottom_upward_heat_flux
bustr sea_bottom_upward_x_stress
bustrc sea_bottom_upward_x_stress_due_to_current
bustrcwmax maximum_sea_bottom_upward_x_stress_due_to_waves_and_current
bustrw sea_bottom_upward_x_stress_due_to_waves
bvstr sea_bottom_upward_y_stress
bvstrc sea_bottom_upward_y_stress_due_to_current
bvstrcwmax maximum_sea_bottom_upward_y_stress_due_to_waves_and_current
bvstrw sea_bottom_upward_y_stress_due_to_waves
bwflux sea_bottom_upward_water_flux
CDC_absorption sea_water_color_degradational_matter_light_optical_absorption
cdd momentum_shear_stress_transfer_coefficient_from_file
cdm momentum_shear_stress_transfer_coefficient_from_model
CDM_C<n> mole_concentration_of_color_degradational_matter_expressed_as_carbon_group_<n>_in_sea_water
ced latent_heat_transfer_coefficient_from_file
cem latent_heat_transfer_coefficient_from_file
chd sensible_heat_transfer_coefficient_from_file
chlorophyll mole_concentration_of_chlorophyll_in_sea_water
chlo_east mole_concentration_of_chlorophyll_in_sea_water
chlo_west mole_concentration_of_chlorophyll_in_sea_water
chlo_north mole_concentration_of_chlorophyll_in_sea_water
chlo_south mole_concentration_of_chlorophyll_in_sea_water
chm sensible_heat_transfer_coefficient_from_model
chu_iw sea_ice_and_sea_water_transfer_coefficient
cloud cloud_area_fraction
CO2_airsea suface_mole_concentration_flux_of_carbon_dioxide_between_air_and_sea_water
cohesive_behavior sea_bottom_cohesive_sediment_behavior
CosW cosine_of_tidal_period_times_time
CosWCosW square_of_cosine_of_tidal_period_times_time
cyst_bottom cell_concentration_of_dinoflagellate_bottom_cyst_in_sea_water
denitrification mole_concentration_of_denitrification_flux_expressed_as_nitrogen_in_sea_water
dep_net sea_bed_sediement_erosion_or_deposition_thickness
detrital_absorption sea_water_detrital_light_optical_absorption
detritus mole_concentration_of_detritus_expressed_as_nitrogen_in_sea_water
detritus_east mole_concentration_of_detritus_expressed_as_nitrogen_in_sea_water
detritus_west mole_concentration_of_detritus_expressed_as_nitrogen_in_sea_water
detritus_north mole_concentration_of_detritus_expressed_as_nitrogen_in_sea_water
detritus_south mole_concentration_of_detritus_expressed_as_nitrogen_in_sea_water
diatom mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water
diatom_east mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water
diatom_west mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water
diatom_north mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water
diatom_south mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water
DIC mole_concentration_of_dissolved_inorganic_carbon_in_sea_water
dinoflagellate cell_concentration_of_dinoflagellate_in_sea_water
dinoflagellate_east mole_concentration_of_dinoflagellate_in_sea_water
dinoflagellate_west mole_concentration_of_dinoflagellate_in_sea_water
dinoflagellate_north mole_concentration_of_dinoflagellate_in_sea_water
dinoflagellate_south mole_concentration_of_dinoflagellate_in_sea_water
DIN_obs mole_concentration_of_dissolved_inorganic_nutrient
dmix_offset sea_bottom_erodibility_profile_offset
dmix_slope sea_bottom_erodibility_profile_slope
dmix_time sea_bottom_erodibility_profile_time_scale
DOM_C<n> mole_concentration_of_dissolved_organic_matter_expressed_as_carbon_group_<n>_in_sea_water
DOM_N<n> mole_concentration_of_dissolved_organic_matter_expressed_as_nitrogen_group_<n>_in_sea_water
DOM_P<n> mole_concentration_of_dissolved_organic_matter_expressed_as_phosphorus_group_<n>_in_sea_water
DON mole_concentration_of_dissolved_organic_nitrogen_in_sea_water
DON_east mole_concentration_of_dissolved_organic_nitrogen_in_sea_water
DON_west mole_concentration_of_dissolved_organic_nitrogen_in_sea_water
DON_north mole_concentration_of_dissolved_organic_nitrogen_in_sea_water
DON_south mole_concentration_of_dissolved_organic_nitrogen_in_sea_water
downward_irradiance mole_concentration_of_downward_spectral_light_irradiance_in_sea_water
dQdSST derivative_of_surface_downward_heat_flux_wrt_sea_surface_temperature
DU_avg1 sea_water_time_average_of_barotropic_x_velocity_flux
DU_avg2 sea_water_correct_barotropic_x_velocity_flux_for_coupling
DV_avg1 sea_water_time_average_of_barotropic_y_velocity_flux
DV_avg2 sea_water_correct_barotropic_y_velocity_flux_for_coupling
Dwave sea_surface_wind_wave_to_direction
dye_<nn> mass_concentration_of_dye_<nn>_in_sea_water
dye_east_<nn> mass_concentration_of_dye_<nn>_in_sea_water
dye_west_<nn> mass_concentration_of_dye_<nn>_in_sea_water
dye_north_<nn> mass_concentration_of_dye_<nn>_in_sea_water
dye_south_<nn> mass_concentration_of_dye_<nn>_in_sea_water
EminusP surface_upward_water_flux
erosion_stress sea_bottom_sediment_median_critical_erosion_stress
ero_flux sea_bed_sediment_erosion_flux
evaporation water_evaporation_flux_out_of_sea_water
Fec_C<n> mole_concentration_of_fecal_matter_expressed_as_carbon_group_<n>_in_sea_water
Fec_F<n> mole_concentration_of_fecal_matter_expressed_as_iron_group_<n>_in_sea_water
Fec_N<n> mole_concentration_of_fecal_matter_expressed_as_nitrogen_group_<n>_in_sea_water
Fec_P<n> mole_concentration_of_fecal_matter_expressed_as_phosphorus_group_<n>_in_sea_water
Fec_S<n> mole_concentration_of_fecal_matter_expressed_as_silica_group_<n>_in_sea_water
FeO mole_concentration_of_iron_oxide_in_sea_water
ghat_salt nonlocal_transport_of_salinity_in_sea_water
ghat_temp nonlocal_transport_of_temperature_in_sea_water
gls turbulent_mixing_generic_length_of_sea_water
grain_density sea_water_sediment_grain_diameter_density
grain_diameter sea_water_sediment_grain_diameter_size
Hbbl ocean_bottom_boundary_layer_thickness
hice sea_ice_thickness
Hsbl ocean_surface_boundary_layer_thickness
Huon ocean_volume_x_transport
Huon_<tracer> ocean_volume_x_transport_of_<tracer>
Hvom ocean_volume_y_transport
Hvom_<tracer> ocean_volume_y_transport_of_<tracer>
Hwave sea_surface_wind_wave_significant_height
icec sea_ice_concentration
increment data_assimilation_increment
innovation data_assimilation_innovation
iomflx water_flux_out_of_sea_ice_and_sea_water
iron mole_concentration_of_dissolved_iron_in_sea_water
iron_east mole_concentration_of_dissolved_iron_in_sea_water
iron_west mole_concentration_of_dissolved_iron_in_sea_water
iron_north mole_concentration_of_dissolved_iron_in_sea_water
iron_south mole_concentration_of_dissolved_iron_in_sea_water
Kh error_covariance_horizontal_convolution_coefficient
Kv error_covariance_vertical_convolution_coefficient
latent surface_upward_latent_heat_flux
LdeC_east mole_concentration_of_large_detritus_expressed_as_carbon_in_sea_water
LdeC_west mole_concentration_of_large_detritus_expressed_as_carbon_in_sea_water
LdeC_north mole_concentration_of_large_detritus_expressed_as_carbon_in_sea_water
LdeC_south mole_concentration_of_large_detritus_expressed_as_carbon_in_sea_water
LDeN_east mole_concentration_of_large_detritus_expressed_as_nitrogen_in_sea_water
LDeN_west mole_concentration_of_large_detritus_expressed_as_nitrogen_in_sea_water
LDeN_north mole_concentration_of_large_detritus_expressed_as_nitrogen_in_sea_water
LDeN_south mole_concentration_of_large_detritus_expressed_as_nitrogen_in_sea_water
LdetritusC mole_concentration_of_large_detritus_expressed_as_carbon_in_sea_water
LdetritusN mole_concentration_of_large_detritus_expressed_as_nitrogen_in_sea_water
light_attenuation diffuse_light_attenuation_below_sea_surface
light_cosine light_spectral_average_cosine_of_zenith_angle_below_sea_surface
Lscale turbulent_length_scale_due_to_vertical_mixing_of_sea_water
Lwave sea_surface_wind_wave_mean_wavelength
lwrad surface_net_downward_longwave_flux
lwrad_down surface_downward_longwave_flux
M2_NudgeCoef sea_surface_barotropic_current_inverse_nudging_coefficient
M3_NudgeCoef sea_water_current_inverse_nudging_coefficient
mesozooplankton mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water
mesozoo_east mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water
mesozoo_west mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water
mesozoo_north mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water
mesozoo_south mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water
microzooplankton mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water
microzoo_east mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water
microzoo_west mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water
microzoo_north mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water
microzoo_south mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water
misfit_final final_model-observation_misfit
misfit_initial initial_model-observation_misfit
mudfrac_<nn> sea_bottom_cohesive_sediment_<nn>_fraction
mudmass_<nn> sea_bottom_cohesive_sediment_<nn>_mass
mud_<nn> mass_concentration_of_suspended_mud_<nn>_in_sea_water
mud_east_<nn> mass_concentration_of_suspended_mud_<nn>_in_sea_water
mud_west_<nn> mass_concentration_of_suspended_mud_<nn>_in_sea_water
mud_north_<nn> mass_concentration_of_suspended_mud_<nn>_in_sea_water
mud_south_<nn> mass_concentration_of_suspended_mud_<nn>_in_sea_water
nanophytoplankton mole_concentration_of_nanophytoplankton_expressed_as_nitrogen_in_sea_water
nanophy_east mole_concentration_of_nanophytoplankton_expressed_as_nitrogen_in_sea_water
nanophy_west mole_concentration_of_nanophytoplankton_expressed_as_nitrogen_in_sea_water
nanophy_north mole_concentration_of_nanophytoplankton_expressed_as_nitrogen_in_sea_water
nanophy_south mole_concentration_of_nanophytoplankton_expressed_as_nitrogen_in_sea_water
NH4 mole_concentration_of_ammonium_expressed_as_nitrogen_in_sea_water
NH4_east mole_concentration_of_ammonium_expressed_as_nitrogen_in_sea_water
NH4_west mole_concentration_of_ammonium_expressed_as_nitrogen_in_sea_water
NH4_north mole_concentration_of_ammonium_expressed_as_nitrogen_in_sea_water
NH4_south mole_concentration_of_ammonium_expressed_as_nitrogen_in_sea_water
Nitrif_flux mole_concentration_of_denitrification_flux_expressed_as_nitrogen_at_sea_bottom
NLmodel_final final_nonlinear_model_value_at_observation_location
NLmodel_initial initial_nonlinear_model_value_at_observation_location
NLmodel_unvetted unvetted_nonlinear_model_value_at_observation_location
NLmodel_value nonlinear_model_value_at_observation_location_per_outer_loop
NLmodel_value_unvetted unvetted_nonlinear_model_value_at_observation_location_per_outter_loop
NO3 mole_concentration_of_nitrate_expressed_as_nitrogen_in_sea_water
NO3_east mole_concentration_of_nitrate_expressed_as_nitrogen_in_sea_water
NO3_west mole_concentration_of_nitrate_expressed_as_nitrogen_in_sea_water
NO3_north mole_concentration_of_nitrate_expressed_as_nitrogen_in_sea_water
NO3_south mole_concentration_of_nitrate_expressed_as_nitrogen_in_sea_water
NO3_uptake mole_concentration_of_nitrate_uptake_expressed_as_nitrogen_in_sea_water
Nobs number_of_observations_per_survey_time
O2_airsea surface_downward_mole_flux_of_molecular_oxygen
obs_depth depth_of_observation_below_sea_surface
obs_error observation_error_covariance
obs_lat observation_latitude
obs_lon observation_longitude
obs_meta observation_meta_value
obs_provenance observation_provenance
obs_scale observation_quality_control_flag
obs_time observation_time
obs_type observation_type_indentifier_according_to_state_variable
obs_value observation_value
obs_Xgrid observation_grid_cell_fractional_x_location
obs_Ygrid observation_grid_cell_fractional_y_location
obs_Zgrid observation_grid_cell_fractional_z_location
ocean_time time
omega upward_sea_water_omega_velocity
opal mole_concentration_of_particulate_organic_silica_in_sea_water
opal_east mole_concentration_of_particulate_organic_silica_in_sea_water
opal_west mole_concentration_of_particulate_organic_silica_in_sea_water
opal_north mole_concentration_of_particulate_organic_silica_in_sea_water
opal_south mole_concentration_of_particulate_organic_silica_in_sea_water
oxygen mole_concentration_of_dissolved_oxygen_in_sea_water
oxygen_east mole_concentration_of_dissolved_oxygen_in_sea_water
oxygen_west mole_concentration_of_dissolved_oxygen_in_sea_water
oxygen_north mole_concentration_of_dissolved_oxygen_in_sea_water
oxygen_south mole_concentration_of_dissolved_oxygen_in_sea_water
Pair surface_air_pressure
pCO2 partial_pressure_of_carbon_dioxide_in_sea_water
phytFe_east mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water
phytFe_west mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water
phytFe_north mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water
phytFe_south mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water
phytoplankton mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water
phytoplanktonFe mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water
phytoplanktonFe mole_concentration_of_phytoplankton_in_expressed_as_iron_sea_water
phyt_east mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water
phyt_west mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water
phyt_north mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water
phyt_south mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water
Phy_absorption sea_water_phytoplankton_light_optical_absorption
Phy_backscattering sea_water_phytoplankton_light_optical_backscattering
Phy_C<n> mole_concentration_of_phytoplankton_expressed_as_carbon_group_<n>_in_sea_water
Phy_F<n> mole_concentration_of_phytoplankton_expressed_as_iron_group_<n>_in_sea_water
Phy_N<n> mole_concentration_of_phytoplankton_expressed_as_nitrogen_group_<n>_in_sea_water
Phy_P<n> mole_concentration_of_phytoplankton_expressed_as_phosphorus_group_<n>_in_sea_water
Phy_S<n> mole_concentration_of_phytoplankton_expressed_as_silica_group_<n>_in_sea_water
Phy_scattering sea_water_phytoplankton_light_optical_scattering
Pigs_<XY> mass_concentration_of_<X>_pigment_by_<Y>_in_sea_water
Pigs_11 mass_concentration_of_chlorophyll-a_pigment_by_small_diatom_in_sea_water
Pigs_21 mass_concentration_of_chlorophyll-a_pigment_by_large_diatom_in_sea_water
Pigs_31 mass_concentration_of_chlorophyll-a_pigment_by_large_dinoflagellate_in_sea_water
Pigs_41 mass_concentration_of_chlorophyll-a_pigment_by_synechococcus_in_sea_water
Pigs_13 mass_concentration_of_chlorophyll-c_pigment_by_small_diatom_in_sea_water
Pigs_23 mass_concentration_of_chlorophyll-c_pigment_by_large_diatom_in_sea_water
Pigs_33 mass_concentration_of_chlorophyll-c_pigment_by_large_dinoflagellate_in_sea_water
Pigs_14 mass_concentration_of_photosynthetic_carotenoids_pigment_by_small_diatom_in_sea_water
Pigs_24 mass_concentration_of_photosynthetic_carotenoids_pigment_by_large_diatom_in_sea_water
Pigs_34 mass_concentration_of_photosynthetic_carotenoids_pigment_by_large_dinoflagellate_in_sea_water
Pigs_15 mass_concentration_of_photoprotective_carotenoids_pigment_by_small_diatom_in_sea_water
Pigs_25 mass_concentration_of_photoprotective_carotenoids_pigment_by_large_diatom_in_sea_water
Pigs_35 mass_concentration_of_photoprotective_carotenoids_pigment_by_large_dinoflagellate_in_sea_water
Pigs_45 mass_concentration_of_photoprotective_carotenoids_pigment_by_synechococcus_in_sea_water
Pigs_47 mass_concentration_of_high_urobilin_phycoeurythin_carotenoids_pigment_by_synechococcus_in_sea_water
PO4 mole_concentration_of_phosphate_in_sea_water
PO4_east mole_concentration_of_phosphate_in_sea_water
PO4_west mole_concentration_of_phosphate_in_sea_water
PO4_north mole_concentration_of_phosphate_in_sea_water
PO4_south mole_concentration_of_phosphate_in_sea_water
PON mole_concentration_of_particulate_organic_nitrogen_in_sea_water
PON_east mole_concentration_of_particulate_organic_nitrogen_in_sea_water
PON_west mole_concentration_of_particulate_organic_nitrogen_in_sea_water
PON_north mole_concentration_of_particulate_organic_nitrogen_in_sea_water
PON_south mole_concentration_of_particulate_organic_nitrogen_in_sea_water
prate precipitation_flux
pvorticity ocean_potential_vorticity
pvorticity_bar ocean_barotropic_potential_vorticity
Pwave_bot sea_bottom_wind_wave_period
Pwave_top sea_surface_wind_wave_peak_period
Pzooplankton mole_concentration_of_predactor_zooplankton_expressed_as_nitrogen_in_sea_water
Pzoo_east mole_concentration_of_predator_zooplankton_expressed_as_nitrogen_in_sea_water
Pzoo_west mole_concentration_of_predator_zooplankton_expressed_as_nitrogen_in_sea_water
Pzoo_north mole_concentration_of_predator_zooplankton_expressed_as_nitrogen_in_sea_water
Pzoo_south mole_concentration_of_predator_zooplankton_expressed_as_nitrogen_in_sea_water
P_Production sea_water_primary_production_of_biomass_expressed_as_nitrogen
Qair surface_relative_humidity
rain precipitation_flux
RDeC_east mole_concentration_of_river_detritus_expressed_as_carbon_in_sea_water
RDeC_west mole_concentration_of_river_detritus_expressed_as_carbon_in_sea_water
RDeC_north mole_concentration_of_river_detritus_expressed_as_carbon_in_sea_water
RDeC_south mole_concentration_of_river_detritus_expressed_as_carbon_in_sea_water
RDeN_east mole_concentration_of_river_detritus_expressed_as_nitrogen_in_sea_water
RDeN_west mole_concentration_of_river_detritus_expressed_as_nitrogen_in_sea_water
RDeN_north mole_concentration_of_river_detritus_expressed_as_nitrogen_in_sea_water
RDeN_south mole_concentration_of_river_detritus_expressed_as_nitrogen_in_sea_water
RdetritusC mole_concentration_of_river_detritus_expressed_as_carbon_in_sea_water
RdetritusN mole_concentration_of_river_detritus_expressed_as_nitrogen_in_sea_water
rdrag sea_bottom_linear_drag_coefficient
rdrag2 sea_bottom_quadratic_drag_coefficient
residual data_assimilation_residual
respiration mole_concentration_flux_of_total_respiration_expressed_as_oxygen_in_sea_water
rho sea_water_density_anomaly
rhoa surface_air_density
ripple_height sea_bottom_sediment_ripple_height
ripple_length sea_bottom_sediment_ripple_length
river_alkalinity alkalinity_transport_expressed_as_mole_equivalent_into_sea_water_from_rivers
river_detritus mole_concentration_of_detritus_transport_expressed_as_nitrogen_into_sea_water_from_rivers
river_direction direction_of_river_transport
river_DON mole_concentration_of_dissolved_organic_nitrogen_transport_into_sea_water_from_rivers
river_dye_<nn> mass_concetration_of_dye_<nn>_transport_into_sea_water_from_rivers
river_Eposition river_runoff_y_grid_cell_location
river_flag river_status_flag
river_LDeC mole_concentration_of_large_detritus_transport__expressed_as_carbon_into_sea_water_from_rivers
river_LDeN mole_concentration_of_large_detritus_transport_expressed_as_nitrogen_into_sea_water_from_rivers
river_mud_<nn> mass_concetration_of_mud_<nn>_transport_into_sea_water_from_rivers
river_NH4 mole_concentration_of_ammonium_transport_expressed_as_nitrogen_into_sea_water_from_rivers
river_NO3 mole_concentration_of_nitrate_transport_expressed_as_nitrogen_into_sea_water_from_rivers
river_nutrient mole_concentration_of_nutrient_transport_expressed_as_nitrogen_into_sea_water_from_rivers
river_Oxyg mole_concentration_of_dissolved_oxygen_transport_into_sea_water_from_rivers
river_PO4 mole_concentration_of_phosphate_transport_into_sea_water_from_rivers
river_PON mole_concentration_of_particulate_organic_nitrogen_transport_into_sea_water_from_rivers
river_RDeC mole_concentration_of_river_detritus_transport_expressed_as_carbon_into_sea_water_from_rivers
river_RDeN mole_concentration_of_river_detritus_transport_expressed_as_nitrogen_into_sea_water_from_rivers
river_salt salinity_of_river_transport_into_sea_water
river_sand_<nn> mass_concetration_of_sand_<nn>_transport_into_sea_water_from_rivers
river_SDeC mole_concentration_of_small_detritus_transport_expressed_as_carbon_into_sea_water_from_rivers
river_SDeN mole_concentration_of_small_detritus_transport_expressed_as_nitrogen_into_sea_water_from_rivers
river_temp temperature_of_river_transport_into_sea_water
river_TIC mole_concentration_of_total_inorganic_transport_into_sea_water_from_rivers
river_transport water_volume_transport_into_sea_water_from_rivers
river_Vshape water_volume_vertical_transport_profile_into_sea_water_from_rivers
river_Xposition river_runoff_x_grid_cell_location
ru sea_water_x_velocity_right_hand_side
rubar barotropic_sea_water_x_velocity_right_hand_side
rufrc integral_of_sea_water_x_velocity_right_hand_side
rv sea_water_y_velocity_right_hand_side
rvbar barotropic_sea_water_y_velocity_right_hand_side
rvfrc integral_of_sea_water_y_velocity_right_hand_side
rvorticity ocean_relative_vorticity
rvorticity_bar ocean_barotropic_relative_vorticity
rzeta sea_surface_elevation_anomaly_right_hand_side
s0mk salinity_of_molecular_sub_layer_under_sea_ice
salt sea_water_practical_salinity
saltation sea_bottom_saltation_height
salt_detided detided_sea_water_practical_salinity
salt_east sea_water_practical_salinity
salt_west sea_water_practical_salinity
salt_north sea_water_practical_salinity
salt_south sea_water_practical_salinity
salt_sur sea_surface_salinity
salt_tide sea_water_practical_salinity_per_tide_constituent
sandfrac_<nn> sea_bottom_noncohesive_sediment_<nn>fraction
sandmass_<nn> sea_bottom_noncohesive_sediment_<nn>_mass
sand_<nn> mass_concentration_of_suspended_sand_<nn>_in_sea_water
sand_east_<nn> mass_concentration_of_suspended_sand_<nn>_in_sea_water
sand_west_<nn> mass_concentration_of_suspended_sand_<nn>_in_sea_water
sand_north_<nn> mass_concentration_of_suspended_sand_<nn>_in_sea_water
sand_south_<nn> mass_concentration_of_suspended_sand_<nn>_in_sea_water
scalar_irradiance mole_concentration_of_scalar_spectral_light_irradiance_in_sea_water
SdetritusC mole_concentration_of_small_detritus_expressed_as_carbon_in_sea_water
SdeC_east mole_concentration_of_small_detritus_expressed_as_carbon_in_sea_water
SdeC_west mole_concentration_of_small_detritus_expressed_as_carbon_in_sea_water
SdeC_north mole_concentration_of_small_detritus_expressed_as_carbon_in_sea_water
SdeC_south mole_concentration_of_small_detritus_expressed_as_carbon_in_sea_water
SdetritusN mole_concentration_of_small_detritus_expressed_as_nitrogen_in_sea_water
SDeN_east mole_concentration_of_small_detritus_expressed_as_nitrogen_in_sea_water
SDeN_west mole_concentration_of_small_detritus_expressed_as_nitrogen_in_sea_water
SDeN_north mole_concentration_of_small_detritus_expressed_as_nitrogen_in_sea_water
SDeN_south mole_concentration_of_small_detritus_expressed_as_nitrogen_in_sea_water
sensible surface_upward_sensible_heat_flux
settling_vel sea_water_sediment_median_grain_setting_velocity
sfwat melt_sea_water_tickness_on_sea_ice
shflux surface_downward_heat_flux_in_sea_water
sig11 sea_ice_internal_xx_stress
sig12 sea_ice_internal_xy_stress
sig22 sea_ice_internal_yy_stress
SinW sine_of_tidal_period_times_time
SinWCosW product_of_sine_and_cosine_of_tidal_period_times_time
SinWSinW square_of_sine_of_tidal_period_times_time
SiO mole_concentration_of_silica_in_sea_water
SiOH4 mole_concentration_of_silicate_in_sea_water
SiOH4_east mole_concentration_of_silicate_in_sea_water
SiOH4_west mole_concentration_of_silicate_in_sea_water
SiOH4_north mole_concentration_of_silicate_in_sea_water
SiOH4_south mole_concentration_of_silicate_in_sea_water
skt sea_surface_skin_temperature
snow_thick snowfall_thickness_above_sea_ice
ssflux salt_flux_into_sea_water
SSS sea_surface_salinity
SST sea_surface_temperature
surface_irradiance mole_concentration_of_spectral_light_irradiance_in_surface_sea_water
survey_time observation_survey_time
sustr surface_downward_x_stress
svstr surface_downward_y_stress
swflux surface_upward_water_flux_from_file
swrad net_downward_shortwave_flux_at_sea_water_surface
swrad_avg time_averaged_net_downward_shortwave_flux_at_sea_water_surfacer
Sxx sea_water_horizontal_xx_wave_radiation_stress
Sxx_bar sea_water_barotropic_horizontal_xx_wave_radiation_stress
Sxy sea_water_horizontal_xy_wave_radiation_stress
Sxy_bar sea_water_barotropic_horizontal_xy_wave_radiation_stress
Syy sea_water_horizontal_yy_wave_radiation_stress
Syy_bar sea_water_barotropic_horizontal_yy_wave_radiation_stress
Szx sea_water_vertical_zx_wave_radiation_stress
Szy sea_water_vertical_zy_wave_radiation_stress
t0mk temperature_of_molecular_sub_layer_under_sea_ice
Tair surface_air_temperature
tau_crit_off sea_bed_sediment_critical_shear_stress_offset
tau_crit_offset_c sea_bottom_sediment_critical_shields_stress_offset
tau_crit_rtime sea_bottom_sediment_critical_shields_time_scale
tau_crit_slope sea_bed_sediment_critical_shear_stress_slope
tau_crit_slope_c sea_bottom_sediment_critical_shields_stress_slope
tau_crit_time sea_bed_sediment_critical_shear_stress_nudging_time
tau_iw sea_ice_and_sea_water_friction_velocity
temp sea_water_potential_temperature
temp_detided detided_sea_water_potential_temperature
temp_east sea_water_potential_temperature
temp_west sea_water_potential_temperature
temp_north sea_water_potential_temperature
temp_south sea_water_potential_temperature
temp_sur sea_surface_temperature
temp_tide sea_water_potential_temperature_per_tide_constituent
ti sea_ice_temperature
TIC mole_concentration_of_total_inorganic_carbon_in_sea_water
TIC_east mole_concentration_of_total_inorganic_carbon_in_sea_water
TIC_west mole_concentration_of_total_inorganic_carbon_in_sea_water
TIC_north mole_concentration_of_total_inorganic_carbon_in_sea_water
TIC_south mole_concentration_of_total_inorganic_carbon_in_sea_water
tide_Cangle ocean_tidal_constituent_current_inclination_angle
tide_Cmax ocean_tidal_constituent_major_axis_maximum_current_velocity
tide_Cmin ocean_tidal_constituent_major_axis_minimum_current_velocity
tide_Cphase ocean_tidal_constituent_current_phase_angle
tide_Eamp ocean_tidal_constituent_elevation_amplitude
tide_Ephase ocean_tidal_constituent_elevation_phase_angle
tide_period ocean_tidal_constituent_period
tisrf sea_ice_surface_temperature
tke turbulent_kinetic_energy_due_to_vertical_mixing_of_sea_water
TLmodel_value tangent_linear_model_value_at_observation_location
total_backscattering sea_water_total_light_optical_backscattering
total_scattering sea_water_total_light_optical_scattering
tracer2 square_of_
tracer_NudgeCoef sea_surface_tracer_inverse_nudging_coefficient
u sea_water_x_velocity
ubar barotropic_sea_water_x_velocity
ubar2 square_of_barotropic_sea_water_x_velocity
ubar_accel barotropic_sea_water_x_velocity_tendency
ubar_bstr barotropic_sea_water_x_velocity_tendency_due_to_bottom_stress
ubar_cor barotropic_sea_water_x_velocity_tendency_due_to_coriolis
ubar_detided detided_barotropic_sea_water_x_velocity
ubar_east barotropic_sea_water_x_velocity
ubar_west barotropic_sea_water_x_velocity
ubar_north barotropic_sea_water_x_velocity
ubar_south barotropic_sea_water_x_velocity
ubar_eastward barotropic_sea_water_eastward_velocity
ubar_hadv barotropic_sea_water_x_velocity_tendency_due_to_horizontal_advection
ubar_hrad barotropic_sea_water_x_velocity_tendency_due_to_horizontal_radiation_stress
ubar_hvisc barotropic_sea_water_x_velocity_tendency_due_to_horizontal_viscosity
ubar_prsgrd barotropic_sea_water_x_velocity_tendency_due_to_pressure_gradient
ubar_Rstress sea_surface_barotropic_x_wave_radiation_stress
ubar_sstr barotropic_sea_water_x_velocity_tendency_due_to_surface_stress
ubar_stokes sea_surface_barotropic_wave_stokes_drift_x_velocity
ubar_tide barotropic_sea_water_x_velocity_per_tide_constituent
ubar_xadv barotropic_sea_water_x_velocity_tendency_due_to_horizontal_x_advection
ubar_xvisc barotropic_sea_water_x_velocity_tendency_due_to_horizontal_x_viscosity
ubar_yadv barotropic_sea_water_x_velocity_tendency_due_to_horizontal_y_advection
ubar_yvisc barotropic_sea_water_x_velocity_tendency_due_to_horizontal_y_viscosity
Ubot sea_bed_orbital_x_velocity_due_to_waves
Ub_swan modeled_sea_bottom_wind_wave_orbital_velocity
uice sea_ice_x_velocity
Ur sea_water_above_bed_x_velocity
utracer product_of_x_velocity_and_
uu square_of_sea_water_x_velocity
uv product_of_x_velocity_and_y_velocity_in_sea_water
Uwind surface_eastward_wind
u_accel sea_water_x_velocity_tendency
u_cor sea_water_x_velocity_tendency_due_to_coriolis
u_detided detided_sea_water_x_velocity
u_east sea_water_x_velocity
u_west sea_water_x_velocity
u_north sea_water_x_velocity
u_south sea_water_x_velocity
u_eastward eastward_sea_water_velocity
u_hadv sea_water_x_velocity_tendency_due_to_horizontal_advection
u_hrad sea_water_x_velocity_tendency_due_to_horizontal_radiation_stress
u_hvisc sea_water_x_velocity_tendency_due_to_horizontal_viscosity
u_prsgrd sea_water_x_velocity_tendency_due_to_pressure_gradient
u_Rstress sea_water_x_wave_radiation_stress
u_stokes sea_water_wave_stokes_drift_x_velocity
u_sur sea_water_surface_x_velocity
u_sur_eastward surface_eastward_sea_water_velocity
u_tide sea_water_x_velocity_per_tide_constituent
u_vadv sea_water_x_velocity_tendency_due_to_vertical_advection
u_vrad sea_water_x_velocity_tendency_due_to_vertical_radiation_stress
u_vvisc sea_water_x_velocity_tendency_due_to_vertical_viscosity
u_xadv sea_water_x_velocity_tendency_due_to_horizontal_x_advection
u_xvisc sea_water_x_velocity_tendency_due_to_horizontal_x_viscosity
u_yadv sea_water_x_velocity_tendency_due_to_horizontal_y_advection
u_yvisc sea_water_x_velocity_tendency_due_to_horizontal_y_viscosity
v sea_water_y_velocity
vbar barotropic_sea_water_y_velocity
vbar2 square_of_barotropic_sea_water_y_velocity
vbar_accel barotropic_sea_water_y_velocity_tendency
vbar_bstr barotropic_sea_water_y_velocity_tendency_due_to_bottom_stress
vbar_cor barotropic_sea_water_y_velocity_tendency_due_to_coriolis
vbar_detided detided_barotropic_sea_water_y_velocity
vbar_east barotropic_sea_water_y_velocity
vbar_west barotropic_sea_water_y_velocity
vbar_north barotropic_sea_water_y_velocity
vbar_south barotropic_sea_water_y_velocity
vbar_hadv barotropic_sea_water_y_velocity_tendency_due_to_horizontal_advection
vbar_hrad barotropic_sea_water_y_velocity_tendency_due_to_horizontal_radiation_stress
vbar_hvisc barotropic_sea_water_y_velocity_tendency_due_to_horizontal_viscosity
vbar_northward barotropic_sea_water_northward_velocity
vbar_prsgrd barotropic_sea_water_y_velocity_tendency_due_to_pressure_gradient
vbar_Rstress sea_surface_barotropic_y_wave_radiation_stress
vbar_sstr barotropic_sea_water_y_velocity_tendency_due_to_surface_stress
vbar_stokes sea_surface_barotropic_wave_stokes_drift_y_velocity
vbar_tide barotropic_sea_water_y_velocity_per_tide_constituent
vbar_xadv barotropic_sea_water_y_velocity_tendency_due_to_horizontal_x_advection
vbar_xvisc barotropic_sea_water_y_velocity_tendency_due_to_horizontal_x_viscosity
vbar_yadv barotropic_sea_water_y_velocity_tendency_due_to_horizontal_y_advection
vbar_yvisc barotropic_sea_water_y_velocity_tendency_due_to_horizontal_y_viscosity
Vbot sea_bed_orbital_y_velocity_due_to_waves
vice sea_ice_y_velocity
Vr sea_water_above_bed_y_velocity
vtracer product_of_y_velocity_and_
vv square_of_sea_water_y_velocity
Vwind surface_northward_wind
v_accel sea_water_y_velocity_tendency
v_cor sea_water_y_velocity_tendency_due_to_coriolis
v_detided detided_sea_water_y_velocity
v_east sea_water_y_velocity
v_west sea_water_y_velocity
v_north sea_water_y_velocity
v_south sea_water_y_velocity
v_hadv sea_water_y_velocity_tendency_due_to_horizontal_advection
v_hrad sea_water_y_velocity_tendency_due_to_horizontal_radiation_stress
v_hvisc sea_water_y_velocity_tendency_due_to_horizontal_viscosity
v_northward northward_sea_water_velocity
v_prsgrd sea_water_y_velocity_tendency_due_to_pressure_gradient
v_Rstress sea_water_y_wave_radiation_stress
v_stokes sea_water_wave_stokes_drift_y_velocity
v_sur sea_water_surface_y_velocity
v_sur_northward surface_northward_sea_water_velocity
v_tide sea_water_y_velocity_per_tide_constituent
v_vadv sea_water_y_velocity_tendency_due_to_vertical_advection
v_vrad sea_water_y_velocity_tendency_due_to_vertical_radiation_stress
v_vvisc sea_water_y_velocity_tendency_due_to_vertical_viscosity
v_xadv sea_water_y_velocity_tendency_due_to_horizontal_x_advection
v_xvisc sea_water_y_velocity_tendency_due_to_horizontal_x_viscosity
v_yadv sea_water_y_velocity_tendency_due_to_horizontal_y_advection
v_yvisc sea_water_y_velocity_tendency_due_to_horizontal_y_viscosity
w upward_sea_water_velocity
Wave_break sea_surface_wave_breaking_percent_fraction
Wave_dissip sea_bottom_wave_dissipation_due_to_friction
wetdry_mask_psi wet_dry_mask_at_cell_corners
wetdry_mask_rho wet_dry_mask_at_cell_center
wetdry_mask_u wet_dry_mask_at_cell_y_edges
wetdry_mask_v wet_dry_mask_at_cell_x_edges
wg2d square_of_surface_wind_gustiness_from_file
wg2m squared_surface_wind_gustiness_from_model
zero_phase_date ocean_tidal_reference_date_for_zero_phase
zeta sea_surface_elevation_anomaly
zeta2 square_of_sea_surface_elevation_anomaly
zeta_detided detided_sea_surface_elevation_anomaly
zeta_east sea_surface_elevation_anomaly
zeta_west sea_surface_elevation_anomaly
zeta_north sea_surface_elevation_anomaly
zeta_south sea_surface_elevation_anomaly
zeta_tide sea_surface_elevation_anomaly_per_tide_constituent
ZoBot sea_bottom_roughness_length_scale
zooplankton mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water
zoop_east mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water
zoop_west mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water
zoop_north mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water
zoop_south mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water
Zo_app sea_bottom_apparent_roughness_length_scale
Zo_bedform sea_bottom_bedform_roughness_length_scale
Zo_bedload sea_bottom_bed_load_roughness_length_scale
Zo_bio sea_bottom_biological_roughness_length_scale
Zo_def sea_bottom_default_roughness_length_scale
Zo_Nik sea_bottom_nikaradse_roughness_length_scale
Zo_wbl sea_bottom_wave_boundary_layer_roughness_length_scale
z_rho model_level_depth_at_cell_center
z_u model_level_depth_at_cell_y_edges
z_v model_level_depth_at_cell_x_edges
z_w model_level_depth_at_cell_top_face
<tracer>_rate sea_water_<tracer>_tendency
<tracer>_hadv sea_water_<tracer>_tendency_due_to_horizontal_advection
<tracer>_xadv sea_water_<tracer>_tendency_due_to_horizontal_x_advection
<tracer>_yadv sea_water_<tracer>_tendency_due_to_horizontal_y_advection
<tracer>_vadv sea_water_<tracer>_tendency_due_to_vertical_advection
<tracer>_hdiff sea_water_<tracer>_tendency_due_to_horizontal_diffusion
<tracer>_sdiff sea_water_<tracer>_tendency_due_to_horizontal_s_diffusion
<tracer>_xdiff sea_water_<tracer>_tendency_due_to_horizontal_x_diffusion
<tracer>_ydiff sea_water_<tracer>_tendency_due_to_horizontal_y_diffusion
<tracer>_vdiff sea_water_<tracer>_tendency_due_to_vertical_diffusion