[Dart-dev] DART/branches Revision: 11964
dart at ucar.edu
dart at ucar.edu
Fri Sep 29 17:01:50 MDT 2017
nancy at ucar.edu
2017-09-29 17:01:48 -0600 (Fri, 29 Sep 2017)
279
remove QTY_SURFACE_TEMPERATURE because it can be ill defined.
we already have QTY_2M_TEMPERATURE for atmospheric models,
and QTY_SKIN_TEMPERATURE and QTY_SOIL_TEMPERATURE for ocean
and land models.
add a missing surface observation quantity - QTY_2M_SPECIFIC_HUMIDITY
instead.
Modified: DART/branches/rma_trunk/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90
===================================================================
--- DART/branches/rma_trunk/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90 2017-09-29 23:00:21 UTC (rev 11963)
+++ DART/branches/rma_trunk/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90 2017-09-29 23:01:48 UTC (rev 11964)
@@ -181,7 +181,7 @@
! kinds for surface fields
integer, parameter, public :: &
- QTY_SURFACE_TEMPERATURE = 66, &
+ QTY_2M_SPECIFIC_HUMIDITY = 66, &
QTY_2M_TEMPERATURE = 67, &
QTY_10M_U_WIND_COMPONENT = 68, &
QTY_10M_V_WIND_COMPONENT = 69
@@ -649,7 +649,7 @@
obs_kind_names(63) = obs_kind_type(QTY_EDGE_NORMAL_SPEED, 'QTY_EDGE_NORMAL_SPEED')
obs_kind_names(64) = obs_kind_type(QTY_CLW_PATH, 'QTY_CLW_PATH')
obs_kind_names(65) = obs_kind_type(QTY_WIND_TURBINE_POWER, 'QTY_WIND_TURBINE_POWER')
-obs_kind_names(66) = obs_kind_type(QTY_SURFACE_TEMPERATURE, 'QTY_SURFACE_TEMPERATURE')
+obs_kind_names(66) = obs_kind_type(QTY_2M_SPECIFIC_HUMIDITY, 'QTY_2M_SPECIFIC_HUMIDITY')
obs_kind_names(67) = obs_kind_type(QTY_2M_TEMPERATURE, 'QTY_2M_TEMPERATURE')
obs_kind_names(68) = obs_kind_type(QTY_10M_U_WIND_COMPONENT, 'QTY_10M_U_WIND_COMPONENT')
obs_kind_names(69) = obs_kind_type(QTY_10M_V_WIND_COMPONENT, 'QTY_10M_V_WIND_COMPONENT')
More information about the Dart-dev
mailing list