[Dart-dev] DART/branches Revision: 11476

dart at ucar.edu dart at ucar.edu
Thu Apr 13 10:10:52 MDT 2017


thoar at ucar.edu
2017-04-13 10:10:51 -0600 (Thu, 13 Apr 2017)
64
This has the new kinds for brightness temperature assimilation.



Modified: DART/branches/Tb/obs_kind/DEFAULT_obs_kind_mod.F90
===================================================================
--- DART/branches/Tb/obs_kind/DEFAULT_obs_kind_mod.F90	2017-04-13 15:44:20 UTC (rev 11475)
+++ DART/branches/Tb/obs_kind/DEFAULT_obs_kind_mod.F90	2017-04-13 16:10:51 UTC (rev 11476)
@@ -139,6 +139,12 @@
 integer, parameter, public :: &
     KIND_ALTIMETER_TENDENCY          = 48
 
+! kind for precip water; contrast with
+! total precip water (also in this file),
+! which is the total column integrated value.
+integer, parameter, public :: &
+    KIND_PRECIPITABLE_WATER          = 49
+
 ! kinds for the MITgcm, POP ocean model
 integer, parameter, public :: &
     KIND_SALINITY                    = 50, &
@@ -166,7 +172,7 @@
     KIND_INFRARED_BRIGHT_TEMP        = 61, &
     KIND_LANDMASK                    = 62
 
-! kind for unstructured grids 
+! kind for unstructured grids
 integer, parameter, public :: &
     KIND_EDGE_NORMAL_SPEED           = 63
 
@@ -263,85 +269,167 @@
     KIND_STEM_NITROGEN               = 126, &
     KIND_LEAF_NITROGEN               = 127, &
     KIND_WATER_TABLE_DEPTH           = 128, &
-    KIND_FPAR                        = 129, &
+    KIND_FRAC_PHOTO_AVAIL_RADIATION  = 129, &
     KIND_TOTAL_WATER_STORAGE         = 130
 
-! more kinds for land snow cover (Ally Toure)
 integer, parameter, public :: &
-    KIND_BRIGHTNESS_TEMPERATURE      = 131, &
-    KIND_VEGETATION_TEMPERATURE      = 132, &
-    KIND_CANOPY_HEIGHT               = 133
-
-! more kinds for snow DA (Yonghwan)
-integer, parameter, public :: &
-    KIND_SNOW_GRAIN_SIZE             =134, &
-    KIND_RTM_PARAMETERS_P            =135, &
-    KIND_RTM_PARAMETERS_N            =136    
-
-! kinds for NOAH  (Tim Hoar)
-integer, parameter, public :: &
     KIND_NEUTRON_INTENSITY           = 140, &
     KIND_CANOPY_WATER                = 141, &
     KIND_GROUND_HEAT_FLUX            = 142
 
-! more kinds for TIEGCM Alex Chartier 
+! more kinds for TIEGCM Alex Chartier
 integer, parameter, public :: &
-    KIND_VERTICAL_TEC                = 143  ! total electron content
+    KIND_VERTICAL_TEC                = 143, &  ! total electron content
+    KIND_O_N2_COLUMN_DENSITY_RATIO   = 144
 
-! more kinds for Long
-integer, parameter, public :: &
-    KIND_MODIS_LAI                   = 144, & ! modis LAI
-    KIND_MVPARA_ZL                   = 145, & ! microwave RTM parameters
-    KIND_TEMP                        = 146    ! temporal KINDs
-
 !! For now we have agreed to reserve kind numbers 151 to 250
 !! for chemistry types, specifically for WRF-Chem/DART, but
 !! possibly of interest to other models with Chemistry species.
 !! DO NOT USE numbers between 151-250 without talking to me, please?  (nancy)
 
+! these chemistry kinds match the numbers Arthur Mizzi is using
+integer, parameter, public :: &
+    KIND_O3                          = 151, &
+    KIND_CO                          = 153, &
+    KIND_NO                          = 155, &
+    KIND_NO2                         = 156
+
+! more chemistry kinds (Jerome Barre)  (last three slots)
+integer, parameter, public :: &
+    KIND_CO2                         = 247, &
+    KIND_NH3                         = 248, &
+    KIND_CH4                         = 249
+
 ! kinds for GITM (Alexey Morozov)
 integer, parameter, public :: &
-  KIND_TEMPERATURE_ELECTRON          = 251, &
-  KIND_TEMPERATURE_ION               = 252, &
-  KIND_DENSITY_NEUTRAL_O3P           = 253, &
-  KIND_DENSITY_NEUTRAL_O2            = 254, &
-  KIND_DENSITY_NEUTRAL_N2            = 255, &
-  KIND_DENSITY_NEUTRAL_N4S           = 256, &
-  KIND_DENSITY_NEUTRAL_NO            = 257, &
-  KIND_DENSITY_NEUTRAL_N2D           = 258, &
-  KIND_DENSITY_NEUTRAL_N2P           = 259, &
-  KIND_DENSITY_NEUTRAL_H             = 260, &
-  KIND_DENSITY_NEUTRAL_HE            = 261, &
-  KIND_DENSITY_NEUTRAL_CO2           = 262, &
-  KIND_DENSITY_NEUTRAL_O1D           = 263, &
-  KIND_DENSITY_ION_O4SP              = 264, &
-  KIND_DENSITY_ION_O2P               = 265, &
-  KIND_DENSITY_ION_N2P               = 266, &


More information about the Dart-dev mailing list